<?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>SurlyJake &#187; amd64</title>
	<atom:link href="http://www.surlyjake.com/tag/amd64/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.surlyjake.com</link>
	<description></description>
	<lastBuildDate>Tue, 29 Jun 2010 21:27:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Windows 32 (x86) or 64 (AMD64) detection in batch files</title>
		<link>http://www.surlyjake.com/windows/windows-32-x86-or-64-amd64-detection-in-batch-files/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=windows-32-x86-or-64-amd64-detection-in-batch-files</link>
		<comments>http://www.surlyjake.com/windows/windows-32-x86-or-64-amd64-detection-in-batch-files/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 21:53:04 +0000</pubDate>
		<dc:creator>jacob</dc:creator>
				<category><![CDATA[windows]]></category>
		<category><![CDATA[amd64]]></category>
		<category><![CDATA[batch]]></category>
		<category><![CDATA[batch files]]></category>
		<category><![CDATA[processor architecture]]></category>

		<guid isPermaLink="false">http://www.surlyjake.com/?p=556</guid>
		<description><![CDATA[While there are a lot of ways to detect for a 64 bit version of windows. you can test for %programFiles(x86)%, but handling the output and writing the IF comparisons is messy. In Batch files, you can easily check for architecture by using the &#8220;processor_architecture&#8221; variable. x86 versions of windows will have this set to [...]]]></description>
			<content:encoded><![CDATA[<p>While there are a lot of ways to detect for a 64 bit version of windows. you can test for %programFiles(x86)%, but handling the output and writing the IF comparisons is messy.</p>
<p>In Batch files, you can easily check for architecture by using the &#8220;processor_architecture&#8221; variable. x86 versions of windows will have this set to &#8220;x86&#8243;, and x64 versions &#8220;x64&#8243;. Heres an easy example:</p>
<pre><code>@echo off
IF %processor_architecture% == AMD64 echo This is a 64-bit version of windows
IF %processor_architecture% == x86 echo this is a 32-bit version of windows.
pause</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.surlyjake.com/windows/windows-32-x86-or-64-amd64-detection-in-batch-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->