<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Tamerz.com</title>
	
	<link>http://www.tamerz.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Fri, 08 Apr 2011 21:55:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Tamerz" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="tamerz" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Exchange 2010 – The WinRM client cannot process the request.</title>
		<link>http://www.tamerz.com/?p=26</link>
		<comments>http://www.tamerz.com/?p=26#comments</comments>
		<pubDate>Fri, 08 Apr 2011 21:55:12 +0000</pubDate>
		<dc:creator>Tamerz</dc:creator>
				<category><![CDATA[IT]]></category>

		<guid isPermaLink="false">http://www.tamerz.com/?p=26</guid>
		<description><![CDATA[We suddenly could not connect with the Exchange 2010 Management Console or Management Shell. Any time we would try to connect with it, we would get the following error message: The WinRM client cannot process the request. It cannot determine the content type of the HTTP response from the destination computer. There are quite a [...]]]></description>
			<content:encoded><![CDATA[<p>We suddenly could not connect with the Exchange 2010 Management Console or Management Shell. Any time we would try to connect with it, we would get the following error message:</p>
<p><code>The WinRM client cannot process the request. It cannot determine the content type of the HTTP response from the destination computer.</code></p>
<p>There are quite a few people having the same issue, but what worked for everyone else was just not working for me. I tried all the suggestions mentioned here:</p>
<p><a title="http://blogs.technet.com/b/exchange/archive/2010/02/04/3409289.aspx" href="http://blogs.technet.com/b/exchange/archive/2010/02/04/3409289.aspx" target="_blank">http://blogs.technet.com/b/exchange/archive/2010/02/04/3409289.aspx</a></p>
<p>I tried everything mentioned in that article but it still did not work. Another issue with it, is that in order to run the &#8220;Get-User&#8221; and &#8220;Set-User&#8221; commands to check the user permissions, you need to open the Exchange Management Shell which was my problem to begin with. A workaround is to open a regular PowerShell and then run the following command:</p>
<p><code>Add-PSSnapin Microsoft.Exchange.Management.PowerShell.E2010</code></p>
<p>This allowed the use of the Exchange Management cmdlets. This then showed us that the user accounts had proper permissions and that this was not the issue.</p>
<p>The way I ended up resolving it was by using that same PowerShell to remove the PowerShell Virtual Directory from IIS:</p>
<p><code>&gt; Get-PowerShellVirtualDirectory</code></p>
<p><code>Name<br />
----<br />
PowerShell (Default Web Site)</code></p>
<p><code>&gt; Remove-PowerShellVirtualDirectory "PowerShell (Default Web Site)"<br />
&gt; New-PowerShellVirtualDirectory<br />
cmdlet New-PowerShellVirtualDirectory at command pipeline position 1<br />
Supply values for the following parameters:<br />
Name: PowerShell</p>
<p></code></p>
<p>&nbsp;</p>
<p><code>Name<br />
----<br />
PowerShell (Default Web Site)</code></p>
<p>After it created the new PowerShell directory, I had to open up IIS Manager and navigate to the PowerShell virtual directory. Go to the SSL settings, and make sure that &#8220;Require SSL&#8221; is not checked and hit Apply.</p>
<p>This resolved the issue for us after nothing else did. Hopefully it can help someone else out. I do recommend following the steps in the linked article first since that seems to resolve it for most people.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tamerz.com/?feed=rss2&amp;p=26</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Python, PyQt, and PyDev for Eclipse</title>
		<link>http://www.tamerz.com/?p=22</link>
		<comments>http://www.tamerz.com/?p=22#comments</comments>
		<pubDate>Fri, 24 Sep 2010 20:27:55 +0000</pubDate>
		<dc:creator>Tamerz</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.tamerz.com/?p=22</guid>
		<description><![CDATA[I have lately been using Eclipse with the PyDev module to do Python programming. I was having a hard time figuring out how to get the PyQt libraries working correctly with it when I ran across this post: http://popdevelop.com/2010/04/setting-up-ide-and-creating-a-cross-platform-qt-python-gui-application/]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.tamerz.com/wp-content/uploads/2010/09/python-logo.gif"><img class="alignnone size-full wp-image-23" title="python-logo" src="http://www.tamerz.com/wp-content/uploads/2010/09/python-logo.gif" alt="" width="211" height="71" /></a></p>
<p>I have lately been using Eclipse with the PyDev module to do Python programming. I was having a hard time figuring out how to get the PyQt libraries working correctly with it when I ran across this post:</p>
<p><a title="http://popdevelop.com/2010/04/setting-up-ide-and-creating-a-cross-platform-qt-python-gui-application/" href="http://popdevelop.com/2010/04/setting-up-ide-and-creating-a-cross-platform-qt-python-gui-application/" target="_blank">http://popdevelop.com/2010/04/setting-up-ide-and-creating-a-cross-platform-qt-python-gui-application/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tamerz.com/?feed=rss2&amp;p=22</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>USB CDROM Emulator</title>
		<link>http://www.tamerz.com/?p=15</link>
		<comments>http://www.tamerz.com/?p=15#comments</comments>
		<pubDate>Tue, 21 Sep 2010 20:10:39 +0000</pubDate>
		<dc:creator>Tamerz</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Slider]]></category>

		<guid isPermaLink="false">http://www.tamerz.com/?p=15</guid>
		<description><![CDATA[For the longest time I was looking for a device like this. Instead of burning ISO&#8217;s to blank discs, you can just copy them over to this device. You can then plug the device in and choose the ISO from the built in screen. Now the device looks just like a USB CDROM drive to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.tamerz.com/wp-content/uploads/2010/09/iodd.png"><img class="alignnone size-medium wp-image-16" title="I-Odd" src="http://www.tamerz.com/wp-content/uploads/2010/09/iodd-248x300.png" alt="I-Odd" width="248" height="300" /></a></p>
<p>For the longest time I was looking for a device like this. Instead of burning ISO&#8217;s to blank discs, you can just copy them over to this device. You can then plug the device in and choose the ISO from the built in screen. Now the device looks just like a USB CDROM drive to the computer with the selected ISO mounted. You can even boot from it to install an OS or boot utilities that need to be run outside the regular OS environment.</p>
<p>The first one we bought died after a few days but the new one has worked great. It allows you to copy the files to it using either USB or eSATA. We threw a 500 GB drive in ours so it can hold a LOT of ISO&#8217;s. No more scrounging around for CD&#8217;s or wasting media on something we will only use once.</p>
<p><a title="http://www.iodd-usa.com" href="http://www.iodd-usa.com" target="_blank">http://www.iodd-usa.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tamerz.com/?feed=rss2&amp;p=15</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Addictive “Little” Game</title>
		<link>http://www.tamerz.com/?p=12</link>
		<comments>http://www.tamerz.com/?p=12#comments</comments>
		<pubDate>Tue, 21 Sep 2010 16:58:38 +0000</pubDate>
		<dc:creator>Tamerz</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Slider]]></category>

		<guid isPermaLink="false">http://www.tamerz.com/?p=12</guid>
		<description><![CDATA[I kept seeing confusing videos and screen shots of a game called Minecraft. You can check out the website for it here: http://www.minecraft.net I decided to try it out myself to see what it was all about. At first it was completely confusing. I found a couple of YouTube videos that explained it a little [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.tamerz.com/wp-content/uploads/2010/09/logo1.gif"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="logo" border="0" alt="logo" src="http://www.tamerz.com/wp-content/uploads/2010/09/logo_thumb1.gif" width="240" height="46" /></a> </p>
<p>I kept seeing confusing videos and screen shots of a game called Minecraft. You can check out the website for it here:</p>
<p><a href="http://www.minecraft.net">http://www.minecraft.net</a></p>
<p>I decided to try it out myself to see what it was all about. At first it was completely confusing. I found a couple of YouTube videos that explained it a little better. This one at least got me started:</p>
<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:0815e51c-f47f-4be3-bb3c-d5c302284637" class="wlWriterEditableSmartContent">
<div><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/ANgI2o_Jinc&amp;hl=en"></param><embed src="http://www.youtube.com/v/ANgI2o_Jinc&amp;hl=en" type="application/x-shockwave-flash" width="425" height="355"></embed></object></div>
</div>
<p>Now it has become completely addictive. I’ve even got a few other people hooked after showing them a couple of times.</p>
<p>Right now the game is still under heavy development. It was all written by one person named Notch. I purchased the game about a month ago and he has already added quite a few features to the game. Anyway, if you want to waste a bunch of time, this is a good way to do it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tamerz.com/?feed=rss2&amp;p=12</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Trying This Again…</title>
		<link>http://www.tamerz.com/?p=5</link>
		<comments>http://www.tamerz.com/?p=5#comments</comments>
		<pubDate>Tue, 21 Sep 2010 16:48:36 +0000</pubDate>
		<dc:creator>Tamerz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.tamerz.com/?p=5</guid>
		<description><![CDATA[Well I have created a blog before but never kept up with it. This is another try that maybe I will stick with.]]></description>
			<content:encoded><![CDATA[<p>Well I have created a blog before but never kept up with it. This is  another try that maybe I will stick with.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tamerz.com/?feed=rss2&amp;p=5</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

