Cmdleten Disable-AzRecoveryServicesBackupRPMountScript demonterar filerna för återställningspunkten som monterades tidigare med hjälp av cmdleten Get-AzRecoveryServicesBackupRPMountScript.
Exempel
Exempel 1: Demontera en återställningspunkt
$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]
Exempel 2
Demonterar alla filer i återställningspunkten. (autogenerated)
Den här cmdleten stöder vanliga parametrar: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction och -WarningVariable. Mer information finns i about_CommonParameters.
Källan för det här innehållet finns på GitHub, där du även kan skapa och granska ärenden och pull-begäranden. Se vår deltagarguide för mer information.