Set-PolicySchedule

Applies To: System Center Data Protection Manager 2007

Date Topic Section

May 2008

Cmdlet support for integrity check

New Information

May 2008

Example – Scheduling an Integrity Check

New Information

New Information

Cmdlet support for integrity check

DPM 2007 now allows you to schedule an integrity check on a recovery point using cmdlets through a new parameter CheckDataIntegrity.

Syntax

Set-PolicySchedule protection group CheckDataIntegrity – DaysOfWeek day of week –TimesOfDay time

Example – Scheduling an Integrity Check

The following sequence of commands allows you to schedule an integrity check on the Contoso DPM server to run every Monday at 6 P.M.

$pg = Get-ProtectionGroup Contoso

$mpg = Get-ModifiableProtectionGroup -ProtectionGroup $pg

Set-PolicySchedule $mpg -JobType CheckDataIntegrity -DaysOfWeek mo -TimesOfDay 18:00

Set-ProtectionGroup $mpg