2 PowerShell Scripts to help with SharePoint Development

This script from here by Omar Stewart The first, is a script to quickly lookup a SharePoint Error Based on Correlation ID. Here's the script: ------------------------------------------------------------------------------------------------------------- # # Filename: Find-SPError.ps1 # Write-Host $start = (Get-Date).AddMinutes(-2); $end = (Get-Date).AddMinutes(2); #Get Correlation ID $correlation = "*"; $correlation += Read-Host "Correlation ID"; $correlation = $correlation.Trim(); $correlation +="*"; Write-Host … Continue reading 2 PowerShell Scripts to help with SharePoint Development