Restart All SharePoint Services Using PowerShell
Posted by fredmorrison on 2009-06-16
The following PowerShell script will quickly restart all SharePoint-related services except Windows SharePoint Services VSS Writer, which I normally do not have running automatically.
# Author: Fred Morrison
# Notes: We exempt the SharePoint VSS Writer since it is rarely used.
Restart-ServiceĀ -DisplayName “Windows SharePoint Services*” -Exclude “*Writer” -Verbose