This commit is contained in:
Michael H.G. Schmidt 2024-01-30 21:18:10 +01:00
parent 756db1f93a
commit 28b5f3efe0
2 changed files with 17 additions and 4 deletions

View File

@ -15,6 +15,15 @@ reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" ^
echo Deleting user %THINUSER% ... echo Deleting user %THINUSER% ...
net user %THINUSER% /DELETE net user %THINUSER% /DELETE
rd /S /Q %PARENT%%THINUSER% 2>nul
echo Enabling Lockscreen function ...
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" ^
/v DisableLockWorkstation /t REG_DWORD /d "0" /f 2>/nul
echo Enabling fast User switching ...
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" ^
/v HideFastUserSwitching /t REG_DWORD /d "0" /f 2>/nul
echo Disabling Auto Logon for user %THINUSER% ... echo Disabling Auto Logon for user %THINUSER% ...
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" ^ reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" ^

View File

@ -1,7 +1,6 @@
@echo off @echo off
set TOOLS=c:\tools set TOOLS=c:\tools
set THINUSER=THINCLIENT set THINUSER=THINCLIENT
set THINPASS=a024b1b5f6
echo ####### %0 ####### echo ####### %0 #######
@ -10,11 +9,16 @@ reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" ^
/v Shell /t REG_SZ /d "%TOOLS%\thinclient.exe" /f 2>/nul /v Shell /t REG_SZ /d "%TOOLS%\thinclient.exe" /f 2>/nul
echo Creating user %THINUSER% ... echo Creating user %THINUSER% ...
net user %THINUSER% %THINPASS% /ADD net user %THINUSER% "" /ADD
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" ^ echo Disabling Lockscreen function ...
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" ^
/v DisableLockWorkstation /t REG_DWORD /d "1" /f 2>/nul /v DisableLockWorkstation /t REG_DWORD /d "1" /f 2>/nul
echo Disabling fast User switching ...
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" ^
/v HideFastUserSwitching /t REG_DWORD /d "1" /f 2>/nul
echo Activating Auto Logon for user %THINUSER% ... echo Activating Auto Logon for user %THINUSER% ...
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" ^ reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" ^
/v AutoAdminLogon /t REG_SZ /d "1" /f 2>/nul /v AutoAdminLogon /t REG_SZ /d "1" /f 2>/nul
@ -23,7 +27,7 @@ reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" ^
/v DefaultUsername /t REG_SZ /d "%THINUSER%" /f 2>/nul /v DefaultUsername /t REG_SZ /d "%THINUSER%" /f 2>/nul
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" ^ reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" ^
/v DefaultPassword /t REG_SZ /d "%THINPASS%" /f 2>/nul /v DefaultPassword /t REG_SZ /d "" /f 2>/nul
echo. echo.
echo Please REBOOT NOW. echo Please REBOOT NOW.