Add generic improvements
This commit is contained in:
parent
ed694195ce
commit
6717b37c3e
@ -9,4 +9,5 @@ features:
|
||||
- features\lite\privacy.yml
|
||||
- features\lite\search.yml
|
||||
- features\lite\scheduled-tasks.yml
|
||||
- features\lite\improvements.yml
|
||||
- features\personalization\dark-mode.yml
|
||||
|
89
src/Configuration/features/lite/improvements.yml
Normal file
89
src/Configuration/features/lite/improvements.yml
Normal file
@ -0,0 +1,89 @@
|
||||
---
|
||||
title: General Improvements
|
||||
description: Some general improvements
|
||||
privilege: TrustedInstaller
|
||||
actions:
|
||||
# Disable startup delay of running applications
|
||||
- !registryValue:
|
||||
path: 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Serialize'
|
||||
value: 'StartupDelayInMSec'
|
||||
data: '0'
|
||||
type: REG_DWORD
|
||||
|
||||
# Automatically close any applications and continue to restart, shut down, or sign out of Windows
|
||||
- !registryValue:
|
||||
path: 'HKCU\Control Panel\Desktop'
|
||||
value: 'AutoEndTasks'
|
||||
data: '1'
|
||||
type: REG_SZ
|
||||
|
||||
# Decrease shutdown time
|
||||
- !registryValue:
|
||||
path: 'HKLM\SYSTEM\CurrentControlSet\Control'
|
||||
value: 'WaitToKillServiceTimeout'
|
||||
data: '2000'
|
||||
type: REG_SZ
|
||||
- !registryValue:
|
||||
path: 'HKLM\SYSTEM\CurrentControlSet\Control'
|
||||
value: 'HungAppTimeout'
|
||||
data: '2000'
|
||||
type: REG_SZ
|
||||
- !registryValue:
|
||||
path: 'HKLM\SYSTEM\CurrentControlSet\Control'
|
||||
value: 'AutoEndTasks'
|
||||
data: '1'
|
||||
type: REG_SZ
|
||||
- !registryValue:
|
||||
path: 'HKCU\Control Panel\Desktop'
|
||||
value: 'WaitToKillAppTimeOut'
|
||||
data: '2000'
|
||||
type: REG_SZ
|
||||
|
||||
# Disable auto download of Microsoft Store applications
|
||||
- !registryValue:
|
||||
path: 'HKLM\SOFTWARE\Policies\Microsoft\WindowsStore'
|
||||
value: 'AutoDownload'
|
||||
data: '2'
|
||||
type: REG_DWORD
|
||||
|
||||
# Disable website access to language list
|
||||
- !registryValue:
|
||||
path: 'HKCU\Control Panel\International\User Profile'
|
||||
value: 'HttpAcceptLanguageOptOut'
|
||||
data: '1'
|
||||
type: REG_DWORD
|
||||
|
||||
# Disable speech model updates
|
||||
- !registryValue:
|
||||
path: 'HKLM\SOFTWARE\Policies\Microsoft\Speech'
|
||||
value: 'AllowSpeechModelUpdate'
|
||||
data: '0'
|
||||
type: REG_DWORD
|
||||
|
||||
# Disable online speech recognition
|
||||
- !registryValue:
|
||||
path: 'HKLM\SOFTWARE\Policies\Microsoft\InputPersonalization'
|
||||
value: 'AllowInputPersonalization'
|
||||
data: '0'
|
||||
type: REG_DWORD
|
||||
|
||||
# Disable activity feed
|
||||
- !registryValue:
|
||||
path: 'HKLM\SOFTWARE\Policies\Microsoft\Windows\System'
|
||||
value: 'EnableActivityFeed'
|
||||
data: '0'
|
||||
type: REG_DWORD
|
||||
|
||||
# Disable cloud optimized content
|
||||
- !registryValue:
|
||||
path: 'HKLM\SOFTWARE\Policies\Microsoft\Windows\CloudContent'
|
||||
value: 'DisableCloudOptimizedContent'
|
||||
data: '1'
|
||||
type: REG_DWORD
|
||||
|
||||
# Disable suggest ways I can finish setting up my device
|
||||
- !registryValue:
|
||||
path: 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\UserProfileEngagement'
|
||||
value: 'ScoobeSystemSettingEnabled'
|
||||
data: '0'
|
||||
type: REG_DWORD
|
Loading…
Reference in New Issue
Block a user