Hello, this can't be done with GroupPolicy, How ever you can use Group
Policy to assign a logon script to do it. You can use the exampel below to
do what you want.
Switch Service Accounts to Local Service
Description
Changes the service account to LocalService for any services running
under the hypothetical service account Netsvc.
Script Code
strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colServices = objWMIService.ExecQuery _
("Select * from Win32_Service")
For each objService in colServices
If objService.StartName = ".\netsvc" Then
errServiceChange = objService.Change _
( , , , , , , "NT AUTHORITY\LocalService" , "")
End If
Next
See the microsoft.public.windows.server.scripting community on the
msnews.microsoft.com news server.
--
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