johnhc, on 27 May 2010 - 01:42 PM, said:
EDIT: I did not see a way to create a new account. Possible? To specify an Administrator PW, it required me to check "Skip user creation". Is this really necessary? I saw no way to specify network adapter options (example, turn off NetBIOS). Possible? Is there a place/document that might answer some/all of these questions?
*You can add this to Autounattend.xml afterwards to create a custom(1 on more) user accounts with passwords or blank passwords on first logon:
<UserAccounts>
<LocalAccounts>
<LocalAccount wcm:action="add">
<Password>
<PlainText>False</PlainText>
<Value>UABhAHMAcwB3AG8AcgBkAA==</Value>
</Password>
<Group>Administrators</Group>
<DisplayName>User 1</DisplayName>
<Name>User 1</Name>
</LocalAccount>
</LocalAccounts>
</UserAccounts>
Maybe Ben could add this feature to Unattended section?
The sample in this post creates a new Administrator class user with black password.
Note that you have to run the following command when installing with blank passwords to prevent password expiration.No hurry tho.I think it was 30+ days after install:
net accounts /maxpwage:unlimited
Regarding NetBIOS - this service can be configured from Tweaks-Services.
This post has been edited by Tomorrow: 28 May 2010 - 01:30 AM