(Feature Request) Add extra parts to Autounattend in NTLite section

LiL-FeLLa

New Member
ive been trying to make a Autounattend xml file in NTLite for windows 10 x64 build 1809
i wanted to add local user details so can auto logon with admin account
it seems those features are not in the list to use within NTLite

small bits of example

<UserAccounts>
<LocalAccounts>
<LocalAccount wcm:action="add">
<Password>
<Value></Value>
<PlainText>true</PlainText>
</Password>
<Description></Description>
<DisplayName>USERNAME</DisplayName>
<Group>Administrators</Group>
<Name>USERNAME</Name>
</LocalAccount>
</LocalAccounts>
</UserAccounts>

<AutoLogon>
<Password>
<Value></Value>
<PlainText>true</PlainText>
</Password>
<Enabled>true</Enabled>
<Username></Username>
</AutoLogon>

<FirstLogonCommands>
<SynchronousCommand wcm:action="add">
<Order>1</Order>
<RequiresUserInput>false</RequiresUserInput>
<CommandLine>cmd /C wmic useraccount where name="" set PasswordExpires=false</CommandLine>
<Description>Password Never Expires</Description>
</SynchronousCommand>
</FirstLogonCommands>


can this be added to the autounatteded section in NTLite please..
 
Everything is in NTLite.

In unattended page Use "Add local account" from toolbar
In Post-Setup page use "Add - Template - Disable user password expiration"
 
Back
Top