The best way may is to make them members of local admin?
Machine Script Solution:
By combine Windows 2000/2003 GPO and creating a machine script, we can get
A good Solution to this problem, and by avoiding the problems that "Restrict
Groups" option from Windows 2000/2003 GPO create.
The script structure:
Script Name: Machine_Startup_Script.vbs (You can use any name that you
like,
But you need to verify that the file
name suffix end with
*.vbs).
Operation Interval: Each machine startup or/and shutdown.
'Beginning Of the Script
On Error Resume Next
'get main objects/variables
Set ws = WScript.CreateObject ( "WScript.Shell" )
compname = ws.ExpandEnvironmentStrings ( "%COMPUTERNAME%" )
Set adGrp = GetObject ( "WinNT://" & compname & "/Administrators,group" )
'add domain groups to local admin group
adGrp.Add ( "WinNT://mywindowsdomain.loc/Power Users OR
Administrators,group" )
'End of the Script
mywindowsdomain.loc = The name of the Domain that the user workstation
log into.
Sentence that begin with " ' " use for a comment only.
After creating the script, we need add this script to Domain Default GPO -
as
Computer startup or/and shutdown script and we done.
--
Regards,
Christoffer Andersson
No email replies please - reply in the newsgroup
If the information was help full, you can let me know at:
http://www.itsystem.se/employers.asp?ID=1