You could use this script to set auto logon for whichever account you want:
Code:
'This script sets the default Domain and the autologon name and password
'This script is meant to be run from the cmdlines.txt file.
Option Explicit
Dim ws
Set ws = WScript.CreateObject("WScript.Shell")
Dim strKeyPath
strKeyPath = "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\"
ws.RegWrite strKeyPath & "AutoAdminLogon", "1", "REG_SZ"
ws.RegWrite strKeyPath & "AutoLogonCount", "1", "REG_SZ"
ws.RegWrite strKeyPath & "DefaultPassword", "yourpassword", "REG_SZ"
ws.RegWrite strKeyPath & "DefaultUserName", "Administrator", TO remove theses details
Code:
'This script sets the default Domain and the autologon name and password
'This script is meant to be run from the cmdlines.txt file.
Option Explicit
Dim ws
Set ws = WScript.CreateObject("WScript.Shell")
Dim strKeyPath
strKeyPath = "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\"
ws.RegWrite strKeyPath & "AutoAdminLogon", "0", "REG_SZ"
ws.RegWrite strKeyPath & "AutoLogonCount", "0", "REG_SZ"
ws.RegWrite strKeyPath & "DefaultPassword", "", "REG_SZ"
ws.RegWrite strKeyPath & "DefaultUserName", "", Use the first script as a startup script and then when you are done use the other as a startup and shutdown script to make sure it runs.