Start-OBRegistration
Registra o computador atual no Backup do Microsoft Azure.
Sintaxe
Start-OBRegistration
[-RecoveryService] <CBServiceResource>
[-Confirm]
[-WhatIf]
Description
O cmdlet Start-OBRegistration registra o servidor no Backup do Microsoft Azure. O cmdlet registra o servidor carregando um certificado de backup no cofre. Você pode usar o cmdlet Get-OBCertificateListFromLocalStore para obter a lista de certificados do armazenamento de certificados do computador local.
Este cmdlet suporta os parâmetros WhatIf e Confirm.
O cmdlet solicita a confirmação do usuário por padrão.
O parâmetro WhatIf fornece uma descrição detalhada do que o cmdlet faz sem executar nenhuma operação.
O parâmetro Confirm especifica se o cmdlet deve avisar o usuário.
Especificar -Confirm:$FALSE
substituir o prompt.
Para usar cmdlets do Backup do Microsoft Azure, o usuário precisa ser um administrador na máquina protegida.
Exemplos
Exemplo 1: Registra um 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]
Este exemplo inicia um registro de computador.
Parâmetros
-Confirm
Solicita confirmação antes de executar o cmdlet.
Tipo: | SwitchParameter |
Position: | Named |
Default value: | False |
Necessário: | False |
Aceitar entrada de pipeline: | False |
Aceitar carateres universais: | False |
-RecoveryService
Especifica um agente de recuperação do Backup do Microsoft Azure.
Tipo: | CBServiceResource |
Position: | 2 |
Default value: | None |
Necessário: | True |
Aceitar entrada de pipeline: | True |
Aceitar carateres universais: | False |
-WhatIf
Mostra o que aconteceria se o cmdlet fosse executado. O cmdlet não é executado.
Tipo: | SwitchParameter |
Position: | Named |
Default value: | False |
Necessário: | False |
Aceitar entrada de pipeline: | False |
Aceitar carateres universais: | False |
Entradas
None
Saídas
None