OK, so here is the SharePoint Health Analyzer error message you get:
The following services are managed by SharePoint, but their running state does not match what SharePoint expects: . This can happen if a service crashes or if an administrator starts or stops a service using a non-SharePoint interface. If SharePoint-managed services do not match their expected running state, SharePoint will be unable to correctly distribute work to the service.
SPAdminV4
In order to fix this, you can run the PowerShell script below:
|
1 2 3 4 5 6 |
Add-PSSnapin Microsoft.SharePoint.powershell $server = Get-SPServer PBNET-SPS $server.ServiceInstances | where{$_.TypeName -like "*SharePoint Foundation Administration*"} $serviceinstance = $server.ServiceInstances | where{$_.TypeName -like "*SharePoint Foundation Administration*"} $serviceinstance.Provision() |
