Get-AzureSiteRecoveryRecoveryPlanFile
以 XML 格式下載 Azure Site Recovery 方案。
注意
本文件中參考的 Cmdlet 用於管理使用 Azure Service Manager(ASM) API 的舊版 Azure 資源。 建立新的資源時,不建議使用此舊版 PowerShell 模組,因為 ASM 已排定淘汰。 如需詳細資訊,請參閱 Azure Service Manager 淘汰。
Az PowerShell 模組是使用 PowerShell 管理 Azure Resource Manager (ARM) 資源的建議 PowerShell 模組。
語法
Get-AzureSiteRecoveryRecoveryPlanFile
-Path <String>
-RecoveryPlan <ASRRecoveryPlan>
[-Profile <AzureSMProfile>]
[<CommonParameters>]
Get-AzureSiteRecoveryRecoveryPlanFile
-Path <String>
-Id <String>
[-Profile <AzureSMProfile>]
[<CommonParameters>]
Description
Get-AzureSiteRecoveryRecoveryPlanFile Cmdlet 會以 XML 格式下載 Azure Site Recovery 方案。 您可以使用此檔案來更新復原方案,然後將它上傳至 Site Recovery 伺服器。
復原方案會收集群組中的虛擬機,以便進行故障轉移和復原。
範例
範例 1:取得復原方案檔案
PS C:\> $RecoveryPlan = Get-AzureSiteRecoveryRecoveryPlan
PS C:\> Get-AzureSiteRecoveryRecoveryPlanFile -RecoveryPlan $RecoveryPlan -Path "C:\Users\Contoso\Desktop\RecoveryPlan.xml"
此命令會使用 Get-AzureSiteRecoveryRecoveryPlan Cmdlet 來取得復原方案,然後將它儲存在 $RecoveryPlan 變數中。
第二個命令會使用 GetAzureSiteRecoveryRecoveryPlanFile Cmdlet,在 $RecoveryPlan 中取得 site recovery plan XML 檔案。 命令會將 XML 檔案儲存在指定的路徑。
參數
-Id
指定要取得之復原計劃的識別碼。
類型: | String |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
-Path
指定儲存復原計劃 XML 檔案的完整路徑。
類型: | String |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
-Profile
指定此 Cmdlet 從中讀取的 Azure 設定檔。 如果您未指定設定檔,此 Cmdlet 會從本機預設配置檔讀取。
類型: | AzureSMProfile |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-RecoveryPlan
指定要 從中取得復原計劃的 ASRRecoveryPlan 物件。 若要取得 ASRRecoveryPlan 物件,請使用 Get-AzureSiteRecoveryRecoveryPlan Cmdlet。
類型: | ASRRecoveryPlan |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |