<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Chad Eldridge</title>
	<atom:link href="http://chadeldridge.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://chadeldridge.com</link>
	<description></description>
	<lastBuildDate>Tue, 15 Mar 2011 17:22:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>VSS contains blank writers list</title>
		<link>http://chadeldridge.com/2011/03/15/vss-contains-blank-writers-list/</link>
		<comments>http://chadeldridge.com/2011/03/15/vss-contains-blank-writers-list/#comments</comments>
		<pubDate>Tue, 15 Mar 2011 17:22:50 +0000</pubDate>
		<dc:creator>chadeldridge</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://chadeldridge.com/?p=364</guid>
		<description><![CDATA[Basically what happens is there are several things on 2008 server that cause a corrupted Reg entry and then a lot of other entries spawn off the bad one.  Since the key created is technically correct but made of the wrone reg type it causes the issue and the software installer doesn’t catch it as [...]]]></description>
			<content:encoded><![CDATA[<p>Basically what happens is there are several things on 2008 server that cause a corrupted Reg entry and then a lot of other entries spawn off the bad one.  Since the key created is technically correct but made of the wrone reg type it causes the issue and the software installer doesn’t catch it as being a problem.  So If you start seeing VSS errors on a server do the following:</p>
<p>&nbsp;</p>
<p>In CMD mode type “vssadmin list writers”  if it returns data then this is not your issue, if it returns nothing, then you have the problem.</p>
<p>&nbsp;</p>
<p>If nothing is returned do the following:</p>
<p>&nbsp;</p>
<p>1.       Remove any software that uses the VSS writer service, at this point all I can guess would be DPM agent or the BackupExec agent.  SQL and other writers that use it do not seem to cause the issue</p>
<p>2.       Open regedit and find this key:  HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\EventSystem\{26c409cc-ae86-11d1-b616-00805fc79216}\Subscriptions</p>
<p>3.       DELETE the entire key and all its subs</p>
<p>4.       Close regedit and then create a batch file of the following commands, then run it.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>net stop &#8220;System Event Notification Service&#8221;</p>
<p>net stop &#8220;COM+ Event System&#8221;</p>
<p>net stop &#8220;Microsoft Software Shadow Copy Provider&#8221;</p>
<p>net stop &#8220;Volume Shadow Copy&#8221;</p>
<p>cd /d %windir%\system32</p>
<p>net stop vss</p>
<p>net stop swprv</p>
<p>regsvr32 /s ole32.dll</p>
<p>regsvr32 /s oleaut32.dll</p>
<p>regsvr32 /s vss_ps.dll</p>
<p>vssvc /register</p>
<p>regsvr32 /s /i swprv.dll</p>
<p>regsvr32 /s /i eventcls.dll</p>
<p>regsvr32 /s es.dll</p>
<p>regsvr32 /s stdprov.dll</p>
<p>regsvr32 /s vssui.dll</p>
<p>regsvr32 /s msxml3.dll</p>
<p>net start &#8220;System Event Notification Service&#8221;</p>
<p>net start &#8220;COM+ Event System&#8221;</p>
<p>net start &#8220;Microsoft Software Shadow Copy Provider&#8221;</p>
<p>net start &#8220;Volume Shadow Copy&#8221;</p>
<p>&nbsp;</p>
<p>5.       Reboot the machine</p>
<p>6.       Create another batch file with the following commands and run it</p>
<p>&nbsp;</p>
<p>cd /d %windir%\system32</p>
<p>net stop vss</p>
<p>net stop swprv</p>
<p>regsvr32 ole32.dll</p>
<p>regsvr32 oleaut32.dll</p>
<p>regsvr32 /i eventcls.dll</p>
<p>regsvr32 vss_ps.dll</p>
<p>vssvc /register</p>
<p>regsvr32 /i swprv.dll</p>
<p>regsvr32 es.dll</p>
<p>regsvr32 stdprov.dll</p>
<p>regsvr32 vssui.dll</p>
<p>regsvr32 msxml.dll</p>
<p>regsvr32 msxml3.dll</p>
<p>regsvr32 msxml4.dll</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>7.       Type “vssadmin list writers” and you should see all the VSS writers again.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fchadeldridge.com%2F2011%2F03%2F15%2Fvss-contains-blank-writers-list%2F&amp;title=VSS%20contains%20blank%20writers%20list" id="wpa2a_2">Share/Bookmark</a></p>]]></content:encoded>
			<wfw:commentRss>http://chadeldridge.com/2011/03/15/vss-contains-blank-writers-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove Orphaned agents from DPM2010</title>
		<link>http://chadeldridge.com/2011/03/15/remove-orphaned-agents-from-dpm2010/</link>
		<comments>http://chadeldridge.com/2011/03/15/remove-orphaned-agents-from-dpm2010/#comments</comments>
		<pubDate>Tue, 15 Mar 2011 16:51:48 +0000</pubDate>
		<dc:creator>chadeldridge</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://chadeldridge.com/?p=357</guid>
		<description><![CDATA[DId you remove/reinstall a Server which had a DPM Agent installed, without removing it from DPM before? In DPM 2007 you could easily go on uninstall, the uninstall would fail, but it will ask you afterwards if you want to remove the agent from the database.  In DPM 2010 this behavior changed, the uninstall fails, and [...]]]></description>
			<content:encoded><![CDATA[<p>DId you remove/reinstall a Server which had a DPM Agent installed, without removing it from DPM before?</p>
<p>In DPM 2007 you could easily go on uninstall, the uninstall would fail, but it will ask you afterwards if you want</p>
<p>to remove the agent from the database.  In DPM 2010 this behavior changed, the uninstall fails, and no option to remove the the orphaned agents.</p>
<p>This is what you may need to do if you get the following error.</p>
<p>o    C:\Program  Files\Microsoft DPM\DPM\bin\Remove-ProductionServer.ps1 : DPM was  unable to remove the protected computer DPM02 from one of the following  groups:</p>
<p>1. Distributed COM users<br />
2. DPMRADmTrustedMachines<br />
3. MSDPMTrustedMachines<br />
At line:1 char:30<br />
+ .\Remove-ProductionServer.ps1 &lt;&lt;&lt;&lt;<br />
+ CategoryInfo          : NotSpecified: (:) [Write-Error], WriteErrorException<br />
+ FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException,Remove-ProductionServer.ps1</p>
<p><strong>Now  remove all SIDs from the above groups, since the server was no longer  in there by name due to domain removal.  When you reran the command with  the FQDN, you may receive the following error:</strong></p>
<p>There is failure while removing production server<br />
C:\Program  Files\Microsoft DPM\DPM\bin\Remove-ProductionServer.ps1 : DPM was  unable to remove the protected computer DPM02.mydomain.com.<br />
At line:1 char:30<br />
+ .\Remove-ProductionServer.ps1 &lt;&lt;&lt;&lt;<br />
+ CategoryInfo          : NotSpecified: (:) [Write-Error], WriteErrorException<br />
+ FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException,Remove-ProductionServer.ps1</p>
<p><strong>However, after refreshing the console, the agent is now removed.</strong></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fchadeldridge.com%2F2011%2F03%2F15%2Fremove-orphaned-agents-from-dpm2010%2F&amp;title=Remove%20Orphaned%20agents%20from%20DPM2010" id="wpa2a_4">Share/Bookmark</a></p>]]></content:encoded>
			<wfw:commentRss>http://chadeldridge.com/2011/03/15/remove-orphaned-agents-from-dpm2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Review of Roku XD Player</title>
		<link>http://chadeldridge.com/2010/12/23/my-review-of-roku-xd-player/</link>
		<comments>http://chadeldridge.com/2010/12/23/my-review-of-roku-xd-player/#comments</comments>
		<pubDate>Fri, 24 Dec 2010 02:32:35 +0000</pubDate>
		<dc:creator>chadeldridge</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://chadeldridge.com/2010/12/23/my-review-of-roku-xd-player/</guid>
		<description><![CDATA[Originally submitted at Roku The new XD steps it up with 1080p HD video quality and extended-range wireless. Roku XD Player Great little device, great price By Chade from columbus ohio on 12/23/2010 &#160; 4out of 5 Pros: Easy to use, Easy to set up, High quality picture, Great value, Compact, Built in Wi-Fi Cons: [...]]]></description>
			<content:encoded><![CDATA[<div class="hreview">
<div class="item">
<p><a href="http://www.roku.com/roku-products">Originally submitted at Roku</a></p>
<div><img src="http://images.powerreviews.com/images_products/02/82/9491013_100.jpg" class="photo" align="left" style="margin: 0 0.5em 0 0">
<p style="margin-top:0">The new XD steps it up with 1080p HD video quality and extended-range wireless.</p>
</div>
<p><a href="http://www.roku.com/roku-products" style="display: none;" class="url fn"><span class="fn">Roku XD Player</span></a></div>
<p><br clear="left">
<p><strong class="summary">Great little device,  great price</strong></p>
<div>By <strong>Chade</strong> from <strong>columbus ohio</strong> on <strong><abbr title="20101223T1200-0800" class="dtreviewed" style="border: none; text-decoration: none;">12/23/2010</abbr></strong></div>
<p>
<div style="margin: 0.5em 0; height: 15px; width: 83px; background-image: url(http://images.powerreviews.com/images/stars_small.gif); background-position: 0px -144px;" class="prStars prStarsSmall">&nbsp;</div>
</p>
<div style="display: none"><span class="rating">4</span>out of 5</div>
<p><strong>Pros: </strong>Easy to use, Easy to set up, High quality picture, Great value, Compact, Built in Wi-Fi</p>
<p><strong>Cons: </strong>Want more video choices, Needs more cache</p>
<p><strong>Best Uses: </strong>Secondary TV, Living room, Primary TV</p>
<p><strong>Describe Yourself: </strong>Early adopter, Casual User, Power User, Netflix fan, Home entertainment enthusiast, Technophile</p>
<p style="margin-top:1em" class="description">Add more than 64mb to this device and it would be perfect.</p>
<p style="margin-top:0.5em">(<a href="http://www.powerreviews.com/legal/terms_of_use.html" rel="license">legalese</a>)</p>
</div>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fchadeldridge.com%2F2010%2F12%2F23%2Fmy-review-of-roku-xd-player%2F&amp;title=My%20Review%20of%20Roku%20XD%20Player" id="wpa2a_6">Share/Bookmark</a></p>]]></content:encoded>
			<wfw:commentRss>http://chadeldridge.com/2010/12/23/my-review-of-roku-xd-player/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ATI Catalyst and mom.implementation error</title>
		<link>http://chadeldridge.com/2010/09/03/ati-catalyst-and-mom-implementation-error/</link>
		<comments>http://chadeldridge.com/2010/09/03/ati-catalyst-and-mom-implementation-error/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 13:57:04 +0000</pubDate>
		<dc:creator>chadeldridge</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://chadeldridge.com/?p=302</guid>
		<description><![CDATA[This seems to keep coming up recently and its extremely annoying.  If you have a machine experiencing this issue, here is what i did to fix the problem. 1.  Uninstall all ATI software via Add/Remove Programs 2. Uninstall and manually reinstall both .net 1.1 and 2.0 using the redistributable packs 3. Download and run the [...]]]></description>
			<content:encoded><![CDATA[<p>This seems to keep coming up recently and its extremely annoying.  If you have a machine experiencing this issue, here is what i did to fix the problem.</p>
<p>1.  Uninstall all ATI software via Add/Remove Programs</p>
<p>2. Uninstall and manually reinstall both .net 1.1 and 2.0 using the redistributable packs</p>
<p>3. Download and run the ATI Cleanup Tool and remove all trace of the ATI apps</p>
<p>4. Download the most recent Catalyst driver for your card and install</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fchadeldridge.com%2F2010%2F09%2F03%2Fati-catalyst-and-mom-implementation-error%2F&amp;title=ATI%20Catalyst%20and%20mom.implementation%20error" id="wpa2a_8">Share/Bookmark</a></p>]]></content:encoded>
			<wfw:commentRss>http://chadeldridge.com/2010/09/03/ati-catalyst-and-mom-implementation-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to force remove McAfee 8.7 and management agent</title>
		<link>http://chadeldridge.com/2010/02/22/how-to-force-remove-mcafee-8-5i-and-management-agent/</link>
		<comments>http://chadeldridge.com/2010/02/22/how-to-force-remove-mcafee-8-5i-and-management-agent/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 20:38:34 +0000</pubDate>
		<dc:creator>chadeldridge</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[EPO]]></category>
		<category><![CDATA[McAfee]]></category>

		<guid isPermaLink="false">http://chadeldridge.com/2010/02/22/how-to-force-remove-mcafee-8-5i-and-management-agent/</guid>
		<description><![CDATA[For some reason once McAfee is controlled by the EPO agent it becomes very difficult to totally uninstall.&#160; For those of you who have contacted me about this, here is your manual force removal guide.&#160; It is basically just 2 steps but if the software fails to uninstall gracefully from Add / Remove Programs, this [...]]]></description>
			<content:encoded><![CDATA[<p>For some reason once McAfee is controlled by the EPO agent it becomes very difficult to totally uninstall.&#160; For those of you who have contacted me about this, here is your manual force removal guide.&#160; It is basically just 2 steps but if the software fails to uninstall gracefully from Add / Remove Programs, this will for sure work.</p>
<p>&#160;</p>
<p>1.&#160; Remove the agent forcefully:&#160; </p>
<p>&quot;c:\program files\mcafee\common framework\frminst.exe&quot; /forceuninstall /silent</p>
<p>2.&#160; Remove the actual McAfee product via its GUID:</p>
<p>msiexec /x {147BCE03-C0F1-4C9F-8157-6A89B6D2D973} /qn</p>
<p>&#160;</p>
<p>Please let me know if that does not clear up your issue.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fchadeldridge.com%2F2010%2F02%2F22%2Fhow-to-force-remove-mcafee-8-5i-and-management-agent%2F&amp;title=How%20to%20force%20remove%20McAfee%208.7%20and%20management%20agent" id="wpa2a_10">Share/Bookmark</a></p>]]></content:encoded>
			<wfw:commentRss>http://chadeldridge.com/2010/02/22/how-to-force-remove-mcafee-8-5i-and-management-agent/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>An interesting stumble upon</title>
		<link>http://chadeldridge.com/2010/02/19/an-interesting-stumble-upon/</link>
		<comments>http://chadeldridge.com/2010/02/19/an-interesting-stumble-upon/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 20:33:02 +0000</pubDate>
		<dc:creator>chadeldridge</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://chadeldridge.com/?p=227</guid>
		<description><![CDATA[Today while sifting through the rif-raf of the interwebs I happened across something I rarely find online.  Someone of my age group who owns and operates a successful business.  Now I am sure there are plenty of people out there in the under 30 range that own and operate businesses, however I have yet to [...]]]></description>
			<content:encoded><![CDATA[<p>Today while sifting through the rif-raf of the interwebs I happened across something I rarely find online.  Someone of my age group who owns and operates a successful business.  Now I am sure there are plenty of people out there in the under 30 range that own and operate businesses, however I have yet to meet many who actually seem to know and understand what they are doing.  Listening to Erin for an hour and being able to carry on a sensible conversation about what we all face in the business world (especially at this age) was a real eye opener.  Since I have been in business I have, like everyone else gone through the ups and downs of what doing business in the tech world can be.  Dealing with clients and vendors and juggling the day to day can be a daunting task.  I want to give her props for doing what she is doing, and seeming to really love it.</p>
<p>She does a weekly show here: <a title="AskErin Live" href="http://www.ustream.tv/channel/bsetc-headquarters---erin-blaskie">http://www.ustream.tv/channel/bsetc-headquarters&#8212;erin-blaskie</a> on ustream and also a simulcast on Justin.tv.  I would advise any young entrepreneur to just stop by and chat a bit.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fchadeldridge.com%2F2010%2F02%2F19%2Fan-interesting-stumble-upon%2F&amp;title=An%20interesting%20stumble%20upon" id="wpa2a_12">Share/Bookmark</a></p>]]></content:encoded>
			<wfw:commentRss>http://chadeldridge.com/2010/02/19/an-interesting-stumble-upon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Outlook 2010 beta</title>
		<link>http://chadeldridge.com/2010/02/19/outlook-2010-beta/</link>
		<comments>http://chadeldridge.com/2010/02/19/outlook-2010-beta/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 18:58:51 +0000</pubDate>
		<dc:creator>chadeldridge</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://chadeldridge.com/?p=221</guid>
		<description><![CDATA[Started to use the Outlook 2010 beta today.&#160; I plan to update this post in the next few days with a detailed descriptions and review of how things are and how they work.&#160; First impressions are good, however I do not see much of a change from the 2007 environment.&#160; The ribbon has for sure [...]]]></description>
			<content:encoded><![CDATA[<p>Started to use the Outlook 2010 beta today.&#160; I plan to update this post in the next few days with a detailed descriptions and review of how things are and how they work.&#160; First impressions are good, however I do not see much of a change from the 2007 environment.&#160; The ribbon has for sure changed to an extent and the coloring of the main theme.&#160; One thing I am seeing right now is that the OCS communicator contact list has been brought into the main client screen.</p>
<p>As for issues within the first hour of use I do have some issues with the way threaded email works.&#160; Threads of non-related email are for some reason being filtered into a single thread instead of threads following a correct hierarchy.&#160; Emails that have no pertinence to each other are now grouped together.&#160; Preferentially I would like to see email threads being sorted by the subject, which is probably a setting I am yet to find.</p>
<p>In the meantime feel free to go download and install it yourself.</p>
<p><a title="Office 2010 Beta" href="http://www.microsoft.com/Office/2010/en/outlook/default.aspx">http://www.microsoft.com/Office/2010/en/outlook/default.aspx</a></p>
<p>&#160;</p>
<p>Edit 1:</p>
<p>Meeting requests have been greatly simplified over the way Outlook 2007 handled them.&#160; Now when you receive a meeting request it will show you your calendar for that period of time directly in the request, thus eliminating your need to switch over to calendar view to verify that time slot.&#160; Here is a screen shot of what that looks like:</p>
<p>&#160;</p>
<p><a href="http://chadeldridge.com/wp-content/uploads/2010/02/image.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://chadeldridge.com/wp-content/uploads/2010/02/image_thumb.png" width="372" height="200" /></a> </p>
<p>&#160;</p>
<p>Edit 2:&#160; </p>
<p>The OCS Client screen embedded into Outlook:</p>
<p>&#160;</p>
<p><a href="http://chadeldridge.com/wp-content/uploads/2010/02/image1.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://chadeldridge.com/wp-content/uploads/2010/02/image_thumb1.png" width="149" height="244" /></a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fchadeldridge.com%2F2010%2F02%2F19%2Foutlook-2010-beta%2F&amp;title=Outlook%202010%20beta" id="wpa2a_14">Share/Bookmark</a></p>]]></content:encoded>
			<wfw:commentRss>http://chadeldridge.com/2010/02/19/outlook-2010-beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WP 2.2 for iPhone</title>
		<link>http://chadeldridge.com/2010/02/19/wp-2-2-for-iphone/</link>
		<comments>http://chadeldridge.com/2010/02/19/wp-2-2-for-iphone/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 18:41:57 +0000</pubDate>
		<dc:creator>chadeldridge</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://chadeldridge.com/?p=218</guid>
		<description><![CDATA[Just to let all those who use WordPress 2.2 for the iPhone has a small bug to be aware of.  If you use the iPhone to post pictures to your WordPress site the ability to resize pictures in the post is broken.  Your pictures will be posted at full size.  This is a bug they [...]]]></description>
			<content:encoded><![CDATA[<p>Just to let all those who use WordPress 2.2 for the iPhone has a small bug to be aware of.  If you use the iPhone to post pictures to your WordPress site the ability to resize pictures in the post is broken.  Your pictures will be posted at full size.  This is a bug they are aware of and supposedly fixing in the next release.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fchadeldridge.com%2F2010%2F02%2F19%2Fwp-2-2-for-iphone%2F&amp;title=WP%202.2%20for%20iPhone" id="wpa2a_16">Share/Bookmark</a></p>]]></content:encoded>
			<wfw:commentRss>http://chadeldridge.com/2010/02/19/wp-2-2-for-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft DPM &#8211; Move location of System State Backup</title>
		<link>http://chadeldridge.com/2009/11/12/microsoft-dpm-move-location-of-system-state-backup/</link>
		<comments>http://chadeldridge.com/2009/11/12/microsoft-dpm-move-location-of-system-state-backup/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 14:35:41 +0000</pubDate>
		<dc:creator>chadeldridge</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://chadeldridge.com/2009/11/12/microsoft-dpm-move-location-of-system-state-backup/</guid>
		<description><![CDATA[Move DPM_SYSTEM_STATE to other location Filed Under (Data Protection Manager) by Just An Admin on 01-12-2008 When using Data Protection Manager to back-up the system state of your servers you will find that a folder with the name DPM_SYSTEM_STATE is created on your C:\ drive on the protected server. When disk space is insufficient to [...]]]></description>
			<content:encoded><![CDATA[<p>Move DPM_SYSTEM_STATE to other location<br />
Filed Under (Data Protection Manager) by Just An Admin on 01-12-2008</p>
<p>When using Data Protection Manager to back-up the system state of your servers you will find that a folder with the name DPM_SYSTEM_STATE is created on your C:\ drive on the protected server. When disk space is insufficient to support this additional data, you can alter the location where this data is stored:</p>
<p>On the Protected Server:</p>
<p>* Edit the %system drive%\Program Files\Microsoft Data Protection Manager\DPM\Datasources\PSDataSourceConfig.xml file<br />
* You will find the default the path is %system drive%\.<br />
* Change it to the appropriate location and save the file.</p>
<p>On the DPM Server:</p>
<p>* Modify the Protection Group<br />
* Run Consistency Check on the System State datasource</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fchadeldridge.com%2F2009%2F11%2F12%2Fmicrosoft-dpm-move-location-of-system-state-backup%2F&amp;title=Microsoft%20DPM%20%26%238211%3B%20Move%20location%20of%20System%20State%20Backup" id="wpa2a_18">Share/Bookmark</a></p>]]></content:encoded>
			<wfw:commentRss>http://chadeldridge.com/2009/11/12/microsoft-dpm-move-location-of-system-state-backup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft fails … again … Office Communication Server broken by KB974571</title>
		<link>http://chadeldridge.com/2009/10/21/microsoft-fails-%e2%80%a6-again-%e2%80%a6-office-communication-server-broken-by-kb974571/</link>
		<comments>http://chadeldridge.com/2009/10/21/microsoft-fails-%e2%80%a6-again-%e2%80%a6-office-communication-server-broken-by-kb974571/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 20:24:48 +0000</pubDate>
		<dc:creator>chadeldridge</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Communication Server]]></category>
		<category><![CDATA[Fixes]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft Communication Server]]></category>
		<category><![CDATA[MSOCS]]></category>

		<guid isPermaLink="false">http://chadeldridge.com/?p=174</guid>
		<description><![CDATA[Microsoft released a “we screwed up” email to its partners on the 15th saying in no certain terms that update KB874571 was the cause for the mysterious errors being experienced by a large majority of their customers.  It seems that a bug in the update also changed something in MSOCS server which made it believe [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft released a “we screwed up” email to its partners on the 15th saying in no certain terms that update KB874571 was the cause for the mysterious errors being experienced by a large majority of their customers.  It seems that a bug in the update also changed something in MSOCS server which made it believe it was on evaluation and expired.  The problem can be noted by the failure of the Front End and Edge services from starting.  The event log will show the services failing to start due to the evaluation period being over.</p>
<p>Currently the only resolution to the issue is to manually back out this update via add/remove programs.  You will receive an error message about other updates depending on the one you are removing.  Ignore those and remove it anyway.  Reboot.  This has fixed the issue in all environments here and should work for you as well.  On the 15th they released a statement saying they were working on the issue and should have it resolved by the next day.  We are now almost a week out and still no posting on the resolution to the issue.</p>
<p>Event Log entries:</p>
<p>Event Type:        Error<br />
Event Source:    Live Communications Server<br />
Event Category:                (1000)<br />
Event ID:              12290<br />
Date:                     10/13/2009<br />
Time:                     8:28:57 PM<br />
User:                     N/A<br />
Computer:<br />
Description:<br />
The evaluation period for Microsoft Office Live Communication Server 2005 has expired. Obtain the released version of this product and upgrade to the non-evaluation version by running setup.exe</p>
<p>You can visit the MS OCS Team blog here: http://communicationsserverteam.com/archive/2009/10/14/632.aspx</p>
<p>Hopefully there will be more information soon on a positive fix for the issue.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fchadeldridge.com%2F2009%2F10%2F21%2Fmicrosoft-fails-%25e2%2580%25a6-again-%25e2%2580%25a6-office-communication-server-broken-by-kb974571%2F&amp;title=Microsoft%20fails%20%E2%80%A6%20again%20%E2%80%A6%20Office%20Communication%20Server%20broken%20by%20KB974571" id="wpa2a_20">Share/Bookmark</a></p>]]></content:encoded>
			<wfw:commentRss>http://chadeldridge.com/2009/10/21/microsoft-fails-%e2%80%a6-again-%e2%80%a6-office-communication-server-broken-by-kb974571/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

