2021-02-13 22:29:02 +01:00
|
|
|
@echo off
|
|
|
|
|
|
|
|
echo ####### %0 #######
|
|
|
|
|
2022-12-18 19:27:32 +01:00
|
|
|
echo disabling windows ink completely ...
|
2021-02-13 22:29:02 +01:00
|
|
|
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsInkWorkspace" ^
|
2023-02-08 16:12:23 +01:00
|
|
|
/v "AllowWindowsInkWorkspace" /t REG_DWORD /d 0 /f
|
2021-02-13 22:29:02 +01:00
|
|
|
|
|
|
|
echo remove store icon from taskbar ...
|
|
|
|
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Explorer" ^
|
2023-02-08 16:12:23 +01:00
|
|
|
/v "NoPinningStoreToTaskbar" /t REG_DWORD /d 1 /f
|
2021-02-13 22:29:02 +01:00
|
|
|
|
2021-02-28 14:10:59 +01:00
|
|
|
echo remove defender icon from systray ...
|
2021-02-13 22:29:02 +01:00
|
|
|
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
|
|
|
|
|
2022-12-18 19:27:32 +01:00
|
|
|
echo disabling autotray for the taskbar ...
|
|
|
|
reg add "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Explorer" ^
|
2023-02-08 16:12:23 +01:00
|
|
|
/v "EnableAutoTray" /t REG_DWORD /d 0 /f
|
2022-12-18 19:27:32 +01:00
|
|
|
|
|
|
|
echo disabling notification center ...
|
|
|
|
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Explorer" ^
|
2023-02-08 16:12:23 +01:00
|
|
|
/v "DisableNotificationCenter" /t REG_DWORD /d 1 /f
|
2022-12-18 19:27:32 +01:00
|
|
|
|
2021-03-02 23:29:07 +01:00
|
|
|
echo restarting explorer ...
|
|
|
|
taskkill /f /im explorer.exe 1>nul 2>nul
|
|
|
|
start explorer.exe
|
|
|
|
|
2021-02-13 22:29:02 +01:00
|
|
|
echo ####### %0 #######
|
|
|
|
|