w10install/scripts/modify-taskbar.cmd

32 lines
1.1 KiB
Batchfile
Raw Permalink Normal View History

2021-02-13 22:29:02 +01:00
@echo off
echo ####### %0 #######
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
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
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
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 #######