Mount-DPMRecoveryPoint
掛接數據源的復本或恢復點 VHD。
語法
Mount-DPMRecoveryPoint
[-Datasource] <Datasource>
[[-RecoveryPoint] <RecoverySource>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Description
Mount-DPMRecoveryPoint Cmdlet 會掛接指定數據源的複本或恢復點 VHD。 使用掛接的 VHD 之後,請執行 Dismount-DPMRecoveryPoint Cmdlet 將其卸除。 保留掛接的 VHD 可能會導致備份作業失敗。
範例
範例 1:掛接複本 VHD
PS C:\>$ProtectionGroup = Get-DPMProtectionGroup
PS C:\> $DataSource = Get-DPMDatasource -ProtectionGroup $ProtectionGroup[0]
PS C:\> Mount-DPMRecoveryPoint -Datasource $DataSource[0]
第一個命令會使用 Get-DPMProtectionGroup Cmdlet 來取得 Data Protection Manager (DPM) 伺服器上的保護群組,然後將它們儲存在 $ProtectionGroup 變數中。
第二個命令會使用 Get-DPMDatasource Cmdlet 來取得$ProtectionGroup陣列第一個保護群組中的數據源。 命令會將數據源儲存在 $DataSource 變數中。
第三個命令會掛接$DataSource陣列中第一個數據源的復本 VHD。
範例 2:掛接恢復點 VHD
PS C:\>$ProtectionGroup = Get-DPMProtectionGroup
PS C:\> $DataSource = Get-DPMDatasource -ProtectionGroup $ProtectionGroup[0]
PS C:\> $RecoveryPoints = Get-DPMRecoveryPoint -Datasource $Datasource[0]
PS C:\> Mount-DPMRecoveryPoint -Datasource $DataSource[0] -RecoveryPoint $RecoveryPoints[0]
第一個命令會使用 Get-DPMProtectionGroup Cmdlet 來取得 Data Protection Manager (DPM) 伺服器上的保護群組,然後將它們儲存在 $ProtectionGroup 變數中。
第二個命令會使用 Get-DPMDatasource Cmdlet 來取得$ProtectionGroup陣列第一個保護群組中的數據源。 命令會將數據源儲存在 $DataSource 變數中。
第三個命令會使用 Get-DPMRecoveryPoint Cmdlet 來取得$DataSource陣列中第一個數據源的恢復點,然後將它們儲存在$RecoveryPoints變數中。
第四個命令會掛接對應至$RecoveryPoints陣列中第一個恢復點的 VHD。
參數
-Confirm
在執行 Cmdlet 之前,提示您進行確認。
類型: | SwitchParameter |
別名: | cf |
Position: | Named |
預設值: | False |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-Datasource
指定您要掛接其復本或恢復點 VHD 的數據源。
類型: | Datasource |
Position: | 0 |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |
-RecoveryPoint
指定數據源的恢復點。 如果指定此參數,則會掛接對應至此恢復點的 VHD。
類型: | RecoverySource |
Position: | 1 |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-WhatIf
顯示 Cmdlet 執行時會發生什麼事。 Cmdlet 未執行。
類型: | SwitchParameter |
別名: | wi |
Position: | Named |
預設值: | False |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |