Disable-DPMTapeDrive
禁用 DPM 库中的磁带驱动器。
语法
Disable-DPMTapeDrive
[-TapeDrive] <Drive[]>
[-PassThru]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
说明
Disable-DPMTapeDrive cmdlet 在 System Center - Data Protection Manager (DPM) 库中禁用磁带驱动器。
示例
示例 1:在库中禁用磁带机
PS C:\>$DpmLibrary = Get-DPMLibrary -DPMServerName "Contoso-DPMServer"
PS C:\> $DpmTapeDrive = Get-DPMTapeDrive -DPMLibrary $DpmLibrary
PS C:\> Disable-DPMTapeDrive -TapeDrive $DpmTapeDrive
第一个命令使用 Get-DPMLibrary cmdlet 获取库,然后将其存储在$DpmLibrary变量中。
第二个命令使用 Get-DPMTapeDrive cmdlet 获取库中的磁带,然后将其存储在$DpmTapeDrive变量中。
第三个命令禁用$DpmTapeDrive中的磁带驱动器。
参数
-Confirm
在运行 cmdlet 之前,提示你进行确认。
类型: | SwitchParameter |
别名: | cf |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-PassThru
返回一个对象,该对象表示正在使用的项。 默认情况下,此 cmdlet 不生成任何输出。
类型: | SwitchParameter |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-TapeDrive
指定此 cmdlet 禁用的磁带驱动器数组。
类型: | Drive[] |
Position: | 1 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-WhatIf
显示 cmdlet 运行时会发生什么情况。 cmdlet 未运行。
类型: | SwitchParameter |
别名: | wi |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |