<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://owsug.ca/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><title type="html">Islam Gomaa</title><subtitle type="html" /><id>http://owsug.ca/blogs/islamgomaa/atom.aspx</id><link rel="alternate" type="text/html" href="http://owsug.ca/blogs/islamgomaa/default.aspx" /><link rel="self" type="application/atom+xml" href="http://owsug.ca/blogs/islamgomaa/atom.aspx" /><generator uri="http://communityserver.org" version="2.1.60809.935">Community Server</generator><updated>2011-02-20T23:45:10Z</updated><entry><title>How to Enable Throttling on Multiple Agents in DPM</title><link rel="alternate" type="text/html" href="http://owsug.ca/blogs/islamgomaa/archive/2012/08/07/How-to-Enable-Throttling-on-Multiple-Agents-in-DPM.aspx" /><id>http://owsug.ca/blogs/islamgomaa/archive/2012/08/07/How-to-Enable-Throttling-on-Multiple-Agents-in-DPM.aspx</id><published>2012-08-08T03:34:37Z</published><updated>2012-08-08T03:34:37Z</updated><content type="html">&lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Turn on throttling across hundreds and hundreds of DPM agents. It is not feasible to turn this on via the DPM admin console agent by agent as this would require a lot of time to do. I am going to detail a way to throttle multiple DPM agents at the same time cutting the time down to a few minutes. &lt;/p&gt;  &lt;p&gt;Throttling is used to ensure bandwidth used by DPM agents does not clog the network so that the bandwidth is available to applications on the network. &lt;/p&gt;  &lt;h2&gt;Here is the standard process for turning on throttling in DPM:&lt;/h2&gt;  &lt;p&gt;&lt;a href="http://technet.microsoft.com/en-us/library/ff399035.aspx"&gt;http://technet.microsoft.com/en-us/library/ff399035.aspx&lt;/a&gt;&lt;/p&gt;  &lt;li&gt;   &lt;p&gt;In DPM Administrator Console, click &lt;strong&gt;Management&lt;/strong&gt; on the navigation bar.&lt;/p&gt; &lt;/li&gt;  &lt;li&gt;   &lt;p&gt;Click the &lt;strong&gt;Agent&lt;/strong&gt; tab, and then select the computer for which you want to configure network bandwidth usage throttling.&lt;/p&gt; &lt;/li&gt;  &lt;li&gt;   &lt;p&gt;In the &lt;strong&gt;Actions&lt;/strong&gt; pane, click &lt;strong&gt;Throttle computer&lt;/strong&gt;.&lt;/p&gt; &lt;/li&gt;  &lt;li&gt;   &lt;p&gt;In the &lt;strong&gt;Throttle&lt;/strong&gt; dialog box, select &lt;strong&gt;Enable network bandwidth usage throttling&lt;/strong&gt;.&lt;/p&gt; &lt;/li&gt;  &lt;li&gt;   &lt;p&gt;Select &lt;strong&gt;Throttle Settings&lt;/strong&gt; and &lt;strong&gt;Work Schedule&lt;/strong&gt; for the computer.&lt;/p&gt;    &lt;h2&gt;Here is the process to throttle multiple DPM agents at once:&lt;/h2&gt; &lt;/li&gt;  &lt;li&gt;Go to your DPM Admin console and enable throttling on an agent. &lt;/li&gt;  &lt;li&gt;Now on the DPM server or remote SQL instance server open up SQL Management studio. &lt;/li&gt;  &lt;li&gt;In SQL Management Studio run the following query on the &lt;strong&gt;tbl_AM_InstalledAgent&lt;/strong&gt; table to find out the settings and ID GUID of the agent you just enabled throttling on.&lt;/li&gt;  &lt;div class="csharpcode"&gt;   &lt;pre class="alt"&gt;SELECT [InstallID] &lt;/pre&gt;

  &lt;pre&gt;      ,[ServerId] &lt;/pre&gt;

  &lt;pre class="alt"&gt;      ,[AgentID] &lt;/pre&gt;

  &lt;pre&gt;      ,[OSType] &lt;/pre&gt;

  &lt;pre class="alt"&gt;      ,[RebootRequired] &lt;/pre&gt;

  &lt;pre&gt;      ,[Deleted] &lt;/pre&gt;

  &lt;pre class="alt"&gt;      ,[DeletedDateTime] &lt;/pre&gt;

  &lt;pre&gt;      ,[ClusterID] &lt;/pre&gt;

  &lt;pre class="alt"&gt;      ,[Enabled] &lt;/pre&gt;

  &lt;pre&gt;      ,[PatchID] &lt;/pre&gt;

  &lt;pre class="alt"&gt;      ,[IsThrottled] &lt;/pre&gt;

  &lt;pre&gt;      ,[WorkHoursTransmissionRate] &lt;/pre&gt;

  &lt;pre class="alt"&gt;      ,[NonWorkHoursTransmissionRate] &lt;/pre&gt;

  &lt;pre&gt;      ,[ThrottlingSettings] &lt;/pre&gt;

  &lt;pre class="alt"&gt;      ,[OSVersion] &lt;/pre&gt;

  &lt;pre&gt;      ,[ServerAttributes] &lt;/pre&gt;

  &lt;pre class="alt"&gt;      ,[IsServerOS] &lt;/pre&gt;

  &lt;pre&gt;      ,[ApprovedPatchByAdmin] &lt;/pre&gt;

  &lt;pre class="alt"&gt;  FROM [DPMDB].[dbo].[tbl_AM_InstalledAgent] &lt;/pre&gt;

  &lt;pre&gt;GO&lt;/pre&gt;
&lt;/div&gt;

.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }

&lt;ul&gt;
  &lt;li&gt;
    &lt;h2&gt;The results should look similar to this: &lt;/h2&gt;
  &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="http://owsug.ca/blogs/islamgomaa/image_3DFAEA75.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://owsug.ca/blogs/islamgomaa/image_thumb_09B69B62.png" width="244" height="136" /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;Scroll to the right until you see the &lt;strong&gt;IsThrottled &lt;/strong&gt;column, Notice the row that has a 1 in it. Copy the &lt;strong&gt;InstallID.&lt;/strong&gt;. &lt;/h2&gt;

&lt;p&gt;&lt;a href="http://owsug.ca/blogs/islamgomaa/image1_1CF75201.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="image1" border="0" alt="image1" src="http://owsug.ca/blogs/islamgomaa/image1_thumb_461EEA3F.png" width="244" height="40" /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;li&gt;
  &lt;h2&gt;Copy the &lt;strong&gt;InstallID&lt;/strong&gt; into the following Query and run this against the &lt;strong&gt;tbl_AM_InstalledAgent&lt;/strong&gt; table.&lt;/h2&gt;

  &lt;blockquote&gt;
    &lt;p&gt;DECLARE @w int 
      &lt;br /&gt;SET @w = (SELECT [WorkHoursTransmissionRate] from tbl_AM_InstalledAgent WHERE InstallID = ‘&lt;strong&gt;2083CDAA-2872-4D2D-BAEA-ADF033021EB9′&lt;/strong&gt;) 

      &lt;br /&gt;DECLARE @n int 

      &lt;br /&gt;SET @n = (SELECT [NonWorkHoursTransmissionRate] from tbl_AM_InstalledAgent WHERE InstallID = ‘&lt;strong&gt;2083CDAA-2872-4D2D-BAEA-ADF033021EB9′&lt;/strong&gt;) 

      &lt;br /&gt;DECLARE @t nvarchar(max) 

      &lt;br /&gt;SET @t = (SELECT [ThrottlingSettings] from tbl_AM_InstalledAgent WHERE InstallID = ‘&lt;strong&gt;2083CDAA-2872-4D2D-BAEA-ADF033021EB9′&lt;/strong&gt;) 

      &lt;br /&gt;UPDATE [DPMDB].[dbo].[tbl_AM_InstalledAgent] 

      &lt;br /&gt;SET 

      &lt;br /&gt;[IsThrottled] = 1 

      &lt;br /&gt;,[WorkHoursTransmissionRate] = @w 

      &lt;br /&gt;,[NonWorkHoursTransmissionRate] = @n 

      &lt;br /&gt;,[ThrottlingSettings] = @t 

      &lt;br /&gt;GO&lt;/p&gt;
  &lt;/blockquote&gt;

  &lt;p&gt;&lt;strong&gt;INFO:&lt;/strong&gt; This query is going to update all the other agents in the &lt;strong&gt;tbl_AM_InstalledAgent&lt;/strong&gt; table with the throttle settings of the agent who’s &lt;strong&gt;InstallID&lt;/strong&gt; you copied. &lt;/p&gt;
&lt;/li&gt;

&lt;li&gt;
  &lt;h2&gt;Now check the agents in the DPM admin console. They should all be enabled for throttling and have the same settings.&lt;/h2&gt;
 

  &lt;p&gt;&lt;img title="image" border="0" alt="image" src="http://www.buchatech.com/wp-content/uploads/2012/07/image2.png" width="602" height="45" /&gt;&lt;/p&gt;

  &lt;p&gt;&lt;img title="image" border="0" alt="image" src="http://www.buchatech.com/wp-content/uploads/2012/07/image3.png" width="601" height="53" /&gt;&lt;/p&gt;

  &lt;p&gt;&lt;strong&gt;NOTE:&lt;/strong&gt; If you throttle multiple agents in DPM using this method it is not supported. That does not mean this will not work, it simply means that it has not been tested by Microsoft and therefore cannot be supported. Use this at your own risk. &lt;/p&gt;
&lt;/li&gt;

&lt;p&gt;&lt;em&gt;Special thanks to MVP Steve Bucanan &lt;/em&gt;&lt;/p&gt;&lt;img src="http://owsug.ca/aggbug.aspx?PostID=3346" width="1" height="1"&gt;</content><author><name>islam</name><uri>http://owsug.ca/members/islam.aspx</uri></author></entry><entry><title>Free Online Training and Resources from Microsoft</title><link rel="alternate" type="text/html" href="http://owsug.ca/blogs/islamgomaa/archive/2011/10/11/Free-Online-Training-and-Resources-from-Microsoft.aspx" /><id>http://owsug.ca/blogs/islamgomaa/archive/2011/10/11/Free-Online-Training-and-Resources-from-Microsoft.aspx</id><published>2011-10-11T06:10:02Z</published><updated>2011-10-11T06:10:02Z</updated><content type="html">&lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Microsoft is committed to giving people access to the skills they need for jobs in the growing knowledge economy. To support this commitment, Microsoft created&amp;#160; number of programs and resources that share a common focus;providing technology skills training, and resources to help people find employment&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Based on feedback and constructive criticism, Microsoft Canada identifies key areas where they can improve and help you by providing better resources to answer your questions, solve your real world problems and help you achieve your business goals.&amp;#160; Maybe it’s just ensuring you know you have a voice – or just making your life a little easier at the end of the day – whatever it takes, Microsoft is listening.&lt;/p&gt;  &lt;p&gt;Microsoft has a number of great resources to help you in areas of professional development and access to software.&amp;#160; &lt;a href="http://www.microsoftvirtualacademy.com/Home.aspx?WT.mc_id=aff-c-ca-loc--MVP"&gt;&lt;b&gt;The Microsoft Virtual Academy&lt;/b&gt;&lt;/a&gt; contains some fantastic FREE online training on hot topics for IT Professionals.&amp;#160; Once you’ve stopped by and tried out a course or two — head on over to the &lt;a href="http://technet.microsoft.com/en-ca/evalcenter/default.aspx?WT.mc_id=aff-c-ca-jtc--MVP"&gt;&lt;b&gt;Microsoft Eval Center&lt;/b&gt;&lt;/a&gt; to download copies of their server products to try out in your lab environment.&amp;#160; And while you’re at it, check out this free &lt;a href="http://blogs.msdn.com/b/microsoft_press/archive/2011/08/17/free-ebook-microsoft-office-365-connect-and-collaborate-virtually-anywhere-anytime.aspx?WT.mc_id=aff-c-ca-loc--MVP"&gt;Microsoft Office 365 ebook&lt;/a&gt; by Katherine Murray, it shows you how you can use cloud computing to help get more done and help improve ease of collaboration. &lt;/p&gt;&lt;img src="http://owsug.ca/aggbug.aspx?PostID=3052" width="1" height="1"&gt;</content><author><name>islam</name><uri>http://owsug.ca/members/islam.aspx</uri></author></entry><entry><title>Licensing Simplified – at Home and at Work</title><link rel="alternate" type="text/html" href="http://owsug.ca/blogs/islamgomaa/archive/2011/10/11/Licensing-Simplified-_1320_-at-Home-and-at-Work.aspx" /><id>http://owsug.ca/blogs/islamgomaa/archive/2011/10/11/Licensing-Simplified-_1320_-at-Home-and-at-Work.aspx</id><published>2011-10-11T06:07:21Z</published><updated>2011-10-11T06:07:21Z</updated><content type="html">&lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Software licenses, whether they apply directly to your copy of Microsoft office&amp;#160; or some other piece of software, are a type of contract that determine how you may use that software or on how many machines it may be installed. In the case of Microsoft Office, it is a proprietary software product that may be purchased with a variety of licenses, all slightly different in what they allow you to do with that copy of Office. The license depends on the version and how you purchased the copy.&lt;/p&gt;  &lt;p&gt;Based on feedback and constructive criticism, Microsoft Canada identifies key areas where they can improve and help you by providing better resources to answer your questions, solve your real world problems and help you achieve your business goals.&amp;#160; Maybe it’s just ensuring you know you have a voice – or just making your life a little easier at the end of the day – whatever it takes, Microsoft is listening.&lt;/p&gt;  &lt;p&gt;One of the areas Microsoft has received feedback on is Licensing.&amp;#160; Whether you need to buy one license from a traditional retail store or explore options for a more flexible volume licensing program, it can be confusing and sometimes downright intimidating to figure out what you need.&amp;#160; After doing a little digging - I’ve highlighted some resources you can use to help figure out exactly what you need when you talk with your software reseller.&lt;/p&gt;  &lt;p&gt;Speaking of licensing – I often get asked if I can back up our claims at a more cost effective Virtualization solution for your server rooms.&amp;#160; &lt;a href="http://blogs.technet.com/b/virtualization/archive/2011/08/15/beware-the-vmware-memory-tax-part-2.aspx?WT.mc_id=aff-c-ca-jtc--"&gt;I dug up a great – no nonsense breakdown&lt;/a&gt; on recent licensing changes in the industry and how our offering stacks up. &lt;/p&gt;  &lt;p&gt;&lt;b&gt;Licensing Resources&lt;/b&gt;&lt;b&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;· &lt;b&gt;&lt;a href="http://www.microsoft.com/licensing/about-licensing/product-licensing-faq.aspx?WT.mc_id=aff-c-ca-loc--MVP"&gt;Licensing FAQs&lt;/a&gt;: &lt;/b&gt;Frequently Asked Questions About Product Licensing&lt;/p&gt;  &lt;p&gt;· &lt;b&gt;&lt;a href="http://www.microsoft.com/business/smb/en-ca/smb/how-to-buy/get-advice.aspx?WT.mc_id=aff-c-ca-loc--MVP"&gt;The SMB How to Buy Portal&lt;/a&gt;:&amp;#160; &lt;/b&gt;receive clear purchasing and licensing information that is easy to understand in order to help facilitate quick decision making. &lt;/p&gt;  &lt;p&gt;· &lt;b&gt;&lt;a href="http://www.microsoft.com/licensing/mla/?language=English&amp;amp;country=CA&amp;amp;WT.mc_id=aff-c-ca-loc--MVP"&gt;Microsoft License Advisor (MLA)&lt;/a&gt;: &lt;/b&gt;Use MLA to research Microsoft Volume Licensing products, programs and pricing.&amp;#160;&amp;#160; &lt;/p&gt;  &lt;p&gt;· &lt;b&gt;&lt;a href="https://www.microsoft.com/licensing/servicecenter/default.aspx?WT.mc_id=aff-c-ca-loc--MVP"&gt;Volume Licensing Service Center&lt;/a&gt; (VLSC) – &lt;/b&gt;Already have a volume License?&lt;b&gt; &lt;/b&gt;Use the VLSC to get you easy access to all your licensing information in one location.&lt;/p&gt;  &lt;p&gt;· &lt;a href="http://windows.microsoft.com/en-CA/Windows7/products/compare?WT.mc_id=aff-c-ca-loc--MVP"&gt;Windows 7 Comparison&lt;/a&gt;: Compare versions of Windows and find out which one is right for you&lt;/p&gt;  &lt;p&gt;· &lt;a href="http://office.microsoft.com/en-ca/buy/office-2010-which-suite-is-right-for-you-FX101812900.aspx?WT.mc_id=aff-c-ca-loc--MVP"&gt;Office 2010 Comparison&lt;/a&gt;: Find out which Office suite is right for you.&lt;/p&gt;  &lt;p&gt;&lt;b&gt;Other Resources You May Find Useful&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;· &lt;b&gt;&lt;u&gt;&lt;a href="http://technet.microsoft.com/en-ca/cloud/default.aspx?WT.mc_id=aff-c-ca-loc--MVP"&gt;TechNet Cloud Hub&lt;/a&gt;&lt;/u&gt;&lt;/b&gt; - Get the latest news and find great resources to help you jump into the Cloud.&lt;/p&gt;  &lt;p&gt;· &lt;b&gt;&lt;a href="http://technet.microsoft.com/en-ca/evalcenter/default.aspx?WT.mc_id=aff-c-ca-jtc--MVP"&gt;TechNet Evaluation Center&lt;/a&gt; &lt;/b&gt;- Try some of the latest Microsoft products like Office 365, Windows Intune or System Center Virtual Machine Manager 2012 for free, before you buy.&lt;/p&gt;  &lt;p&gt;· &lt;b&gt;&lt;a href="http://www.microsoftvirtualacademy.com/Home.aspx?WT.mc_id=aff-c-ca-jtc--MVP"&gt;Microsoft Virtual Academy &lt;/a&gt; - &lt;/b&gt;For free training to help improve your IT skill set.&lt;/p&gt;&lt;img src="http://owsug.ca/aggbug.aspx?PostID=3051" width="1" height="1"&gt;</content><author><name>islam</name><uri>http://owsug.ca/members/islam.aspx</uri></author></entry><entry><title>Security – How to Help Keep Your PC Protected</title><link rel="alternate" type="text/html" href="http://owsug.ca/blogs/islamgomaa/archive/2011/10/11/Security-_1320_-How-to-Help-Keep-Your-PC-Protected.aspx" /><id>http://owsug.ca/blogs/islamgomaa/archive/2011/10/11/Security-_1320_-How-to-Help-Keep-Your-PC-Protected.aspx</id><published>2011-10-11T06:01:31Z</published><updated>2011-10-11T06:01:31Z</updated><content type="html">&lt;p&gt;&lt;b&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;By following a few simple guidelines, you can maintain your computer, help increase your PC speed, and help keep it running smoothly. This article discusses how to use the tools available in Windows 7, Windows Vista, and &lt;a href="http://www.microsoft.com/atwork/maintenance/"&gt;Windows XP Service Pack 3&lt;/a&gt; to help make your computer faster, maintain your computer efficiently, and help safeguard your privacy when you're online&amp;#160; &lt;/p&gt;  &lt;p&gt;Based on feedback and constructive criticism, Microsoft Canada identifies key areas where they can improve and help you by providing better resources to answer your questions, solve your real world problems and help you achieve your business goals.&amp;#160; Maybe it’s just ensuring you know you have a voice – or just making your life a little easier at the end of the day – whatever it takes, Microsoft is listening.&lt;/p&gt;  &lt;p&gt;One of the areas Microsoft has received feedback on is Security, specifically how to help keep your PC protected. Whether it's at work or at home, I've been told that it can be hard to make sense of what's important, which updates should be installed and how best to protect your PC. Microsoft has a resource center for their Monthly updates listed below – it's something you should check out every second Tuesday of the month. If you prefer to listen to a podcast – they've created one that's easy to listen to and not too technical called Security Bulletins for the Regular IT Guy.   &lt;br /&gt;Recently there have been a growing number of Phone Scams from individuals claiming to be from Microsoft asking you about the security of your PC. You should be suspicious of unsolicited calls about security of your systems. Don't give out financial details, visit websites, allow anyone to remote control your system or install software from unsolicited callers. If you feel your system has been compromised or has a computer virus – you can call Microsoft's Security and Virus FREE support line at &lt;strong&gt;1-866-727-2338&lt;/strong&gt;. &lt;/p&gt;  &lt;p&gt;&lt;b&gt;Security Resources&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;· &lt;a href="http://www.microsoft.com/en-ca/security_essentials/default.aspx?WT.mc_id=aff-c-ca-loc--MVP"&gt;&lt;b&gt;Microsoft Security Essentials&lt;/b&gt;&lt;/a&gt; – Free Anti-Malware software from Microsoft, great for Small Businesses and Home PCs alike. &lt;/p&gt;  &lt;p&gt;· &lt;a href="http://feeds.feedburner.com/sbfritg?WT.mc_id=aff-c-ca-loc--MVP"&gt;&lt;b&gt;Security Bulletins by the Regular IT Guy&lt;/b&gt;&lt;/a&gt; – A monthly podcast to help simplify details about the monthly Security patch releases. &lt;/p&gt;  &lt;p&gt;· &lt;a href="http://technet.microsoft.com/en-ca/security/default.aspx?WT.mc_id=aff-c-ca-loc--MVP"&gt;&lt;b&gt;Security TechCenter&lt;/b&gt;&lt;/a&gt; – Find top tasks, get the latest news, find a wiki article or download a featured tool. &lt;/p&gt;  &lt;p&gt;· &lt;a href="http://technet.microsoft.com/en-us/windowsserver/bb332157.aspx?WT.mc_id=aff-c-ca-loc--MVP"&gt;&lt;b&gt;Windows Update Services&lt;/b&gt;&lt;/a&gt; – Businesses of all sizes can help manage and control the rollout of updates in their organizations.&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;Other Resources You May Find Useful&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;· &lt;b&gt;&lt;a href="http://technet.microsoft.com/en-CA/gg426312.aspx?WT.mc_id=aff-c-ca-loc--MVP"&gt;Springboard Series &lt;/a&gt;&lt;/b&gt;- Your destination for technical resources, free tools and expert guidance to ease the deployment and management of your Windows-based client infrastructure. &lt;/p&gt;  &lt;p&gt;· &lt;b&gt;&lt;a href="http://www.align-it.ca/contentlibrary/blogs/alignit-manager-tech-talk-series.aspx?WT.mc_id=aff-c-ca-loc--MVP"&gt;AlignIT Manager Tech Talk Series &lt;/a&gt;&lt;/b&gt; - A monthly streamed video series with a range of topics for both infrastructure and development managers. Ask questions and participate real-time or watch the on-demand recording.&lt;/p&gt;  &lt;p&gt;· &lt;b&gt;&lt;a href="http://www.microsoftvirtualacademy.com/Home.aspx?WT.mc_id=aff-c-ca-jtc--MVP"&gt;Microsoft Virtual Academy &lt;/a&gt;&lt;/b&gt; - For Free Training To Help Improve Your IT Skill Set. &lt;/p&gt;  &lt;p&gt;· &lt;b&gt;&lt;a href="http://technet.microsoft.com/en-ca/evalcenter/default.aspx?WT.mc_id=aff-c-ca-jtc--MVP"&gt;TechNet Evaluation Center &lt;/a&gt;&lt;/b&gt; - Try some of the latest Microsoft products like Office 365, Windows Intune or System Center Virtual Machine Manager 2012 for free, before you buy.&lt;/p&gt;&lt;img src="http://owsug.ca/aggbug.aspx?PostID=3050" width="1" height="1"&gt;</content><author><name>islam</name><uri>http://owsug.ca/members/islam.aspx</uri></author></entry><entry><title>Help and Support from Microsoft</title><link rel="alternate" type="text/html" href="http://owsug.ca/blogs/islamgomaa/archive/2011/10/10/Help-and-Support-from-Microsoft.aspx" /><id>http://owsug.ca/blogs/islamgomaa/archive/2011/10/10/Help-and-Support-from-Microsoft.aspx</id><published>2011-10-11T05:57:24Z</published><updated>2011-10-11T05:57:24Z</updated><content type="html">&lt;p&gt;Last week I have been challenged with our DPM server, that kept crashing every 15 min, since we are MS partners, I opened a support request, and Steve and Pat helped me out, however if you cant open a ticket to Microsoft support this is some information could help you.&amp;#160; &lt;/p&gt;  &lt;p&gt;Have you ever wondered where to go to get help with your common, everyday IT challenges?&amp;#160; &lt;/p&gt;  &lt;p&gt;Based on feedback and constructive criticism, Microsoft Canada identifies key areas where they can improve and help you by providing better resources to answer your questions, solve your real world problems and help you achieve your business goals.&amp;#160; Maybe it’s just ensuring you know you have a voice – or just making your life a little easier at the end of the day – whatever it takes, Microsoft is listening.&lt;/p&gt;  &lt;p&gt;One of the areas Microsoft has received feedback on is Help and Support. Let's face it, you may not have a direct contact person from Microsoft that you can call up when you have a problem and with the pace of technology today, you just can't wait for things to sort themselves out. So you either commit you or your teams' time and energy to fixing that issue, or you hire someone to come in and fix it. But what if I told you there were some great Microsoft Resources available for support that you could use? I've put together a list below. This is by no means exhaustive, but it should give you a great start when you need to tackle your next IT challenge.&lt;/p&gt;  &lt;p&gt;&lt;b&gt;Help and Resources&lt;/b&gt;    &lt;table cellspacing="11" cellpadding="0"&gt;       &lt;tr&gt;         &lt;td&gt;           &lt;table cellspacing="0" cellpadding="0"&gt;               &lt;tr&gt;                 &lt;td&gt;                   &lt;p&gt;· &lt;a href="http://support.microsoft.com/select/?target=hub&amp;amp;WT.mc_id=aff-c-ca-loc--MVP"&gt;&lt;b&gt;Microsoft Product Solution Center&lt;/b&gt;&lt;/a&gt; – Get product support information for the majority of Microsoft products. &lt;/p&gt;                    &lt;p&gt;· &lt;a href="http://answers.microsoft.com/en-us?WT.mc_id=aff-c-ca-loc--MVP"&gt;&lt;b&gt;Microsoft Answers&lt;/b&gt;&lt;/a&gt; – Ask questions and get answers from real people, or search for answers others have received. &lt;/p&gt;                    &lt;p&gt;· &lt;a href="http://support.microsoft.com/fixit/?WT.mc_id=aff-c-ca-loc--MVP"&gt;&lt;b&gt;Microsoft Fix it Solution Center&lt;/b&gt;&lt;/a&gt; – Find automated solutions for your issues. &lt;/p&gt;                    &lt;p&gt;· &lt;a href="http://twitter.com/#!/@MicrosoftHelps?WT.mc_id=aff-c-ca-loc--MVP"&gt;&lt;b&gt;@MicrosoftHelps&lt;/b&gt;&lt;/a&gt; – Follow Microsoft Customer Service and Support on Twitter. Experienced customer service agents respond to your questions in real-time tweets.&lt;/p&gt;                    &lt;p&gt;· &lt;a href="http://www.microsoft.com/enterprise/default.aspx?WT.mc_id=aff-c-ca-loc--MVP"&gt;&lt;b&gt;Enterprise Business Center&lt;/b&gt;&lt;/a&gt; – Access resources for enterprise customers. &lt;/p&gt;                    &lt;p&gt;· &lt;a href="http://www.microsoft.com/business/smb/en-ca/default.aspx?WT.mc_id=aff-c-ca-loc--MVP"&gt;&lt;b&gt;Microsoft Small Business Center&lt;/b&gt;&lt;/a&gt; – Find resources for small and medium-sized businesses.&lt;/p&gt;                 &lt;/td&gt;               &lt;/tr&gt;             &lt;/table&gt;         &lt;/td&gt;       &lt;/tr&gt;     &lt;/table&gt; &lt;/p&gt;  &lt;p&gt;&lt;b&gt;Other Resources You May Find Useful&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;/b&gt;&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;b&gt;&lt;a href="http://www.microsoftvirtualacademy.com/Home.aspx?WT.mc_id=aff-c-ca-jtc--MVP"&gt;Microsoft Virtual Academy &lt;/a&gt;&lt;/b&gt; - For Free Training To Help Improve Your IT Skill Set. &lt;/li&gt;    &lt;li&gt;&lt;b&gt;&lt;a href="http://technet.microsoft.com/en-ca/evalcenter/default.aspx?WT.mc_id=aff-c-ca-jtc--MVP"&gt;TechNet Evaluation Center &lt;/a&gt;&lt;/b&gt; - Try some of the latest Microsoft products like Office 365, Windows Intune or System Center Virtual Machine Manager 2012 for free, before you buy.&lt;/li&gt;    &lt;li&gt;&lt;b&gt;&lt;a href="https://profile.microsoft.com/RegSysProfileCenter/subscriptionwizard.aspx?wizid=d15b1789-216b-4763-adfe-7196aaf3b021&amp;amp;lcid=4105&amp;amp;WT.mc_id=aff-c-ca-loc--MVP"&gt;TechNet Newsletter&lt;/a&gt; &lt;/b&gt;- Sign Up To Receive The Latest IT News and Developments, Product Releases, Expert Insights and Support Services with Microsoft's complimentary biweekly newsletter for industry professionals.&lt;/li&gt; &lt;/ul&gt;&lt;img src="http://owsug.ca/aggbug.aspx?PostID=3049" width="1" height="1"&gt;</content><author><name>islam</name><uri>http://owsug.ca/members/islam.aspx</uri></author></entry><entry><title>DPM Installation Error ID:820</title><link rel="alternate" type="text/html" href="http://owsug.ca/blogs/islamgomaa/archive/2011/08/17/DPM-Installation-Error-ID_3A00_820.aspx" /><id>http://owsug.ca/blogs/islamgomaa/archive/2011/08/17/DPM-Installation-Error-ID_3A00_820.aspx</id><published>2011-08-18T03:49:35Z</published><updated>2011-08-18T03:49:35Z</updated><content type="html">&lt;p&gt;When you install DPM 2010, right after the prerequisites&amp;#160; verification you receive an error&amp;#160; “Verify that Windows Management Instrumentation (WMI) Service is running. if …….”&lt;/p&gt;  &lt;p&gt;&lt;a href="http://owsug.ca/blogs/islamgomaa/image_4A7B37DB.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;margin:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://owsug.ca/blogs/islamgomaa/image_thumb_01751615.png" width="244" height="195" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;in order to fix this issue, you need to reinstall WMI , this is how to do it&lt;/p&gt;  &lt;p&gt; From an elevated Command Prompt &lt;/p&gt;  &lt;p&gt;1. Disable and stop the WMI service.&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;sc config winmgmt start= disabled&lt;/p&gt; &lt;/blockquote&gt;  &lt;blockquote&gt;   &lt;p&gt;net stop winmgmt&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;2. Rename the Repository folder under C:\Windows\System32\wbem to Repository.old&lt;/p&gt;  &lt;p&gt;3. Run the following commands.&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;Winmgmt /salvagerepository %windir%\System32\wbem &lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;4. Re-enable the WMI service and then reboot the server to see how it goes.&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;sc config winmgmt start= auto&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;Islam GOmaa&lt;/p&gt;  &lt;p&gt;DPM MVP   &lt;br /&gt;Islam[at]islamGomaa.com &lt;/p&gt;&lt;img src="http://owsug.ca/aggbug.aspx?PostID=3014" width="1" height="1"&gt;</content><author><name>islam</name><uri>http://owsug.ca/members/islam.aspx</uri></author></entry><entry><title>De-Duplication for Data Protection Manager 2010</title><link rel="alternate" type="text/html" href="http://owsug.ca/blogs/islamgomaa/archive/2011/04/11/De_2D00_Duplication-for-Data-Protection-Manager-2010.aspx" /><id>http://owsug.ca/blogs/islamgomaa/archive/2011/04/11/De_2D00_Duplication-for-Data-Protection-Manager-2010.aspx</id><published>2011-04-11T06:02:52Z</published><updated>2011-04-11T06:02:52Z</updated><content type="html">&lt;p&gt;One thing is missing in DPM 2010 is De-Duplication, with &lt;a href="http://www.exar.com/Common/Content/Default.aspx?id=7882" target="_blank"&gt;BitWackr&lt;/a&gt; , you can accomplish the de-dupliacation&amp;#160; and save a lot od space on your DPM Storage &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Block-based data deduplication is a technique that eliminates redundant blocks of data. In a typical deduplication operation, blocks of data are &amp;quot;fingerprinted&amp;quot; using a hashing algorithm that produces a unique, &amp;quot;shorthand&amp;quot; identifier for data blocks. These unique fingerprints along with the blocks of data that produced them are indexed and retained. Duplicate copies of data that have previously been fingerprinted are deduplicated, leaving only a single instance of each unique data block along with its corresponding fingerprint resulting in dramatic storage capacity savings.&lt;/p&gt;  &lt;p&gt;&lt;img src="http://www.exar.com/uploadedImages/Products/Networking/datadeduplication.gif" /&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;h5&gt;BITWACKR C SERIES FOR WINDOWS SERVERS&lt;/h5&gt;  &lt;p&gt;The addition of data deduplication to backup software has changed the industry's approach to data protection. Once the exclusive domain of high-end deduplication appliances, the addition of a deduplication option to the major backup software products makes this powerful technology available to IT shops of all sizes. But in order to optimize data reduction ratios, backup data has to be compressed as it is being deduplicated. And hardware compression is the only technology that can perform this task without impacting backup and restore performance or server and client resources.&lt;/p&gt;  &lt;p&gt;BitWackr C Series for Windows Servers provides OEMs, Solution Providers and VARs the product needed to turbocharged today's latest backup software advancements with the industry leader in hardware accelerated disk and RAID data compression. BitWackr for Windows Servers delivers a distinctive value multiplier to backup software.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;BitWackr C Series for Windows Servers&lt;/strong&gt; provides OEMs, Solution Providers and VARs the product needed to turbocharged today's latest backup software advancements with the industry leader in hardware accelerated disk and RAID data compression. BitWackr for Windows Servers delivers a distinctive value multiplier to backup software.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Improved Backup Data Reduction&lt;/strong&gt;    &lt;br /&gt;BitWackr C employs the same data compression algorithms deployed worldwide in Enterprise-class Virtual Tape Libraries. Combining Exar's Express DR acceleration PCIe cards and dedicated compression silicon with BitWackr's patent-pending Virtual Block Device (VBD) technology, BitWackr C accelerates data compression to turbocharge deduplication data reduction.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Improved Backup and Restore Performance&lt;/strong&gt;    &lt;br /&gt;Targeting performance-centric data protection environments, BitWackr C recognizes the premium priority set on protecting data within already stringent backup and restore windows by providing line-rate throughput performance. By reducing the server processor payload, BitWackr C helps ensure that backup servers have the resources needed to address advanced backup software capabilities, providing improved performance without taxing the server's processor.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Simplicity, Transparency and Ease of Use&lt;/strong&gt;    &lt;br /&gt;Using an innovative and patent-pending approach, BitWackr C presents itself as a block storage disk device to Windows Servers, allowing users to take advantage of BitWackr's unique capabilities without sacrificing operating system disk and volume management utilities. This unique capability dramatically reduces the complexity and learning curve required for BitWackr C integration and support.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;div style="padding-bottom:0px;margin:0px;padding-left:0px;padding-right:0px;display:inline;float:none;padding-top:0px;" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:62b50bcb-7d99-424d-a5fd-f7d9c8aff5f3" class="wlWriterEditableSmartContent"&gt;&lt;div&gt;&lt;a href="http://www.youtube.com/watch?v=_mwff2BKrR8" target="_new"&gt;&lt;img src="http://owsug.ca/blogs/islamgomaa/video07d5b2c7d756_19644CA1.jpg" style="border-style:none;" alt=""&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;  &lt;p&gt;BitWackr for Microsoft Data Protection Manager &lt;/p&gt;&lt;img src="http://owsug.ca/aggbug.aspx?PostID=2936" width="1" height="1"&gt;</content><author><name>islam</name><uri>http://owsug.ca/members/islam.aspx</uri></author></entry><entry><title>DPM for non Microsoft Workload  (Heterogeneous environment)</title><link rel="alternate" type="text/html" href="http://owsug.ca/blogs/islamgomaa/archive/2011/04/08/DPM-for-non-Microsoft-Workload--Heterogeneous-environment.aspx" /><id>http://owsug.ca/blogs/islamgomaa/archive/2011/04/08/DPM-for-non-Microsoft-Workload--Heterogeneous-environment.aspx</id><published>2011-04-09T05:44:23Z</published><updated>2011-04-09T05:44:23Z</updated><content type="html">&lt;p&gt;Microsoft System Center Data Protection Manager offers great protection for Microsoft environments. But what about your non-Microsoft systems? And what about storing backup data offsite to defend against site disasters?&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;font size="4"&gt;Unleash DPM. For a cross-platform, cloud-connected world&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;   &lt;br /&gt;How do you manage backup and recovery for applications, servers, clients, and    &lt;br /&gt;virtual machines? Microsoft® System Center Data Protection Manager (DPM) is    &lt;br /&gt;a great choice for Microsoft systems. But what about everything else? And what    &lt;br /&gt;about storing backup data offsite to defend against site disasters? You need deeply    &lt;br /&gt;integrated Microsoft application and client protection, broad non-Microsoft system    &lt;br /&gt;protection, and secure, efficient cloud connectivity—all in a single, all-in-one solution.    &lt;br /&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="4"&gt;Deep Integration with Microsoft Applications and File Servers&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;   &lt;br /&gt;&lt;a href="http://www.i365.com/products/data-backup-software/microsoft-backup-recovery/index.html" target="_blank"&gt;EVault&lt;/a&gt; for DPM leverages Data Protection Manager 2010 to back up and recover data from    &lt;br /&gt;Microsoft® SQL Servers, Exchange Servers, Office SharePoint® Servers, and Hyper-V™ Server    &lt;br /&gt;virtual environments, as well as Windows-based desktops and laptops. Because DPM 2010    &lt;br /&gt;was designed by Microsoft, you can be assured that EVault for DPM will tightly integrate with    &lt;br /&gt;your organization’s Microsoft business applications and offer up-to-the-minute protection.    &lt;br /&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="4"&gt;Better Backup for Microsoft SharePoint&lt;/font&gt;    &lt;br /&gt;    &lt;br /&gt;&lt;a href="http://www.i365.com/products/data-backup-software/microsoft-backup-recovery/index.html" target="_blank"&gt;EVault&lt;/a&gt; for DPM makes SharePoint backup simple. It understands SharePoint architectures,    &lt;br /&gt;recognizing and automatically protecting new content databases whenever added. EVault for    &lt;br /&gt;DPM protects your entire SharePoint deployment—SQL databases, metadata, search index    &lt;br /&gt;files, and more—even when distributed across multiple platforms. And you’ll quickly master    &lt;br /&gt;its intuitive user interface. Simply select the farm to protect and EVault for DPM backs up the    &lt;br /&gt;right components.&lt;/p&gt;  &lt;p&gt;   &lt;br /&gt;&lt;font size="4"&gt;Strong Protection for Microsoft Virtualization Environments     &lt;br /&gt;&lt;/font&gt;    &lt;br /&gt;Beyond protecting Microsoft applications and servers, &lt;a href="http://www.i365.com/products/data-backup-software/microsoft-backup-recovery/index.html" target="_blank"&gt;EVault&lt;/a&gt; for DPM protects virtual    &lt;br /&gt;machines hosted on servers running Microsoft Hyper-V. Protection includes online backup    &lt;br /&gt;of supported guest virtual machines hosted on clustered or standalone systems; virtual    &lt;br /&gt;machines engaged in Hyper-V live migration; and item-level recovery from host-level backup.    &lt;br /&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="4"&gt;All-in-One Solution Ensures Easy-to-Deploy Data Protection     &lt;br /&gt;&lt;/font&gt;    &lt;br /&gt;&lt;a href="http://www.i365.com/products/data-backup-software/microsoft-backup-recovery/index.html" target="_blank"&gt;EVault&lt;/a&gt; for DPM is the only cross-platform backup and recovery solution that incorporates    &lt;br /&gt;Microsoft DPM 2010. It includes EVault technology that provides comprehensive protection    &lt;br /&gt;for Microsoft and non-Microsoft platforms; optimized cloud connectivity; and a single, webbased    &lt;br /&gt;console that acts as your command center for monitoring agent status and simply    &lt;br /&gt;initiating complex tasks. Designed for easy deployment, EVault for DPM is available as a preconfigured    &lt;br /&gt;hardware/software appliance and as a virtual appliance&lt;/p&gt;&lt;img src="http://owsug.ca/aggbug.aspx?PostID=2935" width="1" height="1"&gt;</content><author><name>islam</name><uri>http://owsug.ca/members/islam.aspx</uri></author></entry><entry><title>Automate your Data Restore in DPM</title><link rel="alternate" type="text/html" href="http://owsug.ca/blogs/islamgomaa/archive/2011/04/08/Automate-your-Data-Restore-in-DPM.aspx" /><id>http://owsug.ca/blogs/islamgomaa/archive/2011/04/08/Automate-your-Data-Restore-in-DPM.aspx</id><published>2011-04-09T05:32:16Z</published><updated>2011-04-09T05:32:16Z</updated><content type="html">&lt;p&gt;a lot of times , you need to restore your production Database on a periodical basis , and that maybe for Development or for reporting purpose, you can achieve this solution either by PowerShell, or Opalis.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;With Opalis you can use the DPM IP to achieve this task &lt;/p&gt;  &lt;p&gt;just create the following Workflow and you are done &lt;/p&gt;  &lt;p&gt;&lt;a href="http://owsug.ca/blogs/islamgomaa/clip_image002_2364D0BF.jpg"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="clip_image002" border="0" alt="clip_image002" src="http://owsug.ca/blogs/islamgomaa/clip_image002_thumb_41CF11A8.jpg" width="244" height="68" /&gt;&lt;/a&gt;&amp;#160; &lt;/p&gt;  &lt;p&gt;the equivalent for this task is 30 lines of codes in PowerShell like this one &lt;/p&gt;  &lt;p&gt;&lt;a title="http://blogs.technet.com/b/dpm/archive/2007/09/04/cli-script-copy-latest-point-in-time-of-sql-db-to-a-folder.aspx" href="http://blogs.technet.com/b/dpm/archive/2007/09/04/cli-script-copy-latest-point-in-time-of-sql-db-to-a-folder.aspx"&gt;http://blogs.technet.com/b/dpm/archive/2007/09/04/cli-script-copy-latest-point-in-time-of-sql-db-to-a-folder.aspx&lt;/a&gt;&lt;/p&gt;&lt;img src="http://owsug.ca/aggbug.aspx?PostID=2934" width="1" height="1"&gt;</content><author><name>islam</name><uri>http://owsug.ca/members/islam.aspx</uri></author></entry><entry><title>Integration Pack for System Center Data Protection Manager</title><link rel="alternate" type="text/html" href="http://owsug.ca/blogs/islamgomaa/archive/2011/04/08/Integration-Pack-for-System-Center-Data-Protection-Manager.aspx" /><id>http://owsug.ca/blogs/islamgomaa/archive/2011/04/08/Integration-Pack-for-System-Center-Data-Protection-Manager.aspx</id><published>2011-04-09T05:24:51Z</published><updated>2011-04-09T05:24:51Z</updated><content type="html">&lt;p&gt;The Integration Pack for System Center Data Protection Manager (DPM) is an add-in for Opalis Integration Server 6.3 that enables you to automate the protection of virtual machine hosts and virtual machine guests. You can use the objects in this integration pack to create workflows that provide the following:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Automated virtual machine protection and recovery&lt;/li&gt;    &lt;li&gt;Automated SharePoint Farm protection and recovery&lt;/li&gt;    &lt;li&gt;Automated system state protection&lt;/li&gt;    &lt;li&gt;Ad hoc backups&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;The integration pack adds the &lt;strong&gt;System Center Data Protection Manager&lt;/strong&gt; category to the &lt;strong&gt;Object&lt;/strong&gt; pane in the Opalis Integration Server Client. This category contains the following objects: &lt;/p&gt;  &lt;p&gt;&lt;a href="http://technet.microsoft.com/en-us/library/gg440707.aspx"&gt;Create Recovery Point&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://technet.microsoft.com/en-us/library/gg440727.aspx"&gt;Get Data Source&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://technet.microsoft.com/en-us/library/gg440725.aspx"&gt;Get DPM Server Capacity&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://technet.microsoft.com/en-us/library/gg440723.aspx"&gt;Get Recovery Point&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://technet.microsoft.com/en-us/library/gg464973.aspx"&gt;Protect Data Source&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://technet.microsoft.com/en-us/library/gg440675.aspx"&gt;Recover SharePoint&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://technet.microsoft.com/en-us/library/gg440684.aspx"&gt;Recover SQL&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://technet.microsoft.com/en-us/library/gg464966.aspx"&gt;Recover VM&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;to learn more about opalis and DPM , visit, &lt;a title="http://technet.microsoft.com/en-us/library/gg464929.aspx" href="http://technet.microsoft.com/en-us/library/gg464929.aspx"&gt;http://technet.microsoft.com/en-us/library/gg464929.aspx&lt;/a&gt;&lt;/p&gt;&lt;img src="http://owsug.ca/aggbug.aspx?PostID=2933" width="1" height="1"&gt;</content><author><name>islam</name><uri>http://owsug.ca/members/islam.aspx</uri></author></entry><entry><title>Recovery notification email not working in DPM</title><link rel="alternate" type="text/html" href="http://owsug.ca/blogs/islamgomaa/archive/2011/04/08/Recovery-notification-email-not-working-in-DPM.aspx" /><id>http://owsug.ca/blogs/islamgomaa/archive/2011/04/08/Recovery-notification-email-not-working-in-DPM.aspx</id><published>2011-04-09T05:10:36Z</published><updated>2011-04-09T05:10:36Z</updated><content type="html">&lt;p&gt;&lt;em&gt;From Steve’s blog&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;PROBLEM:&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;During a recovery you select the option &amp;quot;&lt;em&gt;&lt;strong&gt;Send an email when this recovery completes&lt;/strong&gt;&lt;/em&gt;&amp;quot;. The recovery job completes with no issues but an email notification is never sent. &lt;/p&gt;  &lt;p&gt;&lt;img title="image" border="0" alt="image" src="http://www.buchatech.com/wp-content/uploads/2011/02/image10.png" width="437" height="348" /&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;RESOLUTION: &lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;There are several things you need to ensure are configured for this to work properly. These are:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;strong&gt;Make sure an SMTP Server is configured.&lt;/strong&gt; To configure this go on the DPM administrator console go to Action&amp;gt;&amp;gt;&amp;gt;Options and click on the SMTP Server tab. &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Information alerts should be selected.&lt;/strong&gt; To configure this go on the DPM administrator console go to Action&amp;gt;&amp;gt;&amp;gt;Options and click on the the Notifications tab. &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;The recipient listed on the recovery notification screen must also be entered on the Notification Recipients list.&lt;/strong&gt; To configure this go on the DPM administrator console go to Action&amp;gt;&amp;gt;&amp;gt;Options and click on the Notifications tab. You will see the Recipients list. Add email addresses here. Note multiple email address must be separated by commas.&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;img title="image" border="0" alt="image" src="http://www.buchatech.com/wp-content/uploads/2011/02/image11.png" width="333" height="232" /&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Now the recovery notifications should work. You will receive 2 email notifications during the recovery process these are: &lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;You should get an informational alert at the beginning of the job. This email lets you know that a job has started. It will look like this:&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;The following alert occurred at 2/20/2011 1:18:08 PM.&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Status: Active&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Computer: DPMSERVERNAME.YOURDOMAIN.com&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Description: Recovery jobs started @ Sunday, February 20, 2011 1:18:07 PM. &lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;For more information, open DPM Administrator Console and review the alert details in the Monitoring task area.&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;You should get another informational alert email at the end of the job that it is completed. This email will look like this:&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;The following alert occurred at 2/20/2011 1:39:11 PM.&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Status: Active&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Computer: DPMSERVERNAME.YOURDOMAIN.com&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Description: Recovery jobs started @ Sunday, February 20, 2011 1:34:39 PM completed successfully. &lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;For more information, open DPM Administrator Console and review the alert details in the Monitoring task area.&lt;/strong&gt;&lt;/p&gt;&lt;img src="http://owsug.ca/aggbug.aspx?PostID=2932" width="1" height="1"&gt;</content><author><name>islam</name><uri>http://owsug.ca/members/islam.aspx</uri></author></entry><entry><title>DPM found no recovery point which you are authorized to restore on the specified DPM server</title><link rel="alternate" type="text/html" href="http://owsug.ca/blogs/islamgomaa/archive/2011/04/08/DPM-found-no-recovery-point-which-you-are-authorized-to-restore-on-the-specified-DPM-server.aspx" /><id>http://owsug.ca/blogs/islamgomaa/archive/2011/04/08/DPM-found-no-recovery-point-which-you-are-authorized-to-restore-on-the-specified-DPM-server.aspx</id><published>2011-04-09T05:06:33Z</published><updated>2011-04-09T05:06:33Z</updated><content type="html">&lt;p&gt;&lt;strong&gt;from Steve’s blog      &lt;br /&gt;      &lt;br /&gt;&lt;/strong&gt;On client computers that are protected by DPM you had to put the end users account in the local administrators group. If you did not add the end user account to the local administrators group you would get this error after opening the recovery tab in the DPM client: &lt;em&gt;“DPM found no recovery points which you are authorized to restore on the specified DPM server. You can restore only those recovery points for which you were an administrator at the time the backup was taken. To restore other recovery points, contact your DPM administrator, or attempt to restore from another DPM.”&lt;/em&gt; This is not ideal on many networks because the end users are not allowed to have local administrator access.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Solution:&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Apply hotfix 2465832 found here: &lt;strong&gt;&lt;a href="http://support.microsoft.com/kb/2465832"&gt;http://support.microsoft.com/kb/2465832&lt;/a&gt;&lt;/strong&gt;.&lt;/p&gt;  &lt;p&gt;This hotfix resolves other issues with DPM 2010 as well. You can find the full list of what this hotfix corrects on that link. Be sure you check out the prerequisites for this hotfix before applying and don’t forget to update your DPM agents after applying this hotfix.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;***UPDATE***&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Mike Ressler found a mistake in the KB documentation.&lt;/p&gt;  &lt;p&gt;Here is a link to Mike’s post on this:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://scug.be/blogs/scdpm/archive/2011/03/11/getting-the-non-administrator-client-recovery-working-in-dpm-2010.aspx"&gt;http://scug.be/blogs/scdpm/archive/2011/03/11/getting-the-non-administrator-client-recovery-working-in-dpm-2010.aspx&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;The mistake is in the registry key that you need to create. In the KB you are told to create: &lt;/p&gt;  &lt;p&gt;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft Data Protection Manager\Agent\ClientProtection and then create a new key called ClientOwner as REG_MULTI_SZ&lt;/p&gt;  &lt;p&gt;It should actually be:&lt;/p&gt;  &lt;p&gt;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft Data Protection Manager\Agent\ClientProtection and then create a new key called ClientOwners as REG_MULTI_SZ.&lt;/p&gt;  &lt;p&gt;ClientOwners not ClientOwner.   &lt;/p&gt;&lt;img src="http://owsug.ca/aggbug.aspx?PostID=2931" width="1" height="1"&gt;</content><author><name>islam</name><uri>http://owsug.ca/members/islam.aspx</uri></author></entry><entry><title>Data Protection Manager 2012</title><link rel="alternate" type="text/html" href="http://owsug.ca/blogs/islamgomaa/archive/2011/04/08/Data-Protection-Manager-2012.aspx" /><id>http://owsug.ca/blogs/islamgomaa/archive/2011/04/08/Data-Protection-Manager-2012.aspx</id><published>2011-04-09T05:04:13Z</published><updated>2011-04-09T05:04:13Z</updated><content type="html">&lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;I have been waiting for mms 2011 to reveal the new feature of DPM 2012 , these release has a lot of new features &lt;/p&gt;  &lt;h1&gt;&lt;font size="6"&gt;Centralized Management&lt;/font&gt;&lt;/h1&gt;  &lt;p&gt;With DPM 2012 , you can centralised your DPM server management VIA operation manager, and you can manage more than 100 DPM servers , and 50 K data sources, and of course the new Management pack has a lot of capabilities for DPM 2010 and 2012.&lt;/p&gt;  &lt;p&gt;&lt;img src="http://scug.be/cfs-filesystemfile.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/scdpm/image_5F00_728F12ED.png" /&gt;&lt;/p&gt;  &lt;h1&gt;&lt;strong&gt;&lt;font size="6" face="Arial"&gt;Role based administration&lt;/font&gt;&lt;/strong&gt;&lt;/h1&gt;  &lt;p&gt;That is was an important feature that will allow you to grant different users different levels of access to DPM, we have been waiting long time for this feature.&lt;/p&gt;  &lt;p&gt;&lt;img src="http://scug.be/cfs-filesystemfile.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/scdpm/image_5F00_0FB4BAF8.png" /&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;font size="6"&gt;Certificate Based authentication&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="3"&gt;DPM2010 uses local users to backup untrusted / workgroup machine, and the challenge was how can you manage all this local users, thankfully it is not the case in DPM 2012,&amp;#160; with DPM 2012 you can use certificate for authentication.&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="3"&gt;&amp;#160; &lt;img src="http://scug.be/cfs-filesystemfile.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/scdpm/image_5F00_18749D77.png" /&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;font size="6"&gt;Media Colocation&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;With DPM 2012 you will have the&amp;#160; ability to configure Media colocation for individual protection groups.&lt;/p&gt;  &lt;p&gt;&lt;img src="http://scug.be/cfs-filesystemfile.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/scdpm/image_5F00_07ACF2C9.png" /&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;font size="6"&gt;Virtual DPM enhancements&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;With DPM 2012 , you can install DPM on Virtual Machine and perform Item level restore, that wasn't possible on DPM 2010 &lt;/p&gt;            &lt;p&gt;&lt;img src="http://scug.be/cfs-filesystemfile.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/scdpm/image_5F00_28FC7298.png" /&gt;&lt;/p&gt;&lt;img src="http://owsug.ca/aggbug.aspx?PostID=2930" width="1" height="1"&gt;</content><author><name>islam</name><uri>http://owsug.ca/members/islam.aspx</uri></author></entry><entry><title>Allow DPM Traffic Through ISA 2006 / TMG 2010</title><link rel="alternate" type="text/html" href="http://owsug.ca/blogs/islamgomaa/archive/2011/02/20/Allow-DPM-Traffic-Through-ISA-2006-_2F00_-TMG-2010.aspx" /><id>http://owsug.ca/blogs/islamgomaa/archive/2011/02/20/Allow-DPM-Traffic-Through-ISA-2006-_2F00_-TMG-2010.aspx</id><published>2011-02-21T05:47:49Z</published><updated>2011-02-21T05:47:49Z</updated><content type="html">&lt;p&gt;&lt;a href="http://www.buchatech.com/2011/02/allow-dpm-traffic-through-isa-2006-tmg-2010/" target="_blank"&gt;From Steve’s Blog&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;In this post I will explain the steps I had to take to allow DPM traffic in and out of my ISA firewall. (NOTE:This will also work with TMG 2010 as well.). This is required in order for a Secondary offsite DPM server to backup a Primary DPM server that is inside the local network and for client protection over the WAN. Both DPM offsite protection and offsite client protection are done via VPN. Configuring ISA / TMG for DPM traffic can seem somewhat complex and there is not any really good documentation on how to do this. My goal of this post is to simply this process as much as possible in clear easy to follow steps. I will assume that if you are reading this post that you are somewhat familiar with ISA 2006 / TMG 2010. &lt;/p&gt;  &lt;p&gt;The steps needed to configure ISA 2006/TMG 2010 to allow DPM traffic in and out of the network are:&lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;Configure an access rule for DPM traffic. &lt;/li&gt;    &lt;li&gt;Define protocols in ISA/TMG for DPM traffic. &lt;/li&gt;    &lt;li&gt;Loosen up RPC security &lt;/li&gt; &lt;/ol&gt;  &lt;h5&gt;&lt;strong&gt;1. Configure an access rule for DPM traffic. &lt;/strong&gt;&lt;/h5&gt;  &lt;p&gt;You first need to create an Access rule in ISA 2006 for DPM. I called mine DPM offsite.&amp;#160; &lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.buchatech.com/wp-content/uploads/2011/02/image6.png"&gt;&lt;img title="image" border="0" alt="image" src="http://www.buchatech.com/wp-content/uploads/2011/02/image_thumb6.png" width="456" height="533" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;In the rule allow access to and from Internal, Local Host, and VPN Clients. We will add the protocols next. &lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.buchatech.com/wp-content/uploads/2011/02/image1.png"&gt;&lt;img title="image" border="0" alt="image" src="http://www.buchatech.com/wp-content/uploads/2011/02/image_thumb1.png" width="480" height="121" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;h5&gt;2. Define protocols in ISA/TMG for DPM traffic. &lt;/h5&gt;  &lt;p&gt;Now you need to add a bunch of protocols to your DPM access rule. Some of these protocols already exist and some of the protocols will be custom therefore you will need to create them. I will show you what needs to be created in the custom protocols. &lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Protocols that need to be added in your access rule for DPM in ISA 2006 / TMG 2010 are:&lt;/strong&gt;&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;DNS &lt;/li&gt;    &lt;li&gt;DPMRA (Custom protocol see the ports that need to be added for this below) &lt;/li&gt;    &lt;li&gt;Kerberos-Sec (TCP) &lt;/li&gt;    &lt;li&gt;Kerberos-Sec (UDP) &lt;/li&gt;    &lt;li&gt;NetBIOS Datagram &lt;/li&gt;    &lt;li&gt;NetBIOS Name Service &lt;/li&gt;    &lt;li&gt;NetBIOS Session &lt;/li&gt;    &lt;li&gt;RPC Server (all interfaces)(This is DCOM) &lt;/li&gt;    &lt;li&gt;RPC-UUIDS (This is a custom protocol that contains UUID’s for DPM) &lt;/li&gt;    &lt;li&gt;SMB 445 (Custom protocol for service message block) &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;a href="http://www.buchatech.com/wp-content/uploads/2011/02/image2.png"&gt;&lt;img title="image" border="0" alt="image" src="http://www.buchatech.com/wp-content/uploads/2011/02/image_thumb2.png" width="235" height="244" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Here are the ports that are used in the above protocols: &lt;/strong&gt;&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;DNS 53/UDP &lt;/li&gt;    &lt;li&gt;DPMRA 3148/TCP 3149/TCP 5718TCP 5719/TCP – 3148/UDP 3149/UDP 5718/UDP 5719/UDP &lt;/li&gt;    &lt;li&gt;Kerberos 88/UDP 88/TCP &lt;/li&gt;    &lt;li&gt;NetBIOS 137/UDP 138/UDP 139/TCP &lt;/li&gt;    &lt;li&gt;DCOM (RPC Server) 135/TCP Dynamic &lt;/li&gt;    &lt;li&gt;SMB 445/TCP &lt;/li&gt;    &lt;li&gt;RPC-UUIDS&amp;#160; 135/TCP (This protocol also needs the UUID’s for DPM added to it.) &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;strong&gt;In the RPC-UUIDS custom protocol the following UUID’s need to be added: &lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;MSDPM AC:&lt;/strong&gt;&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;{C4EBD674-1457-4B79-BE30-B04735AED9D1} &lt;/li&gt;    &lt;li&gt;{A3B9D3F4-2477-4F95-B2D1-F75B0FDF2A2F} &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;strong&gt;DPM RA:&lt;/strong&gt;&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;{DA6AA17A-D61C-4E9C-8CEA-DB25DEA52A95} &lt;/li&gt;    &lt;li&gt;{2DF31D97-33CC-4966-8FF9-F47C90F7D0F3} &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;strong&gt;MSDPM:&lt;/strong&gt;&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;{27F60283-447F-4D5F-AA84-F45D09BD06EF} &lt;/li&gt;    &lt;li&gt;{8D8C691A-AFE6-4EA3-A6B2-F3E5EF1BD0CA} &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;strong&gt;DPM LA:&lt;/strong&gt;&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;{1B308A4A-FFEC-4C85-957C-53AA1DCC696F} &lt;/li&gt;    &lt;li&gt;{9E6C5356-B180-4295-888C-5A99E505420F} &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;When you are done you should have a total of 8 UUID’s like in the following screen shot. &lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.buchatech.com/wp-content/uploads/2011/02/image3.png"&gt;&lt;img title="image" border="0" alt="image" src="http://www.buchatech.com/wp-content/uploads/2011/02/image_thumb3.png" width="244" height="189" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;TechNet article on DPM and firewall ports: &lt;a href="http://technet.microsoft.com/en-us/library/bb808766.aspx"&gt;http://technet.microsoft.com/en-us/library/bb808766.aspx&lt;/a&gt; .&lt;/p&gt;  &lt;h5&gt;3. Loosen up RPC security&lt;/h5&gt;  &lt;p&gt;By default ISA / TMG enforces strict RPC security on all firewall rules and on the system policy. We need to loosen this security some in order for DPM traffic to flow between the DPM agents and the DPM server through the firewall. This needs to be done on the DPM access rule and your VPN access rule. Here are the steps:&lt;/p&gt;  &lt;p&gt;Locate your access rule in the firewall list and right click on it. Select Configure RPC filter. &lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.buchatech.com/wp-content/uploads/2011/02/image7.png"&gt;&lt;img title="image" border="0" alt="image" src="http://www.buchatech.com/wp-content/uploads/2011/02/image_thumb7.png" width="502" height="226" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;A dialog window will pop up. Uncheck Enforce strict RPC compliance. Click OK. &lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.buchatech.com/wp-content/uploads/2011/02/image5.png"&gt;&lt;img title="image" border="0" alt="image" src="http://www.buchatech.com/wp-content/uploads/2011/02/image_thumb5.png" width="219" height="244" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;In All Firewall Policy make sure that your access rule for DPM is at the top of the firewall rules. To do this&amp;#160; right-click the access rule for DPM, and then click Move Up. Keep doing this until it is listed at the top of the list.&lt;/p&gt;  &lt;p&gt;Make sure to apply your changes in ISA. Click Apply in the top pane of ISA/TMG&lt;em&gt; &lt;/em&gt;to save your changes and update the configuration.You should now be able to communicate from DPM to clients or Secondary DPM servers offsite through VPN. &lt;/p&gt;  &lt;p&gt;For more information Microsoft has created a video on this process: &lt;a href="http://blogs.technet.com/b/dpm/archive/2010/12/06/new-video-tmg-setup-for-dpm-communication.aspx"&gt;http://blogs.technet.com/b/dpm/archive/2010/12/06/new-video-tmg-setup-for-dpm-communication.aspx&lt;/a&gt; .&lt;/p&gt;&lt;img src="http://owsug.ca/aggbug.aspx?PostID=2880" width="1" height="1"&gt;</content><author><name>islam</name><uri>http://owsug.ca/members/islam.aspx</uri></author></entry><entry><title>Building Custom Reports in DPM</title><link rel="alternate" type="text/html" href="http://owsug.ca/blogs/islamgomaa/archive/2011/02/20/Building-Custom-Reports-in-DPM.aspx" /><id>http://owsug.ca/blogs/islamgomaa/archive/2011/02/20/Building-Custom-Reports-in-DPM.aspx</id><published>2011-02-21T05:45:10Z</published><updated>2011-02-21T05:45:10Z</updated><content type="html">&lt;p&gt;&lt;a href="http://www.buchatech.com/2011/01/building-custom-reports-in-dpm/" target="_blank"&gt;From Steve’s Blog&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;You need to get detailed reports on your Data Protection Manager. The reports that are included with DPM are not enough and do not contain the data that you need to report on.&lt;/p&gt;  &lt;h5&gt;The Solution:&lt;/h5&gt;  &lt;p&gt;There is a way to create custom reports for DPM. I am not a SQL guy and will never claim to be but I was still able to figure out how to generate custom reports for DPM thanks to Microsoft SQL reporting services. Let’s cover the process of doing this.&lt;/p&gt;  &lt;h6&gt;The DPM Report Views&lt;/h6&gt;  &lt;p&gt;Views are like tables in SQL in the way they look. Views can be considered virtual tables that pull data from multiple tables. They dynamically generate their data when the view is referenced. Someone typically will build a view for non-SQL users that do not know how to write SQL queries but need to pull data together.&lt;/p&gt;  &lt;p&gt;Microsoft has included a bunch of SQL views in the DPM database by default. They included these so that DPM administrators could create custom reports. These Custom Report Views for DPM can be found here: &lt;a href="http://technet.microsoft.com/en-us/library/ff399120.aspx"&gt;http://technet.microsoft.com/en-us/library/ff399120.aspx&lt;/a&gt; . On that link it will also describe what type of data each view will give you in your report. This is what the views look like and where they are stored in SQL management studio.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image002.jpg"&gt;&lt;img title="clip_image002" border="0" alt="clip_image002" src="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image002_thumb.jpg" width="244" height="221" /&gt;&lt;/a&gt;&lt;strong&gt; &lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;These views need to be used by SQL Reporting Services to generate the custom DPM reports.&lt;/p&gt;  &lt;h6&gt;Accessing and Setting up Reporting Services for DPM:&lt;/h6&gt;  &lt;p&gt;SQL Server Reporting Services (SRS) is a web based tool that resides on a SQL server and can be used to generate reports. These reports can be interactive, can be printed and can be exported into other formats. It is accessed through a web services interface. It gives a user the power to generate custom reports from data stored in SQL databases.&lt;/p&gt;  &lt;p&gt;If your DPM is using a local SQL instance you will find the DPM SQL Reporting Services site here: &lt;a href="http://NAMEOFYOURDPMSERVER/Reports_MSDPM2010/"&gt;http://NAMEOFYOURDPMSERVER/Reports_MSDPM2010/&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;The Report Builder is typically what is used to design and run the DPM reports. By default SQL Reporting Services comes with Report Builder 1.0. Report Builder 1.0 cannot access SQL views so that version of the tool will not work. We need to upgrade the Report Builder to versions 2.0 or higher. The latest version is 3.0. In this example we are going to use 2.0. The first step is to download the newer version of Report Builder that you are going to use and install this on your DPM server (or the server that SQL is on.) Then what we need to do in is change the The SQL Reporting Services site Report Builder from opening version 1.0 to opening 2.0. Follow these steps to change this to open up to 2.0.&lt;/p&gt;  &lt;p&gt;Setting the default Report Builder&lt;/p&gt;  &lt;p&gt;1.Open a web browser and go to the SQL Reporting Services site.&lt;/p&gt;  &lt;p&gt;2.On the Home screen click Site Settings in the top right.&lt;/p&gt;  &lt;p&gt;3.In the General tab, change the Custom Report Builder launch URL to &lt;strong&gt;&lt;em&gt;/ReportBuilder/ReportBuilder_2_0_0_0.application&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;4.Click Apply&lt;/p&gt;  &lt;h6&gt;Building a custom DPM Report:&lt;/h6&gt;  &lt;p&gt;Ok lets go through the steps of creating a custom DPM report using SQL Reporting Services and Report Builder.&lt;/p&gt;  &lt;p&gt;1. Go to &lt;a href="http://NAMEOFYOURDPMSERVER/Reports_MSDPM2010/"&gt;http://NAMEOFYOURDPMSERVER/Reports_MSDPM2010/&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;I recommend creating a folder for your custom reports.&lt;/p&gt;  &lt;p&gt;a) To do this click on New Folder in the SRS site.&lt;/p&gt;  &lt;p&gt;b) Give it a name and click the Ok button.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image004.jpg"&gt;&lt;img title="clip_image004" border="0" alt="clip_image004" src="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image004_thumb.jpg" width="233" height="155" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;c) You will now see this listed along with the DPMReports folder. (The DPMReports folder is where the default DPM reports live.)&lt;/p&gt;  &lt;p&gt;2. Now click on the new folder that you created.&lt;/p&gt;  &lt;p&gt;3. Click on New Data Source. We need to create a connect to the SQL DPM database.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;NOTE:&lt;/strong&gt; This is the typical string to your data source: &lt;strong&gt;Data Source=BUCHDPM\MSDPM2010;Initial Catalog=DPMDB&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Use the settings in the following screenshot. You also need to make sure either the account you are using has permissions to the DPM database or else you need to provide the credentials of an account that has the proper access. Click Ok when you are done.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image006.jpg"&gt;&lt;img title="clip_image006" border="0" alt="clip_image006" src="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image006_thumb.jpg" width="244" height="211" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;4. Now you can build a report. Click on the Report Builder button. This will launch the Report Builder application.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image008.jpg"&gt;&lt;img title="clip_image008" border="0" alt="clip_image008" src="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image008_thumb.jpg" width="244" height="65" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;5. In this example we are going to create a Chart based report. Click on Chart.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image010.jpg"&gt;&lt;img title="clip_image010" border="0" alt="clip_image010" src="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image010_thumb.jpg" width="244" height="138" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;6. You should see the datasource that you created. Select the datasource to highlight it. Click Next.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image012.jpg"&gt;&lt;img title="clip_image012" border="0" alt="clip_image012" src="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image012_thumb.jpg" width="244" height="177" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;7. On this screen is where you can access the DPM views. Expand Views under Database view.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image014.jpg"&gt;&lt;img title="clip_image014" border="0" alt="clip_image014" src="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image014_thumb.jpg" width="119" height="67" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;8. In this example we are going to generate a report to show us what computers have the DPM agent installed and the version that is installed. Select the DPM views that contain the data you will need in your report. Click Next.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image016.jpg"&gt;&lt;img title="clip_image016" border="0" alt="clip_image016" src="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image016_thumb.jpg" width="244" height="178" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;9. Choose your chart type and click Next.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image018.jpg"&gt;&lt;img title="clip_image018" border="0" alt="clip_image018" src="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image018_thumb.jpg" width="244" height="177" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;10. The AvailableFields contain the data that you can add to your chart. To add just drag a field from the available fields area to either Categories, Series, or Values. Click Next.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&lt;a href="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image020.jpg"&gt;&lt;img title="clip_image020" border="0" alt="clip_image020" src="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image020_thumb.jpg" width="244" height="176" /&gt;&lt;/a&gt;&lt;strong&gt; &lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;a. &lt;/strong&gt;&lt;strong&gt;Categories&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Lists the fields that are in column groups.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;b. &lt;/strong&gt;&lt;strong&gt;Series&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Lists the fields that are in row groups.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;c. &lt;/strong&gt;&lt;strong&gt;Values&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Lists the fields that display as values.&lt;/p&gt;  &lt;p&gt;11. Choose your chart style. Click Finish.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image022.jpg"&gt;&lt;img title="clip_image022" border="0" alt="clip_image022" src="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image022_thumb.jpg" width="244" height="176" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;12. The Report Build is similar to Microsoft Word so it is easy to work with. The challenging part if getting the data laid out the way you want. This will take some time of playing around with it to get the look you want. Build and customize your report.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image024.jpg"&gt;&lt;img title="clip_image024" border="0" alt="clip_image024" src="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image024_thumb.jpg" width="244" height="143" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;13. Click on Run to generate your report. The report may take some time to generate depending on the amount of data you are pulling from SQL. You will see status update as the report is being generated.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image026.jpg"&gt;&lt;img title="clip_image026" border="0" alt="clip_image026" src="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image026_thumb.jpg" width="244" height="188" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;14. You will then see the the finished report with the live data.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image028.jpg"&gt;&lt;img title="clip_image028" border="0" alt="clip_image028" src="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image028_thumb.jpg" width="244" height="163" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;h6&gt;Building a custom DPM Report:&lt;/h6&gt;  &lt;p&gt;Now you have your report but do you use this same report so that you don’t have to recreate it every time? No problem you can save the report as a file or on the SRS site. Note that you cannot view these reports in DPM reporting. You can only see these custom reports by opening the report file in Report Builder or on the SRS site. It is more convenient to host these reports on the SRS site. To save the report to the SRS site follow these steps:&lt;/p&gt;  &lt;p&gt;1. Click on the Orb in the upper left hand corner. Choose Save As.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image030.jpg"&gt;&lt;img title="clip_image030" border="0" alt="clip_image030" src="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image030_thumb.jpg" width="214" height="234" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;2. Save the report to your SRS site. Be sure the your SRS site is listed in the Look in: field and then click Save. It is recommended to save this in the custom folder that we created earlier on our SRS site.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image032.jpg"&gt;&lt;img title="clip_image032" border="0" alt="clip_image032" src="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image032_thumb.jpg" width="244" height="168" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;3. Now browse to your SRS site. Click on the custom report folder we created earlier. You will see the report.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image034.jpg"&gt;&lt;img title="clip_image034" border="0" alt="clip_image034" src="http://www.buchatech.com/wp-content/uploads/2011/02/clip_image034_thumb.jpg" width="244" height="55" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;4. Click on the new report to view the report in the browser.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.buchatech.com/wp-content/uploads/2011/01/clip_image036.jpg"&gt;&lt;img title="clip_image036" border="0" alt="clip_image036" src="http://www.buchatech.com/wp-content/uploads/2011/01/clip_image036_thumb.jpg" width="244" height="231" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;To see this report or other reports you create just open them up on the SRS site. The data will be live as the report is connected to your DPM database through the datasource connection. I am sure that a SQL guru could go in and do more with the data and these SQL tools to generate some really cool reports. This information and example is intended to get DPM Administrators who typically are not SQL gurus up to speed on DPM custom reporting. Essentially this should be enough to get you going on creating custom DPM reports using the views as well as give you a basic understanding of SQL Reporting Services.&lt;/p&gt;&lt;img src="http://owsug.ca/aggbug.aspx?PostID=2879" width="1" height="1"&gt;</content><author><name>islam</name><uri>http://owsug.ca/members/islam.aspx</uri></author></entry></feed>