Saturday, 4 October 2014

Re-Provisioning all the SharePoint Web Services



Run the following commands one by one on SharePoint PowerShell:

$h = Get-SPServiceHostconfig

$h.Provision()

$services = Get-SPServiceApplication

foreach ($service in $services) { $service.provision();
write-host $service.name}

No comments:

Post a Comment