Jump to content

Recommended Posts

Posted

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


Posted
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 off
net user MrFoo Bar /add /fullname:"Mr. Foo Bar"
net user MrsFoo Bar /add /fullname:"Mrs. Foo Bar"
net localgroup Administrators MrFoo /add
net localgroup Administrators MrsFoo /add

exit

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

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