Archive for the ‘Data Protection Manager’ Category

Backing up System State of Windows 7 with DPM

Yes the title of this post is misleading. That was intentional. I have seen many fellow IT Pros in the community asking if backing up system state of Windows clients is possible with DPM 2010. Well it is not and it will not be possible with DPM 2012 either. DPM was designed to protect client data but not the machine entirely. DPM does a great job of protecting client data but there is a real need in some environments to protect client PC’s as a whole.

There is not an officially supported solution for this but there is a work around to protect the entire client.

For XP clients you could backup system state of your XP machines to a network share or folder and then have DPM pick it up from there.

Windows Vista/7 does not have a system state backup option. That was replaced with “Complete PC Back up”. Complete PC Back up in Windows Vista/7 is an image of the computer so it achieves a similar goal to system state. You can schedule to run the Complete PC Back up out to a folder or network share and then let DPM pick it up from there.

Again this is not ideal but it is a good alternative when you need complete protection of your client.

Here is the process to set this up on Windows 7.

  • Go to Start>>>Control Panel>>>Backup and Restore

Note that Windows backup has not been setup yet.

  • Click on Set up backup.

clip_image001

The Windows Backup wizard will start. This can take a while to open so be patient here.

clip_image002

Read the rest of this entry »

DPM 2012 Book Feedback

Hello DPM Community,

This is Steve here. I recently published a book on DPM 2010. I have been fortunate to team up with Microsoft DPM MVP’s Robert Hedblom and Islam Gomaa to write a DPM 2012 book. We are in the planning stages for this book. We would like to know from the community what specific topics would you like to see covered in this book? Post your responses here in the comments.

Thank You for your feedback.

Better Reporting in DPM through Prism

Reporting for DPM has been a problem for many DPM administrators. You need better reporting on scheduled backup jobs, success/failures of backup jobs, details on tape jobs, SLA reports, and more. Your only other option was to create custom reports in DPM using the SQL views that come with DPM. I posted on how to do this a while back here:
http://www.buchatech.com/2011/01/building-custom-reports-in-dpm/.

Working with SQL views is not the easiest way to get custom reports if you are new to or not savvy with SQL Reporting services. Well the alternative to this is Prism.

A company named Bocada has developed a product called Prism that helps you get better reporting out of your backup solutions. They have a flavor for DPM. The nice folks at Bocada gave me a demo of this product live in action. Thanks Ralph!

I am going to give you some more details about Prism for DPM in this post.

There are many pros to Prism and only a couple of cons. One of the cons is that you still cannot bring the custom reports into the DPM console. They are however web based and easy enough to access. 
There still is a slight learning curve to learn how to customize reports.

Prism is a stand alone product that is deployed on a server and accessed via a web browser. It runs on top of IIS and accesses the DPM data directly through the DPM SQL database. Once Prism has collected information about DPM it is able to present the information as reports.

Prism can be setup to gather information from multiple DPM servers for reporting therefore it can be used in enterprises with many DPM servers.

Brocada  teamed up with Microsoft to create two default DPM specific reports in conjunction with reporting DPM related data in Prism. These reports are:

  • Recovery Point Summary
    Recovery Point Summary provides a summary of the number of Non-expired recovery points, Date of the last non-expired recovery point and the average recovery point in Range for all the clients being protected. 

image

  • Recovery Point Status
    Recovery Point Status lets you see the various success or failures of your daily recovery points. 

image

Read the rest of this entry »

Export DPM Settings to .xml file

Ruud Baars (Rest In Peace) of Microsoft hosted a DPM setting export/import tool on his skydrive called DPM-save-create-Config.

This tool contains 2 PowerShell scripts called DPMsaveConfig and DPMcreateConfig that could be used to save your DPM settings to an .xml file and then import the settings in from that .xml file. The link is here:

https://skydrive.live.com/?cid=b03306b628ab886f&sc=documents&id=B03306B628AB886F%21859

When you run DPMsaveConfig it creates a DPMsaveConfig.XML in %systemdrive%\Program Files\Microsoft DPM\DPM\bin.

Then when you run DPMcreateConfig it will automatically search for the DPMsaveConfig.XML and import the DPM settings from here.

The beauty of this tool is that it was created in PowerShell so you can go in and modify the scripts if you need to.

You can also download a copy of this tool directly from my blog here: DPM-save-create-Config

How to exclude data from DPM protection

THE NEED:

In DPM you may run into scenarios where you are backing up a folder or a volume and there are folders or sub-folders that you actually don’t need  or want to protect. There is a way to “exclude” these from the backup. Before we talk about how to do this lets look at an example of why you would want to do this.

THE EXAMPLE:

Lets say you have a Windows cluster and you are backing up the c volume on one of your nodes in the cluster. This cluster is a Hyper-V cluster and you are protecting the virtual machines in your cluster directly. The C:\ClusterStorage folder on the c volume is where your .VHD’s and other virtual machine data is stored. You do not want to backup this folder because the virtual machines are being protected directly by DPM but you want to continue protecting everything else on the c volume. This is where  being able to exclude the C:\ClusterStorage folder comes into play.

THE SOLUTION:

Here is how you can exclude something from being backed up by DPM. There is a registry key on Windows servers called “FilesNotToBackup”. This key needs to be modified on the protected server with the data you want to exclude from the backup. It is that simple. Now here is how you do this.

Make a registry entry to the FilesNotToBackup list in the registry on the protected server you want to exclude data on.                         DPM/VSS will honor the FileNotToBackup list.

The path is: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\BackupRestore\FilesNotToBackup add a Multi-String (REG_MULTI_SZ) value and place something like: C:\ClusterStorage (or any data you want to exclude from backup) in the Value Data field.

The next time the data is protected it should skip the C:\ClusterStorage (or any data you have selected to exclude from backup).

DPM & VSS

DPM’s data protection is facilitated by the Volume Shadow Copy Service (VSS). Therefore VSS is the secret sauce. VSS is in OS’s and Microsoft applications such as Exchange, SharePoint, and Hyper-V have their own VSS writers. Yes this may be old news as the VSS technology  has been around for some time but many IT Professionals still do not have a good understanding of VSS itself.

It is important for anyone working with DPM and even many other backup products out there to get a good understanding of VSS to know how the data protection is working underneath the hood. Microsoft has some  really good sites that explain VSS well. As a data protection protection pro it is important to go through these and become familiar with how VSS works:

  • Basic VSS Concepts

http://msdn.microsoft.com/en-us/library/windows/desktop/aa381504%28v=vs.85%29.aspx

  • Common Volume Backup Issues

http://msdn.microsoft.com/en-us/library/windows/desktop/aa381508%28v=vs.85%29.aspx

  • Troubleshooting VSS Applications

http://msdn.microsoft.com/en-us/library/windows/desktop/aa384626%28v=vs.85%29.aspx

  • Volume Shadow Copy Glossary

http://msdn.microsoft.com/en-us/library/windows/desktop/aa384647%28v=vs.85%29.aspx

  • Volume Shadow Copy Service Overview

http://technet.microsoft.com/en-us/library/ee923636%28WS.10%29.aspx

Free Webcast: Whats New in DPM 2012

Microsoft DPM MVP Robert Hedblom will be hosting a free webcast covering what the new features are in DPM 2012.

Here is the information from his blog:

Interested in DPM? Want to know the new features in DPM2012?

At the 13/10 1PM GMT+1 I will host a webcast (Live meeting) that addresses the new features and will also show the new GUI.

Please email me @ robert.hedblom[at]gmail.com and I will provide you the link and information you need.

This is free , you don’t have to pay to attend

Date:13/10 2011
Time:1 PM GMT +1

DPM Admin Console on Client Computers

DPM 2012 Beta is out. One of the new features of DPM 2012 is that you can install the DPM Administrator Console on other servers or workstations and manage your DPM 2012 and even DPM 2010 servers remotely without having to logon to the DPM server. The cool part is that you can manage existing DPM 2010 servers. This is done through applying a hotfix to your DPM 2010 server and installing the console on your workstation or server from the DPM 2012 beta software.

In this blog post we are going to walk through setting this up. It is a simple two step install installing the hotfix on the DPM 2010 server first and then the console on the workstation. Here is the process:

First download the DPM 2010 Interoperability patch for DPM 2012 Beta hotfix (DataProtectionManager2010-KB2581742) and DPM 2012 Beta.

Copy the DPM 2010 Interoperability patch hotfix for DPM 2012 Beta  to your DPM 2010 server.

Make sure your DPM 2010 is all up to date. Once DPM 2010 is up to date install the beta hotfix.

image

Open up DPM 2010 after the hotfix and verify it is still working.

Now the DPM 2010 server is ready lets install the console on the client machine.

Here are the steps:

Navigate to the DPM 2012 Beta install and chose 32 or 64Bit depending on what your workstation is.

image

Launch the DPM 2012 Beta install on your local workstation.

Select “DPM Central Console” to begin.

image

Read the rest of this entry »

Free TechNet Subscription and DPM 2010 Book

I will be attending the September 2011 MN System Center User Group. They will be giving away 2 free copies of a TechNet subscription and a copy of my Microsoft Data Protection Manager 2010 book.

Paul Thomsen, Solution Engineer for 1E will be speaking and they will also have free food.

Visit the user groups website for more info: http://mnscug.org/meetings/173-september-2011-meeting.html

Publish DPM Alerts to Windows Event Viewer

I recently ran across a thread on DPM TechNet forums with a topic on how to access DPM alerts.   They wanted to monitor DPM errors and events. You can use a third party tool to do this or you can use System Center Operations Manager/Essentials .

If you have the option to use System Center to monitor your DPM I recommend this as it does work pretty well. In my environment I  use System Center Essentials 2010 to monitor DPM alerts. The first step to monitoring your DPM server is to make sure you publish the DPM alerts to the Windows Event Viewer. To do this follow these steps:

  1. Go to the DPM Administrator console
  2. Click on “Action” on the top bar in DPM
  3. Select “Options
  4. Click the “Alert Publishing” tab
  5. Click the “Publish Active Alerts” button
  6. Click ok

image

This will send your DPM alerts to the Windows Event viewer on your server and either SCOM/SCE can access them from there or a third party systems monitoring tool. You will find the alerts in Windows Event viewer under “Applications and Service Logs”. You will see “DPM Alerts” and “DPM backup Events” (Note: if you want backup alerts you need to publish them as well) listed here.

image

Here are links to error codes and the DPM  troubleshooting guides:

Here is a link to a good article by David Allen (System Center MVP) on

“Monitoring DPM using SCOM”  http://www.scdpmonline.org/monitoring-dpm-using-opsmgr-cookdown-powershell.aspx

Buchatech.com RSS Feed
Favorite Forums
  • myITforums
  • SCDPM Online
  • Tech Exams
  • TechNet DPM Forums