win10-prep

Batch script to tweak Windows 10 to a more usable form
Log | Files | Refs

commit b770787ab2e308ae7c011a19da308363b1c4662d
parent aeca1f51fe1e83080f0d519b513e992aed6c70ef
Author: breadcat <peter@minskio.co.uk>
Date:   Sat, 25 Jul 2020 14:30:19 +0100

Few additional tweaks

Diffstat:
Mwin10-prep.bat | 11+++++++++++
1 file changed, 11 insertions(+), 0 deletions(-)

diff --git 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