gpt4 book ai didi

powershell - 为什么 Powershell 中的 "New-DPMRecoveryPoint"cmdlet 缺少参数? (DPM模块)

转载 作者:行者123 更新时间:2023-12-02 22:48:10 26 4
gpt4 key购买 nike

使用:

import-module DataProtectionManager
import-module DPMExtendedCmdlets

我有权访问 cmdlet New-DPMRecoveryPoint

在 Microsoft 文档中,它说有一个名为 DiskRecoveryPointOption 的参数 https://technet.microsoft.com/en-us/library/hh881586(v=sc.20).aspx

但是,当使用此参数时,似乎会错误提示“找不到参数”

也奇怪。使用“Get-Help”Cmdlet 似乎未显示此参数?

我正在使用 DPM 2012R2(这是 Microsoft 页面上针对此 cmdlet 指定的版本)

我的用法是这样的...

New-DPMRecoveryPoint -Datasource $ds -Disk -DiskRecoveryPointOption withsynchronize

谁能告诉我为什么我无法使用这个参数?

最佳答案

奇怪的是,New-DPMRecoveryPoint 似乎有两种不同的实现:

Import-Module DataProtectionManager
Get-Command -Module DataProtectionManager -Name New-DPMRecoveryPoint
Remove-Module DataProtectionManager

Import-Module DPMExtendedCmdlets
Get-Command -Module DPMExtendedCmdlets -Name New-DPMRecoveryPoint
Remove-Module DPMExtendedCmdlets

结果如下:

CommandType    Name                   ModuleName                      
----------- ---- ----------
Cmdlet New-DPMRecoveryPoint DataProtectionManager
Cmdlet New-DPMRecoveryPoint DPMExtendedCmdlets

您可以检查每个模块的实现帮助:

foreach ( $moduleName in 'DataProtectionManager','DPMExtendedCmdlets')
{
Write-Host "#### ModuleName: $moduleName ####"
Import-Module $moduleName
help New-DPMRecoveryPoint
Remove-Module $moduleName
}

它显示 DataProtectionManager\New-DPMRecoveryPoint 的参数设置如下:

New-DPMRecoveryPoint [-Datasource] <Datasource[]> [-AdhocJobsContext <AdhocJobsContext>] 
[-BackupType <BackupType>] [-JobStateChangedEventHandler <JobStateChangedEventHandler>]
[-WithDataIntegrityCheck] -Disk [-Confirm] [-WhatIf] [<CommonParameters>]

这与在线文档非常接近但不完全匹配。您可以获得与您安装的实现相匹配的文档,如下所示:

Get-Module | Remove-Module
Import-Module DataProtectionManager
help New-DPMRecoveryPoint -Full

关于powershell - 为什么 Powershell 中的 "New-DPMRecoveryPoint"cmdlet 缺少参数? (DPM模块),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33038115/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com