Health Analyzer
SharePoint 2010 Update of Databases Compactibility Upgrade Recommended
If you have recently upgraded your SharePoint 2010 Farm , you would notice the following Health Analyzer Warning : Within Central Admin Under Upgrad and Migration you would find the following messages. If you have a farm of Web Front Ends and Application Servers , Start the configuration Wizard on your primary Application server [...]
SharePoint 2010 – Start all the Health Checks
Use the following script to start all the Health Checks on the SharePoint server immediately. 12345678910111213# check to ensure Microsoft.SharePoint.PowerShell is loaded $snapin = Get-PSSnapin | Where-Object {$_.Name -eq ‘Microsoft.SharePoint.Powershell’} if ($snapin -eq $null) { Write-Host "Loading SharePoint Powershell Snapin" Add-PSSnapin "Microsoft.SharePoint.Powershell" } Get-SPTimerJob | Where {$_.Name -like "*Health*" -and $_.Name -like "*-all-*"} | Start-SPTimerJob