Posts

Showing posts from April, 2013

Site performance monitoring by powershell script

Hi, Here I have given the powershell script to check for the site availability and also to monitor the site performance. In both case, it will trigger mail to the configured users or groups. if ( (Get-PSSnapin -Name Microsoft.SharePoint.Powershell -ErrorAction SilentlyContinue) -eq $null ) { Add-PSSnapin Microsoft.SharePoint.Powershell  } #---------------------------------------------------------------------------------------------------------------------------------------------------------------------- ####################################################################################################################################################################### ##########################Script to find the avalability and performance of the site################################################################################### ###########################################################################################################################################