Skip to content

Instantly share code, notes, and snippets.

@fabio6864
Last active December 7, 2018 12:41
Show Gist options
  • Save fabio6864/99b9447fe7a61ae1f49507e1ee07fd16 to your computer and use it in GitHub Desktop.
Save fabio6864/99b9447fe7a61ae1f49507e1ee07fd16 to your computer and use it in GitHub Desktop.
PowerShell
$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"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment