Skip to content

Instantly share code, notes, and snippets.

View fabio6864's full-sized avatar
💭
Gisting all the time

fabio fabio6864

💭
Gisting all the time
  • London
View GitHub Profile
@fabio6864
fabio6864 / GetSharePointSnapin.ps
Last active December 7, 2018 12:41
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"
}