w10install/tools/setup-thinclient.cmd

41 lines
1.3 KiB
Batchfile
Raw Permalink Normal View History

2024-01-30 00:02:55 +01:00
@echo off
set TOOLS=c:\tools
2024-01-30 15:07:50 +01:00
set THINUSER=THINCLIENT
2024-01-30 00:02:55 +01:00
echo ####### %0 #######
2024-01-30 15:07:50 +01:00
echo Changing shell to THINCLIENT.EXE ...
2024-01-30 00:02:55 +01:00
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" ^
2024-01-30 17:20:24 +01:00
/v Shell /t REG_SZ /d "%TOOLS%\thinclient.exe" /f 2>/nul
2024-01-30 00:02:55 +01:00
2024-01-30 15:07:50 +01:00
echo Creating user %THINUSER% ...
2024-03-15 13:08:47 +01:00
net user %THINUSER% /passwordreq:no /passwordchg:no /ADD
echo Setting password expire date of user %THINUSER% to NEVER ...
WMIC USERACCOUNT WHERE Name='%THINUSER%' SET PasswordExpires=FALSE
2024-01-30 00:02:55 +01:00
2024-01-30 21:18:10 +01:00
echo Disabling Lockscreen function ...
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" ^
2024-01-30 17:49:57 +01:00
/v DisableLockWorkstation /t REG_DWORD /d "1" /f 2>/nul
2024-01-30 21:18:10 +01:00
echo Disabling fast User switching ...
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" ^
/v HideFastUserSwitching /t REG_DWORD /d "1" /f 2>/nul
2024-01-30 15:07:50 +01:00
echo Activating Auto Logon for user %THINUSER% ...
2024-01-30 00:02:55 +01:00
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" ^
/v AutoAdminLogon /t REG_SZ /d "1" /f 2>/nul
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" ^
2024-01-30 15:07:50 +01:00
/v DefaultUsername /t REG_SZ /d "%THINUSER%" /f 2>/nul
2024-01-30 00:02:55 +01:00
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" ^
2024-01-30 21:18:10 +01:00
/v DefaultPassword /t REG_SZ /d "" /f 2>/nul
2024-01-30 00:02:55 +01:00
2024-01-30 00:05:07 +01:00
echo.
2024-01-30 15:07:50 +01:00
echo Please REBOOT NOW.
2024-01-30 00:05:07 +01:00
echo.
2024-01-30 00:02:55 +01:00
echo ####### %0 #######