SUMMARY
This article describes several methods for granting users the rights to manage services in Windows 2000.
By default in Windows 2000, only Administrators and Power Users can start, stop, or pause services. This article describes techniques for granting these rights to other users and groups.
back to the top
Method 1: Grant rights using Group Policy
It is possible to give these rights to users by applying Group Policy.
For additional information about how to do this, click the following article number to view the article in the Microsoft Knowledge Base:
256345
Configuring Group Policies to set security for system services
The article gives detailed step-by step instructions. However, the article does not explicitly state that there are no corresponding settings in Local Group Policy.
back to the top
Method 2: Grant rights using Security templates
This method is very similar to Method 1, but it uses Security templates to change the permissions on system services. To do this, follow these steps:
- Click Start, click Run, and then type MMC.
- On the Console menu, click Add/Remove Snap-in.
- Click Add.
- Select the Security Configuration and Analysis snap-in, and then click Add.
- Click Close, and then click OK.
- In the MMC, right-click the Security Configuration and Analysis item, and then click Open Database.
- Give a name for the database, and then browse to where you would like to store it.
- When prompted, select a Security Template to import. For example, the "basicwk.inf" contains values for the standard settings found on a Windows 2000 Professional computer.
- In the MMC, right-click the Security Configuration and Analysis item, and then click the Analyze Computer now option. Choose a location for the log file, when prompted.
- After analysis is complete, configure the service permissions as follows:
- Double-click the System Services branch in the MMC.
- Right-click the service that you want to change, and then click Security.
- Click Edit Security.
- Add user accounts as required, and configure the permissions for each account. By default, the user will be granted "Start, stop and pause" permissions.
- To apply the new settings to the local computer, simply right-click the Security Configuration and Analysis item, and then click the Configure Computer Now option.
It is also possible to export your modified settings from the MMC and apply these to multiple machines using the SECEDIT command-line tool that ships with Windows 2000. For more information on using SECEDIT type the following at the command prompt:
NOTE: Applying the settings in this way will re-apply all of the settings in the template and so may override other file, registry, or service permissions set by other means.
back to the top
Method 3: Grant rights using Subinacl.exe
The final method for assigning rights to manage services is to use the Subinacl.exe utility from the Windows 2000 Resource Kit. The syntax for this is:
SUBINACL /SERVICE \\MachineName\ServiceName /GRANT=[DomainName\]UserName[=Access]
Notes
Automating Multiple Changes
With Subinacl there is no option you can specify that will set the required access for all services on a given computer. However, the following sample script demonstrates one way the above method could be extended to automate the task:
strDomain = Wscript.Arguments.Item(0)'domain where computer account is held
strComputer = Wscript.Arguments.Item(1)'computer netbios name
strSecPrinc = Wscript.Arguments.Item(2)'user's login name as in: DomainName\UserName
strAccess = Wscript.Arguments.Item(3)'access granted, as per the list in the KB
'bind to the specified computer
set objTarget = GetObject("WinNT://" & strDomain & "/" & strComputer & ",computer")
'create a shell object. Needed to call subinacl later
set objCMD = CreateObject("Wscript.Shell")
'retrieve a list of services
objTarget.filter = Array("Service")
For each Service in objTarget
'call subinacl to se the permissions
command = "subinacl /service " & Service.name & " /grant=" & strSecPrinc & "=" & strAccess
objCMD.Run command, 0
'report the services that have been changed
Wscript.Echo "User rights changed for " & Service.name & " service"
next
Notes
back to the top