共用方式為


Get-DPMRecoverableItem

取得恢復點中可復原項目的清單。

語法

Get-DPMRecoverableItem
   [-RecoverableItem] <RecoverableObject>
   [-BrowseType] <BrowseType>
   [-Async]
   [-Tag <Object>]
   [<CommonParameters>]
Get-DPMRecoverableItem
   -RecoveryPointForShares <RecoverySource>
   [-Async]
   [-Tag <Object>]
   [<CommonParameters>]
Get-DPMRecoverableItem
   [-Datasource] <Datasource>
   [-SearchOption] <SearchSpecifications>
   [-Async]
   [-Tag <Object>]
   [<CommonParameters>]

Description

Get-DPMRecoverableItem Cmdlet 會取得 System Center - Data Protection Manager (DPM) 恢復點中可復原的專案清單。 根據來源的可復原專案如下所示:

  • 檔案系統:檔案和資料夾
  • Microsoft Exchange Server:記憶體群組、資料庫和信箱
  • Microsoft SQL Server:資料庫
  • Microsoft SharePoint:網站、資料庫和檔
  • 虛擬機
  • DPM 伺服器
  • 受保護計算機的系統狀態

範例

範例 1:取得恢復點中的可復原專案

PS C:\> $PGroup = Get-DPMProtectionGroup -DPMServerName "DPMServer02"
PS C:\> $PObjects = Get-DPMDatasource -ProtectionGroup $PGroup
PS C:\> $RPoint = Get-DPMRecoveryPoint -Datasource $PObjects
PS C:\> Get-DPMRecoverableItem -RecoverableItem $RPoint -BrowseType Child

第一個命令會取得 DPM 伺服器上名為 DPMServer02 的保護群組,然後將群組儲存在$PGroup變數中。

第二個命令會取得$PGroup保護群組中受保護和未受保護的數據清單。 命令會將結果儲存在 $PObjects 變數中。

第三個命令會取得 $PObjects 變數中保護群組的恢復點,然後將恢復點儲存在 $RPoint 變數中。

最後一個命令會取得$RPoint中恢復點父節點和子節點中的可復原專案。

參數

-Async

表示命令會以異步方式執行。 當您以異步方式執行命令時,即使作業需要較長的時間才能完成,命令提示字元仍會立即傳回。

類型:SwitchParameter
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-BrowseType

指定是否只瀏覽恢復點中的父節點,或瀏覽父節點和子節點。

此參數可接受的值為:

  • 父母
  • 孩子
類型:BrowseType
接受的值:Child, Parent
Position:2
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-Datasource

指定此 Cmdlet 取得可復原項目的數據源物件。 數據源可以是 Windows 操作系統的文件系統共用或磁碟區、Microsoft SQL Server 資料庫、Microsoft Exchange Server 記憶體群組、Microsoft SharePoint 伺服器數位、Microsoft虛擬機、DPM 資料庫或屬於保護群組成員的系統狀態。

類型:Datasource
Position:1
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-RecoverableItem

指定可復原的項目物件。 這是恢復點中可復原的子專案。 範例包括:文件系統共用或磁碟區、Microsoft SQL Server 資料庫、Microsoft Exchange Server 記憶體群組、Microsoft SharePoint 網站、Microsoft虛擬機、Microsoft DPM 資料庫、系統狀態或恢復點。

類型:RecoverableObject
Position:1
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-RecoveryPointForShares

指定恢復點物件。 若要取得恢復點物件,請使用 get-DPMRecoveryPoint Cmdlet

類型:RecoverySource
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-SearchOption

指定搜尋選項。 您可以使用 New-DPMSearchOption Cmdlet 來建立物件,指定可復原物件的搜尋選項。

類型:SearchSpecifications
Position:2
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-Tag

指定自定義屬性,以區分每個異步呼叫的回復。 如果您使用 Cmdlet 來建置圖形用戶介面,則可以使用 參數。 如果您使用 DPM 管理命令介面,請勿使用此參數。

類型:Object
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

輸出

RecoverableItem