Disable-DPMProductionServer
禁用 DPM 保护代理。
语法
Disable-DPMProductionServer
[-ProductionServer] <ProductionServer>
[-WhatIf]
[-Confirm]
[<CommonParameters>]
说明
Disable-DPMProductionServer cmdlet 禁用计算机上的 System Center - Data Protection Manager (DPM) 保护代理。 禁用 DPM 保护代理后,计算机备份作业不会运行。
示例
示例 1:禁用保护代理
PS C:\>$DpmServer = Get-DPMProductionServer -DPMServerName "DpmWest01" | Where {$_.Name -eq "dist01.contoso.com"}
PS C:\> Disable-DPMProductionServer -ProductionServer $DpmServer
第一个命令获取名为 dpmWest01 的 DPM 服务器的名为 dist01.contoso.com 的计算机上的 DPM 保护代理。 该命令将结果存储在$DpmServer变量中。
第二个命令禁用存储在$DpmServer中的保护代理。
参数
-Confirm
在运行 cmdlet 之前,提示你进行确认。
类型: | SwitchParameter |
别名: | cf |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-ProductionServer
指定安装了 DPM 保护代理的计算机。 此 cmdlet 禁用保护代理。
类型: | ProductionServer |
Position: | 1 |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-WhatIf
显示 cmdlet 运行时会发生什么情况。 cmdlet 未运行。
类型: | SwitchParameter |
别名: | wi |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
输入
ProductionServer