This commit is contained in:
Michael H.G. Schmidt 2021-02-13 22:29:02 +01:00
parent 34639dd638
commit f311f9cf96
3 changed files with 23 additions and 7 deletions

View File

@ -57,6 +57,9 @@ echo.
call modify-desktoptheme.cmd call modify-desktoptheme.cmd
echo. echo.
call modify-taskbar.cmd
echo.
call install-tweaks.cmd call install-tweaks.cmd
echo. echo.

View File

@ -87,13 +87,8 @@ echo disable notification center ...
reg add "HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\Explorer" ^ reg add "HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\Explorer" ^
/v "DisableNotificationCenter" /t REG_DWORD /d 1 /f 1>nul /v "DisableNotificationCenter" /t REG_DWORD /d 1 /f 1>nul
echo disable windows ink completely ... del /F /S /Q /A "%AppData%\Microsoft\Internet Explorer\Quick Launch\User Pinned\TaskBar\*"
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsInkWorkspace" ^ reg delete "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband" /f
/v "AllowWindowsInkWorkspace" /t REG_DWORD /d 0 /f 1>nul
echo remove store icon from taskbar ...
reg add "HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\Explorer" ^
/v "NoPinningStoreToTaskbar" /t REG_DWORD /d 0 /f 1>nul
echo restarting explorer ... echo restarting explorer ...
taskkill /f /im explorer.exe 1>nul 2>nul taskkill /f /im explorer.exe 1>nul 2>nul

View File

@ -0,0 +1,18 @@
@echo off
echo ####### %0 #######
echo disable windows ink completely ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsInkWorkspace" ^
/v "AllowWindowsInkWorkspace" /t REG_DWORD /d 0 /f 1>nul
echo remove store icon from taskbar ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Explorer" ^
/v "NoPinningStoreToTaskbar" /t REG_DWORD /d 1 /f 1>nul
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 ####### %0 #######