IIS Reset on all SP Servers using PowerShell

This script will list all SP Servers and restarts IIS on all of them.

add-PSSnapin microsoft.sharepoint.powershell
$spserver = get-spserver | ?{$_.role -eq "Application"}
foreach ($server in $spserver)
{
    write-host "Performing IIS Reset on Server:"$server.name
    iisreset $server.Name
}

Comments

Popular posts from this blog

SharePoint 2013 and InfoPath 2013 - Creating Web Enabled Forms

Search stops working and Central admin Search screens error

"We’re sorry. We ran into a problem completing your request. Please try that again in few minutes." Excel Service SharePoint