Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Applies To: System Center Data Protection Manager 2007
Date | Topic | Section |
---|---|---|
May 2008 |
Cmdlet support for integrity check |
New Information |
May 2008 |
Example – Integrity Check |
New Information |
DPM 2007 now allows you to trigger an integrity check on a new recovery point through cmdlets through a new parameter WithDataIntegrityCheck. This parameter does not take a value, but if used at the time of creating a new recovery point by using Expressfull backup, it triggers an integrity check on the recovery point.
Syntax
New-RecoveryPoint –Datasource name of data source -Disk -BackupType expressfull –WithDataIntegrityCheck
The following sequence of commands allows you to create a new recovery point and perform an integrity check on it before storing it to the variable recoverypt.
$dpmname = “Contoso”
$pg = Get-ProtectionGroup -DPMServerName $dpmname
$ds = Get-Datasource -ProtectionGroup $pg[0]
$recoverypt = New-RecoveryPoint -Datasource $ds[0] -Disk -BackupType expressfull –WithDataIntegrityCheck