add user to remote machine

  • Thread starter Thread starter Alice
  • Start date Start date
A

Alice

I need to add multiple domain user accounts to each of
their desktop computers local administrator group. Is
their a better way to do this besides 'right-click -
manage'? I was looking for a script if possible.

Thanks.
 
from command line: 'net user ?' will give you syntax help
for adding new users.

Example:
net user jsmith password /add

HTH
 
That command actually creates new user accounts. I need
to add a domain user account to the local administrator
group on a remote workstation.
 
Back
Top