When Backup Sharepoint 2007, with DPM 2010, it catalougues MOSS items every 24 hours , if you need to force this operation to be able to restore item you can use powershell command. http://technet.microsoft.com/en-us/library/ff634233.aspx. Note this operation happens out of band from the normal backup, sometimes it will fail even though the backup is successful. I then found that a separate process performs the catalog of the items each day. Without this the list of items doesn't get updated, so even though they have been backed up they don't appear for item level restore. ---------------------------------------------------------------- Now run: $pg1 This will show a list of the protection groups, counting from 0 from the top down, make a note of the number of the line coresponding to the protection group you are interested in. $ds1 = Get-Datasource –ProtectionGroup $pg1[x] Now run: $ds1 Or, you may also run this command: Get-ProtectionGroup yourdpmservername | get-datasource | where-object {$_.type -like "*sharepoint*"} | start-createcatalog This will automatically run the createcatalog for any datasource matching "sharepoint", this command will show the catalog is running, but then a few errors, the errors are it trying to process a catalog update on something that is not a catalog, and can be ignored safely. |
Microsoft DPM >