載入 SharePoint 管理單元

可以使用以下方法載入 SharePoint Snapin:

Add-PSSnapin "Microsoft.SharePoint.PowerShell"

**這僅適用於 64 位版本的 PowerShell。**如果視窗在標題中顯示“Windows PowerShell(x86)”,則說明你使用的版本不正確。

如果已載入管理單元,則上面的程式碼將導致錯誤。使用以下內容僅在必要時載入,可以在 Cmdlet /函式中使用:

if ((Get-PSSnapin "Microsoft.SharePoint.PowerShell" -ErrorAction SilentlyContinue) -eq $null)
{
    Add-PSSnapin "Microsoft.SharePoint.PowerShell"
}

或者,如果啟動 SharePoint Management Shell,它將自動包含 Snap-In。

若要獲取所有可用 SharePoint Cmdlet 的列表,請執行以下命令:

Get-Command -Module Microsoft.SharePoint.PowerShell