This commit is contained in:
Michael H.G. Schmidt 2021-03-02 23:29:07 +01:00
parent 9329c77586
commit dc1279abd1
2 changed files with 7 additions and 2 deletions

View File

@ -15,5 +15,9 @@ 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 restarting explorer ...
taskkill /f /im explorer.exe 1>nul 2>nul
start explorer.exe
echo ####### %0 #######

View File

@ -50,8 +50,7 @@ if NOT EXIST %LOCALSTATE%\settings.json (
%LOCALSTATE%\settings.json
)
rem if EXIST %STATUSFILE% GOTO END
GOTO END
if EXIST %STATUSFILE% GOTO END
echo.
echo #####
echo ##### USER TWEAKS
@ -97,6 +96,8 @@ echo disable 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
GOTO END
echo disable autotray for the taskbar ...
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer" ^
/v "EnableAutoTray" /t REG_DWORD /d 0 /f 1>nul