Quantcast
Viewing all articles
Browse latest Browse all 15

SharePoint Health Analyzer: “Built-in accounts are used as application pool or service identities” but I don’t find the service in the services list. What can I do?

If your service account is not in the services list (i.e. SPTraceV4), you will not be able to manage the service through the central administration user interface. As you should use SharePoint to perform this operation, you will have to use PowerShell. You can use the following script:

$servicename = "SPTraceV4"
$managedaccountname = "DOMAIN\sp_admin"
 
$farm = Get-SPFarm
$SPTimerv4 = $farm.Services | Where {$_.Name -eq $servicename}
$SPTimerV4NewAccount = Get-SPManagedAccount $managedaccountname
$SPTimerv4.ProcessIdentity.CurrentIdentityType = "SpecificUser"
$SPTimerv4.ProcessIdentity.ManagedAccount = $SPTimerv4NewAccount
$SPTimerv4.ProcessIdentity.Update()
As you can see, you will have to use a managed account. If your account is not yet registered as a managed account, you will have to register it before performing this operation.

____

Didier Danse
Devoteam LuxembourgDevoteam Group

Image may be NSFW.
Clik here to view.

Viewing all articles
Browse latest Browse all 15

Trending Articles