<?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>bradym.net &#187; Windows</title>
	<atom:link href="http://bradym.net/category/windows/feed" rel="self" type="application/rss+xml" />
	<link>http://bradym.net</link>
	<description>Random thoughts of a Code Monkey</description>
	<lastBuildDate>Sun, 11 Oct 2009 22:39:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Testing in multiple versions of IE</title>
		<link>http://bradym.net/windows/testing-in-multiple-versions-of-ie</link>
		<comments>http://bradym.net/windows/testing-in-multiple-versions-of-ie#comments</comments>
		<pubDate>Thu, 28 Aug 2008 05:02:40 +0000</pubDate>
		<dc:creator>bradym</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://bradym.net/?p=15</guid>
		<description><![CDATA[One question that I get all the time is how to test a website in both IE6 and IE7 on the same computer. Here are some options:
Virtual Machine
Because the code for Internet Explorer is so tightly integrated into Windows, the only way to run the &#8220;pure / authentic&#8221; version of IE6 on the same machine [...]]]></description>
			<content:encoded><![CDATA[<p>One question that I get all the time is how to test a website in both IE6 and IE7 on the same computer. Here are some options:</p>
<h2>Virtual Machine</h2>
<p>Because the code for Internet Explorer is so tightly integrated into Windows, the only way to run the &#8220;pure / authentic&#8221; version of IE6 on the same machine as IE7 is by using a Virtual Machine. Microsoft has made this easy by providing a <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=21eabb90-958f-4b64-b5f1-73d0a413c8ef&amp;displaylang=en">Virtual PC image for this purpose</a>. Virtual PC is also available for <a href="http://www.microsoft.com/windows/products/winfamily/virtualpc/default.mspx">free download</a>, so this is a great option. There are two downsides to this option, the VPC image is over 400MB in size, and the image periodically expires requiring a new download every 6 months or so.</p>
<p>If you have a copy of Windows XP sitting around you could use <a href="http://www.microsoft.com/windows/products/winfamily/virtualpc/default.mspx">Virtual PC</a>, <a href="http://vmware.com/">VMWare</a>, <a href="http://virtualbox.org/">VirtualBox</a> or any other virtualization software to create your own non-expiring image for testing.</p>
<h2>IE6 Standalone</h2>
<p>The <a href="http://browsers.evolt.org/">Evolt Browser Archive</a> includes a <a href="http://browsers.evolt.org/download.php?/ie/32bit/standalone/ie6eolas_nt.zip">standalone version of IE6</a>. Simply download the zip archive, unzip and run iexplore.exe. Simplifiy your life by creating a shortcut in your start menu or on your desktop. This is my preferred method, mostly due to the simplicity, and has worked very well for me.</p>
<h2>Multiple IE</h2>
<p>Want to test more than just IE6? <a href="http://tredosoft.com/Multiple_IE">Multiple IE</a> installs IE3 &#8211; IE6 standalone versions. It&#8217;s been a long time since I&#8217;ve cared about how something looked in anything earlier than IE6, but if you have a reason to test a site on an earlier version of IE, this is a good way to go.</p>
<h2>IE7 Standalone</h2>
<p>The above options assume that you&#8217;ve already installed IE7. The makers of Multiple IE also have an installer for <a href="http://tredosoft.com/IE7_standalone">IE7 standalone</a> (but it&#8217;s not integrated into Multiple IE). The idea here is that ou would run IE6 natively, with IE7 in standalone mode. I&#8217;ve never sucessfully used this option, but others have found it useful.</p>
<h2>Gotchas</h2>
<p>Running a standalone version of Internet Explorer <em><strong>is not the same</strong></em> as running the native, built-into-windows version.</p>
<p>Due to IE&#8217;s reliance on DLLs and registrty settings, things can get messy in certain situations. Take a look at <a href="http://www.positioniseverything.net/articles/multiIE.html">Taming Your Multiple IE Standalones</a> for more information on these possible snags. In short, they recommend using Multiple IE, as the registry hacks and DLLs are all included.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fbradym.net%2Fwindows%2Ftesting-in-multiple-versions-of-ie';
  addthis_title  = 'Testing+in+multiple+versions+of+IE';
  addthis_pub    = 'mydarb';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://bradym.net/windows/testing-in-multiple-versions-of-ie/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making the Windows Command Prompt Usable</title>
		<link>http://bradym.net/windows/making-the-windows-command-prompt-usable</link>
		<comments>http://bradym.net/windows/making-the-windows-command-prompt-usable#comments</comments>
		<pubDate>Tue, 29 Apr 2008 06:53:40 +0000</pubDate>
		<dc:creator>bradym</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://bradym.net/?p=11</guid>
		<description><![CDATA[If you&#8217;ve used an interactive shell on Linux or OS X you know what a good command prompt is like. To go from that to the command prompt in Windows XP is painful, since I&#8217;m stuck on Windows at work, I had to do something about the command prompt to make it more bearable.
Install Console
Console [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve used an interactive shell on Linux or OS X you know what a good command prompt is like. To go from that to the command prompt in Windows XP is painful, since I&#8217;m stuck on Windows at work, I had to do something about the command prompt to make it more bearable.</p>
<h2><strong>Install Console</strong></h2>
<p><a title="Console" href="http://sourceforge.net/projects/console">Console</a> is an <a href="http://www.opensource.org/">Open Source</a> command prompt window enhancement. If you&#8217;re familiar with <a href="http://konsole.kde.org/">Konsole</a> from <a href="http://kde.org">Kde</a>, Console has a similar feature set.</p>
<p>Console allows you much greater control over the display and setup of the command prompt including resizing the console, specifying background and font colors, specifying a startup directory, using tabs, etc.</p>
<p>There&#8217;s no installer with Console, just extract the zip file and run console.exe. I&#8217;ve created shortcuts in my taskbar and on the desktop for easy access. Once you&#8217;ve launched Consoe, be sure to spend some time playing around with the settings, that&#8217;s where all the power is!<strong><br />
</strong></p>
<h2><strong>Install Cygwin or GNUWin32</strong></h2>
<p>Now that we have a decent console, it&#8217;s time to get some *nix goodness! There are two great options for getting ports of *nix tools working on Windows: <a href="http://www.cygwin.com">Cygwin</a> and <a href="http://gnuwin32.sourceforge.net/">GnuWin32</a>.</p>
<p>Cygwin provides a more *nix like environment, as well as a larger number of tools overall. Cygwin includes a batch file to launch a command prompt with bash as the interpreter. With Cygwin you can also install an X server and run programs that require an X server, though if you&#8217;re trying to do that it&#8217;d be much easier to install <a href="http://www.virtualbox.org/">VirtualBox</a> or <a href="http://www.vmware.com/products/player/">VMWare Player</a> and run a virtual instance of your favorite *nix distro.</p>
<p>GnuWin provides Windows ports of many *nix tools, but does not try to imitate the *nix filesystem like Cygwin does. If you&#8217;re only looking for specific tools it may be easier to get them from GnuWin32.</p>
<p>I&#8217;m currently using Cygwin as it&#8217;s a standard at work.</p>
<h2>Using *nix Tools from the Windows Command Line</h2>
<p>Now that we have our command line and our *nix tools, all that&#8217;s left is to connect the two by adding the folder with the binaries to your Windows path. For Cygwin this is c:\cygwin\bin by default.</p>
<ol>
<li>Right click on &#8220;My Computer&#8221; on your desktop (or in windows explorer)</li>
<li>Select &#8220;Properties&#8221;</li>
<li>Click the &#8220;Advanced&#8221; tab</li>
<li>Click on &#8220;Environment Variables&#8221;</li>
<li>Look at the top list of variables,
<ul>
<li>If there is not a variable named &#8220;Path&#8221;
<ol>
<li>Click on &#8220;New&#8221;</li>
<li>Enter &#8220;Path&#8221; in the &#8220;Variable name&#8221; field</li>
<li>Enter &#8220;C:\cygwin\bin&#8221; in the &#8220;Variable value&#8221; field</li>
</ol>
</li>
<li>If there is a variable named &#8220;Path&#8221;
<ol>
<li>Click &#8220;Edit&#8221;</li>
<li>Click in the &#8220;Variable value&#8221; box and go to the end of the field</li>
<li>Add a semi-colon ( ; )</li>
<li>Enter &#8220;C:\cygwin\bin&#8221;</li>
</ol>
</li>
</ul>
</li>
<li>Click OK 3 times and you should be ready to go</li>
</ol>
<p>Open Console and enjoy your much improved windows command prompt experience!</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fbradym.net%2Fwindows%2Fmaking-the-windows-command-prompt-usable';
  addthis_title  = 'Making+the+Windows+Command+Prompt+Usable';
  addthis_pub    = 'mydarb';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://bradym.net/windows/making-the-windows-command-prompt-usable/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
