共用方式為


Start-OBRegistration

註冊目前計算機以Microsoft Azure 備份。

語法

Start-OBRegistration
     [-RecoveryService] <CBServiceResource>
     [-Confirm]
     [-WhatIf]

Description

Start-OBRegistration Cmdlet 會將伺服器註冊到 Microsoft Azure 備份。 Cmdlet 會將備份憑證上傳至保存庫,以註冊伺服器。 您可以使用 Get-OBCertificateListFromLocalStore Cmdlet 從本機電腦證書存儲取得憑證清單。

此 Cmdlet 支援 WhatIfConfirm 參數。 Cmdlet 預設會提示用戶確認。 WhatIf 參數提供 Cmdlet 執行任何作業的詳細資訊描述。 Confirm 參數會指定 Cmdlet 是否應該提示使用者。 指定 -Confirm:$FALSE 覆寫提示。

若要使用Microsoft Azure 備份 Cmdlet,用戶必須是受保護計算機上的系統管理員。

範例

範例 1:註冊伺服器

The first command gets the list of certificates from the local computer certificate store, and stores the result in the **$Cert** variable.
$Cert = Get-OBCertificateListFromLocalStore

The second command gets the list of backup vaults that can you use to register the current computer for the fifth certificate stored in **$Cert**. The command stores the result in the **$Item** variable.
$Item = Get-OBRecoveryService -Certificate $Cert[4]


The third command registers the current computer by using the first certificate stored in **$Item**.
Start-OBRegistration -RecoveryService $Item[0]

此範例會啟動電腦註冊。

參數

-Confirm

在執行 Cmdlet 之前,提示您進行確認。

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

-RecoveryService

指定 azure 備份復原代理程式Microsoft。

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

-WhatIf

顯示 Cmdlet 執行時會發生什麼事。 Cmdlet 未執行。

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

輸入

None

輸出

None