removed lock button in server script

This commit is contained in:
Michael H.G. Schmidt 2024-12-21 23:31:20 +01:00
parent 2746b880a3
commit cf9ae184e3

View File

@ -16,15 +16,13 @@ reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" ^
/v StartMenuLogoff /t REG_DWORD /d "0" /f 2>nul
echo Disabling Startmenu sleep button ...
reg add "HKLM\SOFTWARE\Microsoft\PolicyManager\current\device\Start" ^
/v "HideSleep" /t REG_DWORD /d 1 /f 2>nul
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" ^
/v "ShowSleepOption" /t REG_DWORD /d "0" /f 2>nul
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FlyoutMenuSettings" ^
/v "ShowSleepOption" /t REG_DWORD /d "0" /f 2>nul
echo Disabling Startmenu lock button ...
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FlyoutMenuSettings" ^
/v "ShowLockOption" /t REG_DWORD /d "0" /f 2>nul
echo Disabling Power options ...
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" ^
/v shutdownwithoutlogon /t REG_DWORD /d "0" /f 2>nul