Hello,
I am in progress of making an unattended answer file to let an imaged server log on as administrator account automatically once after syspreping process is completed. However, it keeps failing to log on automatically with an error on a screen"The user name or password is incorrect". I have tried to add autologon account to Audit Systems, Specialized system, but it still has the same error. Would you please help me what I have to resolve this issue?
Here is the answer file that I have. I added both Administrator Account and autologon account in OOBE system.
<settings pass="oobeSystem">
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<OOBE>
<HideEULAPage>true</HideEULAPage>
</OOBE>
<UserAccounts>
<AdministratorPassword>
<Value>Password</Value>
<PlainText>false</PlainText>
</AdministratorPassword>
</UserAccounts>
<VisualEffects>
<FontSmoothing>ClearType</FontSmoothing>
</VisualEffects>
<RegisteredOrganization>Company</RegisteredOrganization>
<RegisteredOwner>IT</RegisteredOwner>
<TimeZone>Eastern Standard Time</TimeZone>
<AutoLogon>
<Password>
<Value>Password</Value>
<PlainText>false</PlainText>
</Password>
<LogonCount>1</LogonCount>
<Enabled>true</Enabled>
<Username>Administrator</Username>
</AutoLogon>
</component>