為什麼 Powershell 無法辨識 Get-DPMDatasource? (使用DPM模組)

為什麼 Powershell 無法辨識 Get-DPMDatasource? (使用DPM模組)

我在用

Import-Module DataProtectionManager

有權存取 powershell 中的 DPM cmdlet。 (DPM 版本 2012R2)

不幸的是,Get-DPMDatasource它聲明它是一個無法識別的 cmdlet。

如果沒有獲取資料來源,我無法啟動復原點等。

我使用它的一個例子在這裡:

$ds = Get-DPMDatasource $DPMServer | where { $_.Id -eq $DataSourceID } # Get tthe datasource affected

另外,我還附上了一張圖片。此模組導入良好。 powershell ISE可以辨識cmdlet,但是運行時無法辨識?

在此輸入影像描述

答案1

這些 cmdlet 需要額外匯入。

使用,Import-Module DPMExtendedCmdlets

相關內容