.
This commit is contained in:
parent
34639dd638
commit
f311f9cf96
@ -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.
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
18
scripts/modify-taskbar.cmd
Normal file
18
scripts/modify-taskbar.cmd
Normal 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 #######
|
||||||
|
|
Loading…
Reference in New Issue
Block a user