Mic360 Posted December 5, 2004 Posted December 5, 2004 hi im new to this and im wondering is there a way i can create 2 user accounts? one for me and one for my wife. i want to make it so it is unattended and when it starts to install programs they will install on both user accounts? thanks alot..
galvanocentric Posted December 5, 2004 Posted December 5, 2004 hi im new to this and im wondering is there a way i can create 2 user accounts? one for me and one for my wife. i want to make it so it is unattended and when it starts to install programs they will install on both user accounts? thanks alot..Make a command script, call it useraccounts.cmd or whatever you want. Just make sure the extension is cmd.Then paste the following:@echo offnet user MrFoo Bar /add /fullname:"Mr. Foo Bar"net user MrsFoo Bar /add /fullname:"Mrs. Foo Bar"net localgroup Administrators MrFoo /addnet localgroup Administrators MrsFoo /addexitMrFoo and MrsFoo are the usernames. Bar is the password for both. You can ditch /fullname:"whatever" if you don't want it, I like having the extra details. Obviously, for net localgroup replace MrFoo and MrsFoo with whatever you chose for the two usernames.
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