Silently continue when adding snap-in

Useful for cases where the module is loaded for management of SPO sites, or where no snap-in exists.
This commit is contained in:
RCormier-MSFT 2018-03-14 16:01:09 -04:00
Родитель ca13104a5d
Коммит fd9e102ee7
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1,2 +1,2 @@
#SharePoint PowerShell Snap-In
if(!(Get-PSSnapin Microsoft.SharePoint.Powershell -ErrorAction 0)){Add-PSSnapin Microsoft.SharePoint.PowerShell}
if(!(Get-PSSnapin Microsoft.SharePoint.Powershell -ErrorAction 0)){Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue}