共用方式為


Set-AzureSiteRecoveryVM

設定 Site Recovery 保護實體的復原端選項。

注意

本文件中參考的 Cmdlet 用於管理使用 Azure Service Manager(ASM) API 的舊版 Azure 資源。 建立新的資源時,不建議使用此舊版 PowerShell 模組,因為 ASM 已排定淘汰。 如需詳細資訊,請參閱 Azure Service Manager 淘汰

Az PowerShell 模組是使用 PowerShell 管理 Azure Resource Manager (ARM) 資源的建議 PowerShell 模組。

語法

Set-AzureSiteRecoveryVM
   -VirtualMachine <ASRVirtualMachine>
   [-Name <String>]
   [-Size <String>]
   [-PrimaryNic <String>]
   [-RecoveryNetworkId <String>]
   [-Profile <AzureSMProfile>]
   [<CommonParameters>]

Description

Set-AzureSiteRecoveryVM Cmdlet 會為 Azure Site Recovery 保護實體設定復原端保護選項,例如復原虛擬機大小和復原虛擬機網路。

範例

範例 1:允許受保護虛擬機上的更新

PS C:\> $ProtectionContainer = Get-AzureSiteRecoveryProtectionContainer
PS C:\> $VirtualMachines = Get-AzureSiteRecoveryVM -ProtectionContainer $ProtectionContainer 
PS C:\> Set-AzureSiteRecoveryVM -VirtualMachine $VirtualMachines[0] -Name "NewVirtualMachine05"
Name             : 
ID               : 8170d274-1e48-404a-b080-172ada140bc3
ClientRequestId  : 09354052-8430-4fa8-9a35-63196dd4b2b4-2015-02-03 04:19:06Z-P
State            : NotStarted
StateDescription : NotStarted
StartTime        : 
EndTime          : 
AllowedActions   : 
Tasks            : {}
Errors           : {}

第一個命令會使用 Get-AzureSiteRecoveryProtectionContainer Cmdlet 來取得受保護的容器,然後將它儲存在$ProtectionContainer變數中。

第二個命令會使用 Get-AzureSiteRecoveryVM Cmdlet 取得$ProtectionContainer中的虛擬機,然後將虛擬機儲存在$VitrualMachines變數中。

最後一個命令允許$VitrualMachines陣列中第一部虛擬機的更新,名為NewVirtualMachine05。

參數

-Name

指定目標虛擬機的名稱。

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

-PrimaryNic

指定主要網路配接器。

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

-Profile

指定此 Cmdlet 從中讀取的 Azure 設定檔。 如果您未指定設定檔,此 Cmdlet 會從本機預設配置檔讀取。

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

-RecoveryNetworkId

指定復原網路識別碼。

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

-Size

指定目標虛擬機大小。

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

-VirtualMachine

指定 Site Recovery 虛擬機物件。

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