diff options
author | breadcat | 2020-07-25 14:30:19 +0100 |
---|---|---|
committer | breadcat | 2020-07-25 14:30:19 +0100 |
commit | b770787ab2e308ae7c011a19da308363b1c4662d (patch) | |
tree | 19afc569816679b6097add3a76ea1b60960b4ef5 | |
parent | aeca1f51fe1e83080f0d519b513e992aed6c70ef (diff) | |
download | win10-prep-b770787ab2e308ae7c011a19da308363b1c4662d.tar.gz win10-prep-b770787ab2e308ae7c011a19da308363b1c4662d.tar.bz2 win10-prep-b770787ab2e308ae7c011a19da308363b1c4662d.zip |
Few additional tweaks
-rw-r--r-- | win10-prep.bat | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/win10-prep.bat b/win10-prep.bat index 431fc0e..1398e8b 100644 --- a/win10-prep.bat +++ b/win10-prep.bat @@ -294,6 +294,17 @@ reg add "HKCR\RecentDocument\ShellEx\ContextMenuHandlers\OpenContainingFolderMen reg add "HKCR\Results\ShellEx\ContextMenuHandlers\OpenContainingFolderMenu" /ve /t REG_SZ /d "{37ea3a21-7493-4208-a011-7f9ea79ce9f5}" /f rem show status bar in explorer reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowStatusBar" /t REG_DWORD /d "1" /f +rem disable consumer experience +reg add "HKLM\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableWindowsConsumerFeatures" /t REG_DWORD /d "1" /f +rem block automatic install of suggested apps +reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v "SilentInstalledAppsEnabled" /t REG_DWORD /d "0" /f +rem change windows feedback frequency +reg add HKCU\SOFTWARE\Microsoft\Siuf\Rules /v NumberOfSIUFInPeriod /t REG_DWORD /d 0 /f +reg add HKCU\SOFTWARE\Microsoft\Siuf\Rules /v PeriodInNanoSeconds /t REG_DWORD /d 0 /f +rem disable improve typing/inking recognition +reg add "HKCU\SOFTWARE\Microsoft\Input\TIPC" /v "Enabled" /t REG_DWORD /d 0 /f +rem allow long character paths +reg add "HKLM\SYSTEM\CurrentControlSet\Control\FileSystem" /v "LongPathsEnabled" /t REG_DWORD /d "1" /f exit /b %errorlevel% :remove_software |