hi winterstorm2050
i was testing a bit with the unattend.xml so i dont need to insert a password during installation, and finally i found a solution (dont use a password)
with this it skips the screen where you need to insert a password
i was testing a bit with the unattend.xml so i dont need to insert a password during installation, and finally i found a solution (dont use a password)
Code:
<UserAccounts>
<AdministratorPassword>
<Value></Value>
<PlainText>true</PlainText>
</AdministratorPassword>
<LocalAccounts>
<LocalAccount wcm:action="add">
<Password>
<Value></Value>
<PlainText>true</PlainText>
</Password>
<Name>KrX</Name>
<DisplayName>KrX</DisplayName>
<Group>Administrators</Group>
</LocalAccount>
</LocalAccounts>
</UserAccounts>
with this it skips the screen where you need to insert a password