Disable-AzRecoveryServicesBackupRPMountScript cmdlet은 Get-AzRecoveryServicesBackupRPMountScript cmdlet을 사용하여 이전에 탑재된 복구 지점의 파일을 분리합니다.
예제
예제 1: 복구 지점 분리
$namedContainer = Get-AzRecoveryServicesBackupContainer -ContainerType "AzureVM" -Status "Registered" -FriendlyName "V2VM"
$backupitem = Get-AzRecoveryServicesBackupItem -Container $namedContainer -WorkloadType "AzureVM"
$startDate = (Get-Date).AddDays(-7)
$endDate = Get-Date
$rp = Get-AzRecoveryServicesBackupRecoveryPoint -Item $backupitem -StartDate $startdate.ToUniversalTime() -EndDate $enddate.ToUniversalTime()
<# To mount files of the latest recovery point, obtain the script by #>
Get-AzRecoveryServicesBackupRPMountScript -RecoveryPoint $rp[0]
OsType Password Filename
------ -------- --------
Windows e3632984e51f496 V2VM_wus2_8287309959960546283_451516692429_cbd6061f7fc543c489f1974d33659fed07a6e0c2e08740.exe
<# When the script is run, it will mount the files of the recovery point $rp[0]
After the relevant files are copied, then you remove the files of the recovery point by running the disable cmdlet #>
Disable-AzRecoveryServicesBackupRPMountScript -RecoveryPoint $rp[0]
이 cmdlet은 일반적인 매개 변수인 -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction 및 -WarningVariable 매개 변수를 지원합니다. 자세한 내용은 about_CommonParameters를 참조하세요.