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 repositório de certificados do computador local.
Esse cmdlet dá suporte aos parâmetros WhatIf e Confirm.
O cmdlet solicita ao usuário a confirmação 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 Confirme especifica se o cmdlet deve solicitar ao usuário.
Especificar -Confirm:$FALSE
substituir o prompt.
Para usar os cmdlets do Backup do Microsoft Azure, o usuário precisa ser um administrador no computador protegido.
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 a confirmação antes de executar o cmdlet.
Tipo: | SwitchParameter |
Cargo: | Named |
Valor padrão: | False |
Obrigatório: | False |
Aceitar a entrada de pipeline: | False |
Aceitar caracteres curinga: | False |
-RecoveryService
Especifica um agente de recuperação do Backup do Microsoft Azure.
Tipo: | CBServiceResource |
Cargo: | 2 |
Valor padrão: | None |
Obrigatório: | True |
Aceitar a entrada de pipeline: | True |
Aceitar caracteres curinga: | False |
-WhatIf
Mostra o que aconteceria se o cmdlet fosse executado. O cmdlet não é executado.
Tipo: | SwitchParameter |
Cargo: | Named |
Valor padrão: | False |
Obrigatório: | False |
Aceitar a entrada de pipeline: | False |
Aceitar caracteres curinga: | False |
Entradas
None
Saídas
None