diff --git a/scripts/modify-taskbar.cmd b/scripts/modify-taskbar.cmd index c203ead..80e9f5d 100644 --- a/scripts/modify-taskbar.cmd +++ b/scripts/modify-taskbar.cmd @@ -2,7 +2,7 @@ echo ####### %0 ####### -echo disable windows ink completely ... +echo disabling windows ink completely ... reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsInkWorkspace" ^ /v "AllowWindowsInkWorkspace" /t REG_DWORD /d 0 /f 1>nul @@ -15,6 +15,14 @@ reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" ^ /v "SecurityHealth" /f 1>nul 2>nul taskkill /f /im SecurityHealthSystray.exe 1>nul 2>nul +echo disabling autotray for the taskbar ... +reg add "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Explorer" ^ + /v "EnableAutoTray" /t REG_DWORD /d 0 /f 1>nul + +echo disabling notification center ... +reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Explorer" ^ + /v "DisableNotificationCenter" /t REG_DWORD /d 1 /f 1>nul + echo restarting explorer ... taskkill /f /im explorer.exe 1>nul 2>nul start explorer.exe diff --git a/tools/logon.cmd b/tools/logon.cmd index b4dcd80..1d05305 100644 --- a/tools/logon.cmd +++ b/tools/logon.cmd @@ -174,14 +174,6 @@ echo Disabling cortana button on the taskbar ... reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" ^ /v "ShowCortanaButton" /t REG_DWORD /d 0 /f 1>nul -echo Disabling autotray for the taskbar ... -reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer" ^ - /v "EnableAutoTray" /t REG_DWORD /d 0 /f 1>nul - -echo Disabling notification center ... -reg add "HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\Explorer" ^ - /v "DisableNotificationCenter" /t REG_DWORD /d 1 /f 1>nul - echo Loading OpenShell config ... rem config must be full qualified pathname (OpenShell BUG!) set CONFIG=%TOOLS%\scripts\config\OpenshellSettings.xml