Start-OBRegistration
Registra el equipo actual en Microsoft Azure Backup.
Sintaxis
Start-OBRegistration
[-RecoveryService] <CBServiceResource>
[-Confirm]
[-WhatIf]
Description
El cmdlet Start-OBRegistration registra el servidor en Microsoft Azure Backup. El cmdlet registra el servidor cargando un certificado de copia de seguridad en el almacén. Puede usar el cmdlet Get-OBCertificateListFromLocalStore para obtener la lista de certificados del almacén de certificados del equipo local.
Este cmdlet admite el Confirm:$FALSE
para invalidar el símbolo del sistema.
Para usar cmdlets de Microsoft Azure Backup, el usuario debe ser administrador en la máquina protegida.
Ejemplos
Ejemplo 1: Registra un servidor
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]
En este ejemplo se inicia un registro de equipo.
Parámetros
-Confirm
Le pide confirmación antes de ejecutar el cmdlet.
Tipo: | SwitchParameter |
Posición: | Named |
Valor predeterminado: | False |
Requerido: | False |
Aceptar entrada de canalización: | False |
Aceptar caracteres comodín: | False |
-RecoveryService
Especifica un agente de recuperación de Microsoft Azure Backup.
Tipo: | CBServiceResource |
Posición: | 2 |
Valor predeterminado: | None |
Requerido: | True |
Aceptar entrada de canalización: | True |
Aceptar caracteres comodín: | False |
-WhatIf
Muestra lo que sucedería si el cmdlet se ejecuta. El cmdlet no se ejecuta.
Tipo: | SwitchParameter |
Posición: | Named |
Valor predeterminado: | False |
Requerido: | False |
Aceptar entrada de canalización: | False |
Aceptar caracteres comodín: | False |
Entradas
None
Salidas
None