<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: C# Detect Windows OS Version - Part 1</title>
	<atom:link href="http://andrewensley.com/2009/06/c-detect-windows-os-part-1/feed/" rel="self" type="application/rss+xml" />
	<link>http://andrewensley.com/2009/06/c-detect-windows-os-part-1/</link>
	<description>My little contribution to the WWW</description>
	<lastBuildDate>Tue, 07 Feb 2012 17:54:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
<a href="http://www.medwitness.com/contact.php?pk=518" style="padding:0;margin:0;" rel="nofollow"><div style="display:none;">suggest</div></a>	<item>
		<title>By: Werner Sandner</title>
		<link>http://andrewensley.com/2009/06/c-detect-windows-os-part-1/comment-page-1/#comment-5277</link>
		<dc:creator>Werner Sandner</dc:creator>
		<pubDate>Sun, 29 Jan 2012 11:09:00 +0000</pubDate>
		<guid isPermaLink="false">http://andrewensley.com/?p=112#comment-5277</guid>
		<description>Thank you, you saved me time</description>
		<content:encoded><![CDATA[<p>Thank you, you saved me time</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vincent Duvernet</title>
		<link>http://andrewensley.com/2009/06/c-detect-windows-os-part-1/comment-page-1/#comment-5188</link>
		<dc:creator>Vincent Duvernet</dc:creator>
		<pubDate>Sun, 11 Sep 2011 14:57:00 +0000</pubDate>
		<guid isPermaLink="false">http://andrewensley.com/?p=112#comment-5188</guid>
		<description>(sorry the format get away :/)</description>
		<content:encoded><![CDATA[<p>(sorry the format get away :/)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vincent Duvernet</title>
		<link>http://andrewensley.com/2009/06/c-detect-windows-os-part-1/comment-page-1/#comment-5187</link>
		<dc:creator>Vincent Duvernet</dc:creator>
		<pubDate>Sun, 11 Sep 2011 14:56:00 +0000</pubDate>
		<guid isPermaLink="false">http://andrewensley.com/?p=112#comment-5187</guid>
		<description>Here&#039;s my results from several computers :
(Major.Minor.RevisionMajor.RevisionMinor)

Windows 2k SP4 x86 Fr     : 5.0.4.0 build 2195 revision 262144Windows 2k SP4 x86 Eng   : 5.0.4.0 build 2195 revision 262144
Windows XP SP1 x64 Eng   : 5.2.1.0 build 3790 revision 65536Windows XP SP2 x64 Eng   : 5.2.2.0 build 3790 revision 131072Windows XP SP2 x86 Fr     : 5.1.2.0 build 2600 revision 131072
Windows XP SP3 x86 Fr     : 5.1.3.0 build 2600 revision 196608Windows Vista  SP1 x86 Fr : 6.0.1.0 build 6001 revision 65536
Windows 7  SP1 x86 Fr      : 6.1.1.0 build 7601 revision 65536Windows 7  SP1 x64 Fr      : 6.1.1.0 build 7601 revision 65536
++
Vincent</description>
		<content:encoded><![CDATA[<p>Here's my results from several computers :<br />
(Major.Minor.RevisionMajor.RevisionMinor)</p>
<p>Windows 2k SP4 x86 Fr     : 5.0.4.0 build 2195 revision 262144Windows 2k SP4 x86 Eng   : 5.0.4.0 build 2195 revision 262144<br />
Windows XP SP1 x64 Eng   : 5.2.1.0 build 3790 revision 65536Windows XP SP2 x64 Eng   : 5.2.2.0 build 3790 revision 131072Windows XP SP2 x86 Fr     : 5.1.2.0 build 2600 revision 131072<br />
Windows XP SP3 x86 Fr     : 5.1.3.0 build 2600 revision 196608Windows Vista  SP1 x86 Fr : 6.0.1.0 build 6001 revision 65536<br />
Windows 7  SP1 x86 Fr      : 6.1.1.0 build 7601 revision 65536Windows 7  SP1 x64 Fr      : 6.1.1.0 build 7601 revision 65536<br />
++<br />
Vincent</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew</title>
		<link>http://andrewensley.com/2009/06/c-detect-windows-os-part-1/comment-page-1/#comment-5139</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Fri, 27 May 2011 01:59:00 +0000</pubDate>
		<guid isPermaLink="false">http://andrewensley.com/?p=112#comment-5139</guid>
		<description>Good catch! That is true.

However, the &lt;a href=&quot;http://msdn.microsoft.com/en-us/library/system.environment.is64bitoperatingsystem.aspx&quot; rel=&quot;nofollow&quot;&gt;Environment.Is64BitOperatingSystem Property&lt;/a&gt; was only introduced in .Net 4.0.  My code is compatible with any .Net version.

As long as you know your client will be running .Net 4.0, though, go ahead and use the much simpler Environment property.</description>
		<content:encoded><![CDATA[<p>Good catch! That is true.</p>
<p>However, the <a href="http://msdn.microsoft.com/en-us/library/system.environment.is64bitoperatingsystem.aspx" rel="nofollow" class="extlink">Environment.Is64BitOperatingSystem Property</a> was only introduced in .Net 4.0.  My code is compatible with any .Net version.</p>
<p>As long as you know your client will be running .Net 4.0, though, go ahead and use the much simpler Environment property.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott Barnes</title>
		<link>http://andrewensley.com/2009/06/c-detect-windows-os-part-1/comment-page-1/#comment-5138</link>
		<dc:creator>Scott Barnes</dc:creator>
		<pubDate>Fri, 27 May 2011 01:49:00 +0000</pubDate>
		<guid isPermaLink="false">http://andrewensley.com/?p=112#comment-5138</guid>
		<description>You get nuke the getOSArchitecture() with:

operatingSystem += &quot; &quot; + (Environment.Is64BitOperatingSystem ? 64 : 32) +&quot;-bit&quot;;
</description>
		<content:encoded><![CDATA[<p>You get nuke the getOSArchitecture() with:</p>
<p>operatingSystem += " " + (Environment.Is64BitOperatingSystem ? 64 : 32) +"-bit";</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 700R4 Transmission</title>
		<link>http://andrewensley.com/2009/06/c-detect-windows-os-part-1/comment-page-1/#comment-4994</link>
		<dc:creator>700R4 Transmission</dc:creator>
		<pubDate>Sun, 30 Jan 2011 15:47:00 +0000</pubDate>
		<guid isPermaLink="false">http://andrewensley.com/?p=112#comment-4994</guid>
		<description>Bravo, Bros! keep going like this, more good info again.</description>
		<content:encoded><![CDATA[<p>Bravo, Bros! keep going like this, more good info again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robat7</title>
		<link>http://andrewensley.com/2009/06/c-detect-windows-os-part-1/comment-page-1/#comment-4888</link>
		<dc:creator>Robat7</dc:creator>
		<pubDate>Mon, 20 Dec 2010 16:59:00 +0000</pubDate>
		<guid isPermaLink="false">http://andrewensley.com/?p=112#comment-4888</guid>
		<description>Thank a lot,
it help me on how to toggle Desktop in diffent version of Windows</description>
		<content:encoded><![CDATA[<p>Thank a lot,<br />
it help me on how to toggle Desktop in diffent version of Windows</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Darshit</title>
		<link>http://andrewensley.com/2009/06/c-detect-windows-os-part-1/comment-page-1/#comment-3488</link>
		<dc:creator>Darshit</dc:creator>
		<pubDate>Thu, 07 Oct 2010 12:35:35 +0000</pubDate>
		<guid isPermaLink="false">http://andrewensley.com/?p=112#comment-3488</guid>
		<description>Thanks,

This helped me to identify desktop folder for user as they are different in Windows XP and Windows7/Vista.</description>
		<content:encoded><![CDATA[<p>Thanks,</p>
<p>This helped me to identify desktop folder for user as they are different in Windows XP and Windows7/Vista.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew</title>
		<link>http://andrewensley.com/2009/06/c-detect-windows-os-part-1/comment-page-1/#comment-1745</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Wed, 28 Jul 2010 15:54:05 +0000</pubDate>
		<guid isPermaLink="false">http://andrewensley.com/?p=112#comment-1745</guid>
		<description>You&#039;re welcome!</description>
		<content:encoded><![CDATA[<p>You're welcome!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cesar</title>
		<link>http://andrewensley.com/2009/06/c-detect-windows-os-part-1/comment-page-1/#comment-1744</link>
		<dc:creator>Cesar</dc:creator>
		<pubDate>Wed, 28 Jul 2010 12:52:48 +0000</pubDate>
		<guid isPermaLink="false">http://andrewensley.com/?p=112#comment-1744</guid>
		<description>&lt;p&gt;Yes, it was useful. Thanks!&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Yes, it was useful. Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

