win10-prep

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

commit 453c96502811bc8980e9650df4991e92dc5563e8
parent 7ebd787e784152087ecb5ae9909e519ce469c095
Author: breadcat <peter@minskio.co.uk>
Date:   Mon, 15 Jun 2020 03:19:39 +0100

Hide Cortana icon

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

diff --git a/3-registry.bat b/3-registry.bat @@ -124,6 +124,8 @@ rem hide task view icon in taskbar reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowTaskViewButton" /t REG_DWORD /d "0" /f rem hide search icon in taskbar reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Search" /v "SearchboxTaskbarMode" /t REG_DWORD /d "0" /f +rem hide cortana icon in taskbar +reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "ShowCortanaButton" /t REG_DWORD /d "0" /f rem small taskbar icon size reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "TaskbarSmallIcons" /t REG_DWORD /d "1" /f rem have a stab at disabling telemetry