bfc_xxx Posted May 16, 2010 Posted May 16, 2010 I have created an autounattended xml and I want one user to be created without password and autologon.The problem is that the setup finishes and at logon screen says "wrong password"Can anyone see what am I doing wrong?<?xml version="1.0" encoding="utf-8"?><unattend xmlns="urn:schemas-microsoft-com:unattend"> <settings pass="windowsPE"> <component name="Microsoft-Windows-International-Core-WinPE" 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"> <SetupUILanguage> <UILanguage>el-gr</UILanguage> </SetupUILanguage> </component> <component name="Microsoft-Windows-Setup" 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"> <UserData> <Organization>user</Organization> <FullName>user</FullName> <AcceptEula>true</AcceptEula> </UserData> <ImageInstall> <OSImage> <InstallToAvailablePartition>false</InstallToAvailablePartition> <WillShowUI>OnError</WillShowUI> </OSImage> </ImageInstall> </component> </settings> <settings pass="offlineServicing"> <component name="Microsoft-Windows-LUA-Settings" 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"> <EnableLUA>false</EnableLUA> </component> </settings> <settings pass="oobeSystem"> <component name="Microsoft-Windows-Shell-Setup" 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"> <AutoLogon> <Enabled>true</Enabled> <LogonCount>4</LogonCount> <Username>user</Username> </AutoLogon> <OOBE> <HideEULAPage>true</HideEULAPage> <SkipMachineOOBE>true</SkipMachineOOBE> <NetworkLocation>Home</NetworkLocation> <ProtectYourPC>1</ProtectYourPC> <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE> </OOBE> <DisableAutoDaylightTimeSet>false</DisableAutoDaylightTimeSet> <TimeZone>GTB Standard Time</TimeZone> <ComputerName>user-PC</ComputerName> </component> </settings> <settings pass="specialize"> <component name="Microsoft-Windows-Security-Licensing-SLC-UX" 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"> <SkipAutoActivation>true</SkipAutoActivation> </component> </settings></unattend>
maxXPsoft Posted May 16, 2010 Posted May 16, 2010 (edited) A. You have to create the userB. You need a Password if Account is Administrator TypeUABhAHMAcwB3AG8AcgBkAA== can be used for blank passwordC. This in oobesystem with the autologon <UserAccounts> <LocalAccounts> <LocalAccount wcm:action="add"> <PlainText>false</PlainText> <Password> <Value>UABhAHMAcwB3AG8AcgBkAA==</Value> </Password> <Group>Administrators</Group> <DisplayName>maxXPsoft</DisplayName> <Name>maxXPsoft</Name> </LocalAccount> </LocalAccounts> </UserAccounts> Edited May 16, 2010 by maxXPsoft
bfc_xxx Posted May 16, 2010 Author Posted May 16, 2010 Thank you. It worked. Just a small correction: <UserAccounts> <LocalAccounts> <LocalAccount wcm:action="add"> <Password> <PlainText>false</PlainText> <Value>UABhAHMAcwB3AG8AcgBkAA==</Value> </Password> <Group>Administrators</Group> <DisplayName>maxXPsoft</DisplayName> <Name>maxXPsoft</Name> </LocalAccount> </LocalAccounts> </UserAccounts>
maxXPsoft Posted May 17, 2010 Posted May 17, 2010 You can actually do this<Password> <Value></Value> <PlainText>true</PlainText></Password>
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now