win10-prep

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

commit bad1e4dfc0603e034734c85a7e30395546883095
parent 5e7bec7ac1bb5031352cd6d8274695be98e4031b
Author: breadcat <peter@minskio.co.uk>
Date:   Sat, 11 Jul 2020 19:45:18 +0100

Couple more registry tweaks

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

diff --git a/win10-prep.bat b/win10-prep.bat @@ -279,6 +279,12 @@ rem disable IE first run popup reg add "HKLM\Software\Policies\Microsoft\Internet Explorer\Main" /v "DisableFirstRunCustomize" /t REG_DWORD /d "1" /f rem verbose status messages reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system" /v "verbosestatus" /t REG_DWORD /d "1" /f +rem disable live tiles +reg add "HKCU\SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\PushNotifications" /v "NoTileApplicationNotification" /t REG_DWORD /d "1" /f +rem remove startup delay +reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Serialize" /v "Startupdelayinmsec" /t REG_DWORD /d "0" /f +rem disable backup reminders +reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\StorageSense\Parameters\BackupReminder" /v "BackupReminderToastCount" /t REG_DWORD /d "3" /f exit /b %errorlevel% :remove_software