Start-OBRegistration
현재 컴퓨터를 Microsoft Azure Backup에 등록합니다.
구문
Start-OBRegistration
[-RecoveryService] <CBServiceResource>
[-Confirm]
[-WhatIf]
Description
Start-OBRegistration cmdlet은 서버를 Microsoft Azure Backup에 등록합니다. cmdlet은 자격 증명 모음에 백업 인증서를 업로드하여 서버를 등록합니다. Get-OBCertificateListFromLocalStore cmdlet을 사용하여 로컬 컴퓨터 인증서 저장소에서 인증서 목록을 가져올 수 있습니다.
이 cmdlet은 whatIf Confirm:$FALSE
.
Microsoft Azure Backup 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 |
Default value: | False |
필수: | False |
파이프라인 입력 허용: | False |
와일드카드 문자 허용: | False |
-RecoveryService
Microsoft Azure Backup 복구 에이전트를 지정합니다.
형식: | CBServiceResource |
Position: | 2 |
Default value: | None |
필수: | True |
파이프라인 입력 허용: | True |
와일드카드 문자 허용: | False |
-WhatIf
cmdlet이 실행되면 어떻게 되는지 보여 주세요. cmdlet이 실행되지 않습니다.
형식: | SwitchParameter |
Position: | Named |
Default value: | False |
필수: | False |
파이프라인 입력 허용: | False |
와일드카드 문자 허용: | False |
입력
None
출력
None