<?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>asiel&#039;s scratchpad &#187; windows</title>
	<atom:link href="http://www.asiel.us/wordpress/category/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.asiel.us/wordpress</link>
	<description>my random notes cutting through the cheese</description>
	<lastBuildDate>Wed, 13 Apr 2011 04:16:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Apple Migration Assistant makes upgrading painless</title>
		<link>http://www.asiel.us/wordpress/2008/07/30/apple-migration-assistant-makes-upgrading-painless/</link>
		<comments>http://www.asiel.us/wordpress/2008/07/30/apple-migration-assistant-makes-upgrading-painless/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 06:11:01 +0000</pubDate>
		<dc:creator>azl</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://asiel.us/wordpress/2008/07/30/apple-migration-assistant-makes-upgrading-painless/</guid>
		<description><![CDATA[I have had a macbook pro for about 2.5 years now since the first intel based macs were introduced. Last week I decided to get a faster machine with more ram and hard drive space. So I went to a &#8230; <a href="http://www.asiel.us/wordpress/2008/07/30/apple-migration-assistant-makes-upgrading-painless/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have had a macbook pro for about 2.5 years now since the first intel based macs were introduced. Last week I decided to get a faster machine with more ram and hard drive space. So I went to a macbook. Yes, I have a smaller screen and not quite as good of video. However, I was able to upgrade the RAM to 4GB and HD to 320GB in about 15min and both are working great. I&#8217;ve been very happy with the machine so far.</p>
<p>Tonight I decided to try out the <a href="http://www.apple.com/pro/tips/migration.html">Migration Assistant</a>. For some unknown reason I&#8217;ve never used it in the past when I&#8217;ve upgraded my mac. After using it though, all I can say is wow! Why haven&#8217;t I used this tool before? What is so amazing to me in contrast to Windows machines is how well it works and how easy it is to use. Also as far as I can tell so far it appears to have transfered everything just the way I told it to. This includes all my files, custom settings, and even applications. Although it technically should be possible to transfer appliations between Windows machines, in most cases it isn&#8217;t even an option. Whenever I have moved from one Windows machine to another I end up having to reinstall all the applications. The only thing that really moves well on Windows is files such as documents and other application data. The applications themselves though don&#8217;t like to be moved. </p>
<p>With <a href="http://en.wikipedia.org/wiki/Migration_Assistant_%28Apple%29">Migration Assistant</a>, the fact that applications can be moved is huge for me since reinstalling all my applications usually takes at least an entire day if not more. Whats more, its really something that isn&#8217;t fun and frankly shouldn&#8217;t be necessary to redo every time I move to a new computer.</p>
<p>So far I&#8217;m completely sold on Migration Assistant. It has definitely made this the least painful upgrade I&#8217;ve ever experienced. I&#8217;ll have to see if I&#8217;m still as impressed after making sure everything really does work over the next week or two. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.asiel.us/wordpress/2008/07/30/apple-migration-assistant-makes-upgrading-painless/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Painful lesson with PHPUnit, IPv6, and Vista</title>
		<link>http://www.asiel.us/wordpress/2007/12/10/painful-lesson-with-phpunit-ipv6-and-vista/</link>
		<comments>http://www.asiel.us/wordpress/2007/12/10/painful-lesson-with-phpunit-ipv6-and-vista/#comments</comments>
		<pubDate>Mon, 10 Dec 2007 23:54:29 +0000</pubDate>
		<dc:creator>azl</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://asiel.us/wordpress/2007/12/10/painful-lesson-with-phpunit-ipv6-and-vista/</guid>
		<description><![CDATA[For some reason Windows Vista enables IPv6 by default. Why? I wasn&#8217;t aware of this so I ended up troubleshooting a non-problem with PHPUnit. I have unit tests that connect to the web server to test a web service. The &#8230; <a href="http://www.asiel.us/wordpress/2007/12/10/painful-lesson-with-phpunit-ipv6-and-vista/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>For some reason <a href="http://www.microsoft.com/windows/products/windowsvista/default.mspx">Windows Vista</a> enables <a href="http://en.wikipedia.org/wiki/IPv6">IPv6</a> by default. Why? I wasn&#8217;t aware of this so I ended up troubleshooting a non-problem with <a href="http://www.phpunit.de">PHPUnit</a>. I have unit tests that connect to the web server to test a web service. The URL my tests were using was &#8220;localhost&#8221;. Because vista was resolving localhost to ::1 the tests couldn&#8217;t make a socket connection. </p>
<p>All I had to do to fix the problem was disable IPv6 and comment out the localhost ::1 line in my hosts file. This took a significant amount of troubleshooting to figure out though. I thought there was some type of problem with <a href="http://www.phpunit.de">PHPUnit</a> or <a href="http://php.net">php</a> itself. Luckily I was finally able to solve the problem.</p>
<p>It seems like a really bad idea for Microsoft to enable IPv6 by default and additionally put it higher in the resolution order than IPv4 addresses. Based on the number of active IPv6 networks this can&#8217;t be a good default decision. Supporting IPv6 is a good idea, but it shouldn&#8217;t be the default method of resolving addresses. Windows should have knowledge that you are connected to an IPv4 network and disable or lower the priority of IPv6 accordingly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.asiel.us/wordpress/2007/12/10/painful-lesson-with-phpunit-ipv6-and-vista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why no Cisco VPN for 64 bit Windows Vista?</title>
		<link>http://www.asiel.us/wordpress/2007/11/29/why-no-cisco-vpn-for-64-bit-windows-vista/</link>
		<comments>http://www.asiel.us/wordpress/2007/11/29/why-no-cisco-vpn-for-64-bit-windows-vista/#comments</comments>
		<pubDate>Thu, 29 Nov 2007 00:32:40 +0000</pubDate>
		<dc:creator>azl</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://asiel.us/wordpress/2007/11/29/why-no-cisco-vpn-for-64-bit-windows-vista/</guid>
		<description><![CDATA[I decided to take the plunge to try out Vista. Because the system I&#8217;m using has 4GB of memory I also decided to use the 64 bit version to take full advantage of the hardware I&#8217;m using. Everything has worked &#8230; <a href="http://www.asiel.us/wordpress/2007/11/29/why-no-cisco-vpn-for-64-bit-windows-vista/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I decided to take the plunge to try out Vista. Because the system I&#8217;m using has 4GB of memory I also decided to use the 64 bit version to take full advantage of the hardware I&#8217;m using. Everything has worked pretty well so far. The main problem I&#8217;ve ran into is the lack of a Cisco VPN client for the 64 bit version of Windows Vista and the 32 bit version won&#8217;t even install. This is unfortunate that a huge company making billions of dollars can&#8217;t dedicate resources to let their existing customers use an updated operating system. This is especially true when it is likely the majority of customers who use this type of VPN system have service contracts with them. Just goes to show that commercial software doesn&#8217;t really mean better support. </p>
<p>The closest I came to any type of solution was by following the discussion at <a href="http://geekswithblogs.net/evjen/archive/2007/01/01/102429.aspx">Bill Evjen&#8217;s Blog</a>. Even after tinkering though the best pseudo solution I came up with was running XP inside of a VM. It isn&#8217;t really a solution, but it gets me by for the few things I absolutely need the VPN for. Hopefully these types of issues will get resolved over time. Unfortunately, I&#8217;m pretty certain this isn&#8217;t the last issue I&#8217;ll run into with 64 bit Vista. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.asiel.us/wordpress/2007/11/29/why-no-cisco-vpn-for-64-bit-windows-vista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making Hamachi play nice with older games</title>
		<link>http://www.asiel.us/wordpress/2007/09/07/making-hamichi-work-with-older-games/</link>
		<comments>http://www.asiel.us/wordpress/2007/09/07/making-hamichi-work-with-older-games/#comments</comments>
		<pubDate>Fri, 07 Sep 2007 04:00:10 +0000</pubDate>
		<dc:creator>azl</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://asiel.us/wordpress/?p=57</guid>
		<description><![CDATA[Last week I was trying to play one of my favorite games Starcraft over Hamachi with some friends. Starcraft is not the newest game, so unlike many newer games it doesn&#8217;t give you the option to pick your network interface. &#8230; <a href="http://www.asiel.us/wordpress/2007/09/07/making-hamichi-work-with-older-games/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Last week I was trying to play one of my favorite games <a href="http://www.blizzard.com/starcraft">Starcraft</a> over <a href="https://secure.logmein.com/products/hamachi/vpn.asp?lang=en">Hamachi</a> with some friends. Starcraft is not the newest game, so unlike many newer games it doesn&#8217;t give you the option to pick your network interface. </p>
<p>While we were logged into our Hamachi network we were able to ping each other and followed all the troubleshooting instructions given by the Hamachi site. This was despite the fact that starcraft is one of the games that is supposed to &#8220;just work&#8221; with Hamachi. None of us were able to see games that anyone else created. After tinkering around with this for probably about a half-hour my friend orb360 found a solution. The steps to get Starcraft and probably many other older applications working with Hamachi are below. These instructions are Windows specific. Although the method should probably work on other platforms.</p>
<p>The main tip is to make Hamachi the first network interface that Windows tries to use. On other platformsthe goal would be the same. Only the way you accomplish it would be different.</p>
<p>1. Go into control panel then click on &#8220;network connections&#8221;</p>
<p>2. Click the &#8220;advanced&#8221; link in the menu</p>
<p>3. Click &#8220;advanced settings&#8221;</p>
<p>4. Change the order so it looks something like this<br />
<center><br />
<a href='http://asiel.us/wordpress/wp-content/uploads/2007/09/hamachi_network_setup2.jpg' title='hamachi setup'><img src='http://asiel.us/wordpress/wp-content/uploads/2007/09/hamachi_network_setup2.jpg' alt='hamachi setup' /></a></center></p>
<p>5. Reboot Windows</p>
<p>After taking these steps Hamachi and Starcraft played nice together. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.asiel.us/wordpress/2007/09/07/making-hamichi-work-with-older-games/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making fun of other peoples operating system</title>
		<link>http://www.asiel.us/wordpress/2007/02/20/making-fun-of-other-peoples-operating-system/</link>
		<comments>http://www.asiel.us/wordpress/2007/02/20/making-fun-of-other-peoples-operating-system/#comments</comments>
		<pubDate>Tue, 20 Feb 2007 17:38:51 +0000</pubDate>
		<dc:creator>azl</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://asiel.us/wordpress/?p=51</guid>
		<description><![CDATA[People like to have heated discussions about which operating system is better than another. This joke explains it very well. Just don&#8217;t forget that you are arguing about an operating system and competition is always good. Just don&#8217;t forget to &#8230; <a href="http://www.asiel.us/wordpress/2007/02/20/making-fun-of-other-peoples-operating-system/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>People like to have heated discussions about which operating system is better than another. <a href="http://nodwick.humor.gamespy.com/ffn/index.php?date=2007-02-14">This joke</a> explains it very well. Just don&#8217;t forget that you are arguing about an operating system and competition is always good. Just don&#8217;t forget to tell someone else why your operating system is better than theirs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.asiel.us/wordpress/2007/02/20/making-fun-of-other-peoples-operating-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting a screenshot in Windows from MacBook Pro</title>
		<link>http://www.asiel.us/wordpress/2006/10/31/getting-a-screenshot-in-windows-from-macbook-pro/</link>
		<comments>http://www.asiel.us/wordpress/2006/10/31/getting-a-screenshot-in-windows-from-macbook-pro/#comments</comments>
		<pubDate>Tue, 31 Oct 2006 01:50:52 +0000</pubDate>
		<dc:creator>azl</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://asiel.us/wordpress/?p=46</guid>
		<description><![CDATA[I wanted to get a screenshot in Windows on my MacBook Pro today and couldn&#8217;t figure out how to do it. Apparently this is now supported in newer versions of bootcamp. I don&#8217;t currently have this installed though, so I &#8230; <a href="http://www.asiel.us/wordpress/2006/10/31/getting-a-screenshot-in-windows-from-macbook-pro/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I wanted to get a screenshot in Windows on my MacBook Pro today and couldn&#8217;t figure out how to do it. Apparently this is now supported in <a href="http://www.apple.com/macosx/bootcamp/">newer versions </a>of bootcamp. I don&#8217;t currently have this installed though, so I had to find another way for the time being. I found a <a href="http://37prime.com/bootcamp.html">handy resource</a> that showed how to do it with a Windows tool I was unaware of called On-Screen Keyboard. Thanks to this great tool I was able to get my screenshot. This could also be useful on a system where the keyboard may not be working or other similar situations.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.asiel.us/wordpress/2006/10/31/getting-a-screenshot-in-windows-from-macbook-pro/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Automate defrag in Windows</title>
		<link>http://www.asiel.us/wordpress/2006/10/19/automate-defrag-in-windows/</link>
		<comments>http://www.asiel.us/wordpress/2006/10/19/automate-defrag-in-windows/#comments</comments>
		<pubDate>Thu, 19 Oct 2006 19:58:44 +0000</pubDate>
		<dc:creator>azl</dc:creator>
				<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://asiel.us/wordpress/?p=44</guid>
		<description><![CDATA[I found a blog post pointing to an easy way to automate defrag in windows xp. This is extremely easy to do and is something that more people should definitely do because it will help their Windows computers run much &#8230; <a href="http://www.asiel.us/wordpress/2006/10/19/automate-defrag-in-windows/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I found a blog post pointing to an easy way to automate defrag in windows xp. This is extremely easy to do and is something that more people should definitely do because it will help their Windows computers run much faster.</p>
<p>The steps are basically as follows</p>
<ol>
<li>open up task scheduler</li>
<li>put in <strong>%systemroot%\system32\defrag.exe %homedrive%</strong> as the command</li>
<li>select a time for defrag to run every night.</li>
</ol>
<p><a href="http://mozy.com/blog/2006/06/13/defrag-the-mozy-way">Here is the post</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.asiel.us/wordpress/2006/10/19/automate-defrag-in-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finally Microsoft Office will be able to save and open ODF format documents</title>
		<link>http://www.asiel.us/wordpress/2006/10/13/finally-microsoft-office-will-be-able-to-save-and-open-odf-format-documents/</link>
		<comments>http://www.asiel.us/wordpress/2006/10/13/finally-microsoft-office-will-be-able-to-save-and-open-odf-format-documents/#comments</comments>
		<pubDate>Fri, 13 Oct 2006 21:00:24 +0000</pubDate>
		<dc:creator>azl</dc:creator>
				<category><![CDATA[misc]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://asiel.us/wordpress/?p=43</guid>
		<description><![CDATA[According to this news.com article Microsoft will finally be releasing a plugin that allows for saving Word documents in ODF format. This is great news that many people have been waiting for a long time to hear. It will sure &#8230; <a href="http://www.asiel.us/wordpress/2006/10/13/finally-microsoft-office-will-be-able-to-save-and-open-odf-format-documents/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>According to <a target="_blank" href="http://news.com.com/2100-7344_3-6125699.html">this news.com article</a> Microsoft will finally be releasing a plugin that allows for saving Word documents in ODF format. This is great news that many people have been waiting for a long time to hear. It will sure be nice to know that a file saved from Word in ODF format can be read by users who may not have Word.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.asiel.us/wordpress/2006/10/13/finally-microsoft-office-will-be-able-to-save-and-open-odf-format-documents/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>reenable windows update</title>
		<link>http://www.asiel.us/wordpress/2006/01/12/reenable-windows-update/</link>
		<comments>http://www.asiel.us/wordpress/2006/01/12/reenable-windows-update/#comments</comments>
		<pubDate>Thu, 12 Jan 2006 21:11:10 +0000</pubDate>
		<dc:creator>azl</dc:creator>
				<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://asiel.us/wordpress/?p=5</guid>
		<description><![CDATA[on a vmware image I was using Windows update was disabled. I had to reenable it usingĀ gpedit.mscĀ the instructions are outlined in: http://support.microsoft.com/?kbid=326686]]></description>
			<content:encoded><![CDATA[<p>on a vmware image I was using Windows update was disabled. I had to reenable it usingĀ  gpedit.mscĀ  the instructions are outlined in: http://support.microsoft.com/?kbid=326686</p>
]]></content:encoded>
			<wfw:commentRss>http://www.asiel.us/wordpress/2006/01/12/reenable-windows-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

