Wrong Password prompt on Sysprep boot for Administrator account
Answers (2)
Top Answer
<component name="Microsoft-Windows-Deployment" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<RunSynchronous>
<RunSynchronousCommand wcm:action="add">
<Path>net user administrator /active:yes</Path>
<Order>1</Order>
</RunSynchronousCommand>
</RunSynchronous>
</component>
Comments:
-
Thanks! This helped me out no end. - ItzMar 8 years ago
yours
<AutoLogon>
<Enabled>true</Enabled>
<Username>Administrator</Username>
<LogonCount>1</LogonCount>
</AutoLogon>
typical
<AutoLogon>
<Password>
<Value>TwBtAG4AMQBjADAANQByADAAdQBwAKMAUABhAHMAcwB3AG8AcgBkAA===</Value>
<PlainText>false</PlainText>
</Password>
<Enabled>true</Enabled>
<LogonCount>1</LogonCount>
<Username>administrator</Username>
</AutoLogon>
Also you should not name the secondary account administrator like your are doing, should be more like"
<UserAccounts>
<LocalAccounts>
<LocalAccount wcm:action="add">
<Password>
<PlainText>false</PlainText>
<Value>TABJAE4AsdfaasgdsaAFAAYQBzAHMAdwBvAHIAZAA=</Value>
</Password>
<DisplayName>F11Master</DisplayName>
<Name>F11Master</Name>
</LocalAccount>
</LocalAccounts>
<AdministratorPassword>
<PlainText>false</PlainText>
<Value>QgByAGEAdAB3AHUAcgAkAHQskjlasdfkvbfbshgb;zjxcklvnsxhdfhj8AcgBQAGEAcwBzAHcAbwByAGQA</Value>
</AdministratorPassword>
</UserAccounts>
Comments:
-
Thanks for the response, im using WSIM to generate the xml. So if i make the change to the first section you commented on ill get autologon.
The local account i am creating with the same name "administrator" was something i was told to do to get the default admin renabled.
Is this section not needed then? as i only need the default admin account. - ItzMar 8 years ago