Start-OBRegistration

将当前计算机注册到 Microsoft Azure 备份。

语法

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

说明

Start-OBRegistration cmdlet 将服务器注册到 azure 备份Microsoft。 该 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

指定Microsoft Azure 备份恢复代理。

类型:CBServiceResource
Position:2
默认值:None
必需:True
接受管道输入:True
接受通配符:False

-WhatIf

显示 cmdlet 运行时会发生什么情况。 cmdlet 未运行。

类型:SwitchParameter
Position:Named
默认值:False
必需:False
接受管道输入:False
接受通配符:False

输入

None

输出

None