local workstation admin account

B

Brent

I want to create a network user account in Active Directory that will grant
the user local admin rights to the network workstation however, I do not
want that account to have admin rights to the servers/network. How can I do
this in a way without having to create the user account locally on all the
1400+ workstations we have? The account will be for a part time technician
that will be working on workstations to do things like to install software
and hardware on the local workstation. I understand that the Domain Admin
group will give the user admin rights to computers in the network but I
assume it also includes the servers and DC's and the built-in Administrators
groups would give the user admin rights to the server too.

Thanks
 
Y

ys@work

Hi,

Another easier mean instead of using the reskit utility is to use a script
and "net localgroup", like the following:
net localgroup administrators domain\user1 /add
 
B

Brent

Ok, so if I create a domain group such as PartTimeTech and make the user
account a member if that group I could use the Cusrmgr tool to make the
PartTimeTech domain group a member of the local administrators group of the
workstation?

Thanks,
Brent
 
Y

ys@work

Yeap. I've just tested it. You could either use 'cusrmgr' to ran the command
remotely or as a script or 'net local group' on the local machines. Both
should work.

Example:
Global Group Name: "WorkstationsAdmins"
Workstation Name: "WS1"
Local Administrators Group Name: "Administrators"
Domain Netbios Name: "MyDomain"

Using 'cusrmgr' (can be executed remotely):
cusrmgr -m \\WS1 -alg Administrators -u WorkstationsAdmins

Using 'net localgroup' (must be executed on the workstation):
net localgroup Administrators MyDomain\WorkstationsAdmins /add
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top