Stupid mistake, forgot to add a username to Unattended...

barberouge

Member
Messages
34
Reaction score
3
Hi,
I forgot to add a username to my windows 10 ntlite modified ISO. When installed it reboot to the login prompt.
Can I manual add one ? If yes, how ?
 
You can manually copy the missing lines to autounattend.xml if you don't want to remake the entire ISO.

Copy any lines which are NOT ALREADY present.
Code:
        <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">
                        <UserAccounts>
                                <LocalAccounts>
                                        <LocalAccount wcm:action="add">
                                                <Group>Administrators</Group>
                                                <Name>GARLIN</Name>
                                                <Password>
                                                        <PlainText>true</PlainText>
                                                        <Value>1234password</Value>
                                                </Password>
                                        </LocalAccount>
                                </LocalAccounts>
                        </UserAccounts>
                </component>
        </settings>
 
Back
Top