November 10, 200718 yr I need to create a new user named Propietario with WSIM that is a member of the Administrators group and set it to autologon (in order to hide te Adminstrator account) after I installed my apps in Pass 6 Audit User.I've been messing around with it but I can`t get it to work What can I do??? The way I did it in XP was running the following CMD file:net user Propietario /addnet localgroup Administradores Propietario /addnet accounts /maxpwage:unlimitedreg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v "DefaultUserName" /d "Propietario" /freg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v "DefaultPassword" /d "" /frem reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v "AutoAdminLogon" /d "1" /fThis worked OK in XP, but seems like it doesn't work in vista (I've been running this cmd file in Pass 6 too).Thanks in advance
November 13, 200718 yr have you tried running your command file in a working install of windows to see if it works correctly at all under vista?Otherwise, this is something you would need to do in your autounattend file.
November 13, 200718 yr add the user information in the unattended file... it is not valid for pass 6.. only pass 5 and 7e.g <settings pass="auditSystem"> <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"> <UserAccounts> <LocalAccounts> <LocalAccount wcm:action="add"> <Password> <Value>UABhAHMAcwB3AG8AcgBkAFAAYQBzAHMAdwBvAHIAZAA=</Value> <PlainText>false</PlainText> </Password> <Name>Username</Name> <Group>Administrators</Group> <DisplayName>Username</DisplayName> <Description>Description</Description> </LocalAccount> </LocalAccounts> </UserAccounts> </component> </settings>
Create an account or sign in to comment