我在用
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