为什么 Get-DPMDatasource 在 Powershell 中无法识别?(使用 DPM 模块)

为什么 Get-DPMDatasource 在 Powershell 中无法识别?(使用 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

相关内容