win10-prep

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

commit 139ea722290bab2fefa20a5c80e63a41fdda6036
parent e48b2759b07d25defb27b75fc5c7c27403625cd0
Author: breadcat <peter@minskio.co.uk>
Date:   Wed, 17 Jun 2020 15:06:11 +0100

Remove some advertising

Found during research, unsure how much of a difference it makes

Diffstat:
M3-registry.bat | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/3-registry.bat b/3-registry.bat @@ -10,6 +10,9 @@ rem show hidden files in explorer reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "Hidden" /t REG_DWORD /d 1 /f rem show file extensions in explorer reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d "0" /f +rem disable advertising maybe +reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\AdvertisingInfo" /v "Enabled" /t REG_DWORD /d "0" /f +reg add "HKLM\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\AdvertisingInfo" /v "Enabled" /t REG_DWORD /d "0" /f rem disable notification centre in tray reg add "HKCU\SOFTWARE\Policies\Microsoft\Windows\Explorer" /v "DisableNotificationCenter" /t REG_DWORD /d "1" /f rem disable action centre