diff --git a/src/Configuration/custom.yml b/src/Configuration/custom.yml index 27f0d05..2ccf53a 100644 --- a/src/Configuration/custom.yml +++ b/src/Configuration/custom.yml @@ -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 diff --git a/src/Configuration/features/lite/improvements.yml b/src/Configuration/features/lite/improvements.yml new file mode 100644 index 0000000..3d7c2d2 --- /dev/null +++ b/src/Configuration/features/lite/improvements.yml @@ -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