charleslewis64 Posted September 19, 2004 Posted September 19, 2004 I have successfully completed windows 2000 unattended and slipstreamedinstall. works great the only question i have is the user names configurationhow do i put my name in the install to auto create me as administrator and a second user or do i have to change my user names after install is complete. i amkinda new to this game i have only been doing system building for two years please help
wrx2nr Posted October 13, 2004 Posted October 13, 2004 I went to this site and found a way to setup your own user account as a local administrator during a Win XP Pro unattended install. This didnt work for me on a Win2k unattend but maybe you know a way to alter the syntax of these files to make it do so. Please let me know if you find a way. http://www.unattended.msfn.org/xp/autologon.htm
freakin Posted October 22, 2004 Posted October 22, 2004 If you can write vbs scripts (pretty much even if you cant ) visit here for how to add users and also users to groups etc http://www.15seconds.com/issue/011005.htmjust execute the vbs when is convenient...example add user'-------------------- start vbs --------------------'AddUser "newuser","mydomain"AddUser "newuser2","mydomain"Sub AddUser(strUser,strDomain) Dim Computer Dim User Set Computer = Getobject("WinNT://" & strDomain) Set User = computer.create("User",strUser) User.setinfo Set User = nothing Set computer = nothingEnd sub-------------------- end vbs --------------------'
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now