Load SharePoint PS Module (if not already loaded)
#Load SharePoint PS Module (if not already loaded) | |
$ver = $host | select version | |
if ($ver.Version.Major -gt 1) {$host.Runspace.ThreadOptions = "ReuseThread"} | |
if ((Get-PSSnapin "Microsoft.SharePoint.PowerShell" -ErrorAction SilentlyContinue) -eq $null) | |
{ | |
Add-PSSnapin "Microsoft.SharePoint.PowerShell" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment