local computer administrator

  • Thread starter Thread starter djtony
  • Start date Start date
D

djtony

hi all,

i have a windows 2000 domain,
1Server and 100 Computers are connecting to a DomainA,

userA is a domain user (not a doamin Admins),
i want him to be a Computer01 to Computer50 's local computer system
administrator,
that mean Computer01 to Computer50 can be fully control by userA , but not
Computer51 to Computer100.

how can i set that security for userA in one time ??

thanks !
 
hi all,

i have a windows 2000 domain,
1Server and 100 Computers are connecting to a DomainA,

userA is a domain user (not a doamin Admins),
i want him to be a Computer01 to Computer50 's local computer system
administrator,
that mean Computer01 to Computer50 can be fully control by userA , but not
Computer51 to Computer100.

how can i set that security for userA in one time ??

thanks !
You can script this and run it on Computer01 to Computer50 (you can use PsExec to run the script remotely, tip 4141 in the 'Tips & Tricks' at http://www.jsifaq.com)
net localgroup Administrators "MyDomain\userA" /ADD

or
implement Group Policy Restricted Groups. See tip 5319 » How do I create a global group, so that it is a member of the local administrators group on all workstations and member servers, by using group policy restricted groups?



Jerold Schulman
Windows Server MVP
JSI, Inc.
http://www.jsiinc.com
http://www.jsifaq.com
 
thanks a lot !

Jerold Schulman said:
You can script this and run it on Computer01 to Computer50 (you can use
PsExec to run the script remotely, tip 4141 in the 'Tips & Tricks' at
http://www.jsifaq.com)
net localgroup Administrators "MyDomain\userA" /ADD

or
implement Group Policy Restricted Groups. See tip 5319 » How do I create a
global group, so that it is a member of the local administrators group on
all workstations and member servers, by using group policy restricted
groups?



Jerold Schulman
Windows Server MVP
JSI, Inc.
http://www.jsiinc.com
http://www.jsifaq.com
 
Back
Top