Jump to content

windows 2000 unattended and slipstreamed need advi


Recommended Posts

I have successfully completed windows 2000 unattended and slipstreamed

install.

:thumbup:thumbup works great the only question :thumbup

i have is the user names configuration

how 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 am

kinda new to this game i have only been doing system building for two years please help

Link to comment
Share on other sites

  • 4 weeks later...

  • 2 weeks later...

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.htm

just 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 = nothing

End sub

-------------------- end vbs --------------------'

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...