<?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>Thushan Fernando Uncut &#187; Windows</title>
	<atom:link href="http://www.thushanfernando.com/index.php/category/operating-systems/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thushanfernando.com</link>
	<description>Not Even Remotely Dorky thoughts from a guy who never has enough time.</description>
	<lastBuildDate>Wed, 09 Mar 2011 04:51:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>QuickTip: Mapping your GAC folder in Windows with Subst</title>
		<link>http://www.thushanfernando.com/index.php/2010/12/30/quicktip-mapping-your-gac-folder-in-windows-with-subst/</link>
		<comments>http://www.thushanfernando.com/index.php/2010/12/30/quicktip-mapping-your-gac-folder-in-windows-with-subst/#comments</comments>
		<pubDate>Thu, 30 Dec 2010 03:19:07 +0000</pubDate>
		<dc:creator>Thushan Fernando</dc:creator>
				<category><![CDATA[.NET / CLR / C#]]></category>
		<category><![CDATA[Developer]]></category>
		<category><![CDATA[Fixes & Tips]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[assembly]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[gac]]></category>
		<category><![CDATA[gacutil]]></category>
		<category><![CDATA[subst]]></category>
		<category><![CDATA[win32]]></category>
		<category><![CDATA[win64]]></category>
		<category><![CDATA[windows explorer]]></category>

		<guid isPermaLink="false">http://www.thushanfernando.com/?p=1345</guid>
		<description><![CDATA[Here&#8217;s a quick tip if you want to browse the files in your GAC easily without messing about with commands all the time. Map the folder  containing the assemblies with the Subst command. To do that, bring up a console window (Windows Key + R or Start &#62; Run), then: subst G: C:\windows\Assembly This will [...]
Related posts:<ol>
<li><a href='http://www.thushanfernando.com/index.php/2008/07/29/ann-websoftware-devftp-editor/' rel='bookmark' title='ANN: WebSoftware DevFtp Editor!'>ANN: WebSoftware DevFtp Editor!</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2008/11/18/microsoft-releases-singularity-20-research-development-kit-rdk/' rel='bookmark' title='Microsoft Releases Singularity 2.0 Research Development Kit (RDK)'>Microsoft Releases Singularity 2.0 Research Development Kit (RDK)</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2009/04/02/windows-7-beta-sdk-and-net-interop-samples-posted/' rel='bookmark' title='Windows 7 Beta SDK and .NET Interop Samples Posted'>Windows 7 Beta SDK and .NET Interop Samples Posted</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a quick tip if you want to browse the files in your <a href="http://msdn.microsoft.com/en-us/library/yf1d93sz%28v=VS.100%29.aspx">GAC</a> easily without messing about with commands all the time. Map the folder  containing the assemblies with the <a href="http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/subst.mspx?mfr=true">Subst</a> command.</p>
<p>To do that, bring up a console window (Windows Key + R or Start &gt; Run), then:</p>
<pre>
<strong>subst</strong> G: C:\windows\Assembly
</pre>
<p>This will map the Global Assembly Cache folder to your G drive in Windows Explorer. You can also peek around and <a href="http://www.codeproject.com/KB/dotnet/demystifygac.aspx">see how the GAC works</a>.</p>
<p>The folders you&#8217;ll find in the mapped drive include &#8211; on a 64bit system <strong>*</strong>:</p>
<ul>
<li><strong>GAC</strong> &#8211; Non-native assemblies used by .NET 1.x</li>
<li><strong>GAC_32</strong> &#8211; Non-native 32bit assemblies</li>
<li><strong>*GAC_64</strong> &#8211; Non-native 64bit assemblies visible only on 64bit Windows.</li>
<li><strong>GAC_MSIL</strong> &#8211; Non-native MSIL (AnyCPU) assemblies.</li>
<li><strong>NativeImages_v*</strong> &#8211; Native assemblies for the framework version and the architecture (Eg. <em>NativeImages_v4.0.30319_64</em> is for the .NET 4.0 64bit native Assemblies)</li>
<li><strong>temp / tmp</strong> &#8211; Temporary directories (duh!)</li>
</ul>
<p>To remove the binding, use the <a href="http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/subst.mspx?mfr=true">Subst</a> command with the <code>-D</code> option.</p>
<pre>
<strong>subst</strong> G: /D
</pre>
<p>That&#8217;s it! Have a safe &amp; happy New Year!</p><div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="medium" count="1" href="http://www.thushanfernando.com/index.php/2010/12/30/quicktip-mapping-your-gac-folder-in-windows-with-subst/">{lang: 'en-GB'}</g:plusone></div><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.thushanfernando.com%2Findex.php%2F2010%2F12%2F30%2Fquicktip-mapping-your-gac-folder-in-windows-with-subst%2F&amp;title=QuickTip%3A%20Mapping%20your%20GAC%20folder%20in%20Windows%20with%20Subst" id="wpa2a_2"><img src="http://www.thushanfernando.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>Related posts:<ol>
<li><a href='http://www.thushanfernando.com/index.php/2008/07/29/ann-websoftware-devftp-editor/' rel='bookmark' title='ANN: WebSoftware DevFtp Editor!'>ANN: WebSoftware DevFtp Editor!</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2008/11/18/microsoft-releases-singularity-20-research-development-kit-rdk/' rel='bookmark' title='Microsoft Releases Singularity 2.0 Research Development Kit (RDK)'>Microsoft Releases Singularity 2.0 Research Development Kit (RDK)</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2009/04/02/windows-7-beta-sdk-and-net-interop-samples-posted/' rel='bookmark' title='Windows 7 Beta SDK and .NET Interop Samples Posted'>Windows 7 Beta SDK and .NET Interop Samples Posted</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.thushanfernando.com/index.php/2010/12/30/quicktip-mapping-your-gac-folder-in-windows-with-subst/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Beautiful wallpapers for you to relax with.</title>
		<link>http://www.thushanfernando.com/index.php/2010/03/08/beautiful-wallpapers-for-you-to-relax-with/</link>
		<comments>http://www.thushanfernando.com/index.php/2010/03/08/beautiful-wallpapers-for-you-to-relax-with/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 10:20:59 +0000</pubDate>
		<dc:creator>Thushan Fernando</dc:creator>
				<category><![CDATA[Guides & How-To]]></category>
		<category><![CDATA[Its My Life]]></category>
		<category><![CDATA[News & Events]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[wallpaper]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://www.thushanfernando.com/?p=1111</guid>
		<description><![CDATA[Some really cool wallpapers from Windows 7 Technical Evangelist Mike Swanson. I&#8217;ve got the new Audi RS5 wallpapers on my work and home PCs if cars are your thing {lang: 'en-GB'}Related posts: Getting a Windows 7 Beta 1 Product Key Engineering Windows 7: Just a few more changes from Beta to RC COOL TOOL: WinRAR [...]
Related posts:<ol>
<li><a href='http://www.thushanfernando.com/index.php/2009/01/10/getting-a-windows-7-beta-1-product-key/' rel='bookmark' title='Getting a Windows 7 Beta 1 Product Key'>Getting a Windows 7 Beta 1 Product Key</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2009/03/14/engineering-windows-7-just-a-few-more-changes-from-beta-to-rc/' rel='bookmark' title='Engineering Windows 7: Just a few more changes from Beta to RC'>Engineering Windows 7: Just a few more changes from Beta to RC</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2009/05/01/cool-tool-winrar-390-beta-released-with-some-ubber-goodness/' rel='bookmark' title='COOL TOOL: WinRAR 3.90 Beta released with some ubber goodness!'>COOL TOOL: WinRAR 3.90 Beta released with some ubber goodness!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Some really<a href="http://blogs.msdn.com/mswanson/articles/wallpaper.aspx"> cool wallpapers</a> from Windows 7 Technical Evangelist <a href="http://blogs.msdn.com/mswanson">Mike Swanson</a>.</p>
<p>I&#8217;ve got the <a href="http://www.leftlanenews.com/cars/image_popup/newgallery.php?postid=26314&amp;defimage=http%3A%2F%2Fphotos.leftlanenews.com%2Fphotos%2Fimageresizeronfly%2FphpThumb.php%3Fsrc%3D%2Fphotos%2Fcontent%2Fmarch2010%2FRECOM-CGI_AUDI_RS5_01.jpg">new Audi RS5 wallpapers</a> on my work and home PCs if cars are your thing <img src='http://www.thushanfernando.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p><div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="medium" count="1" href="http://www.thushanfernando.com/index.php/2010/03/08/beautiful-wallpapers-for-you-to-relax-with/">{lang: 'en-GB'}</g:plusone></div><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.thushanfernando.com%2Findex.php%2F2010%2F03%2F08%2Fbeautiful-wallpapers-for-you-to-relax-with%2F&amp;title=Beautiful%20wallpapers%20for%20you%20to%20relax%20with." id="wpa2a_4"><img src="http://www.thushanfernando.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>Related posts:<ol>
<li><a href='http://www.thushanfernando.com/index.php/2009/01/10/getting-a-windows-7-beta-1-product-key/' rel='bookmark' title='Getting a Windows 7 Beta 1 Product Key'>Getting a Windows 7 Beta 1 Product Key</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2009/03/14/engineering-windows-7-just-a-few-more-changes-from-beta-to-rc/' rel='bookmark' title='Engineering Windows 7: Just a few more changes from Beta to RC'>Engineering Windows 7: Just a few more changes from Beta to RC</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2009/05/01/cool-tool-winrar-390-beta-released-with-some-ubber-goodness/' rel='bookmark' title='COOL TOOL: WinRAR 3.90 Beta released with some ubber goodness!'>COOL TOOL: WinRAR 3.90 Beta released with some ubber goodness!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.thushanfernando.com/index.php/2010/03/08/beautiful-wallpapers-for-you-to-relax-with/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VirtualBox 3.1 released!</title>
		<link>http://www.thushanfernando.com/index.php/2009/12/01/virtualbox-3-1-released/</link>
		<comments>http://www.thushanfernando.com/index.php/2009/12/01/virtualbox-3-1-released/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 10:01:07 +0000</pubDate>
		<dc:creator>Thushan Fernando</dc:creator>
				<category><![CDATA[Cool Tools]]></category>
		<category><![CDATA[Developer]]></category>
		<category><![CDATA[File Systems]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Kernel / Internals]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tools / Products]]></category>
		<category><![CDATA[Virtualisation]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[e1000]]></category>
		<category><![CDATA[esx]]></category>
		<category><![CDATA[hypervisor]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[teleport]]></category>
		<category><![CDATA[teleportation]]></category>
		<category><![CDATA[virt]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[virtualisation]]></category>
		<category><![CDATA[virtualization]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.thushanfernando.com/?p=1021</guid>
		<description><![CDATA[Just when you thought you can start a new month without some new software, Sun has blessed the world with a ray of VirtualBox 3.1 goodness on us all! All hail the Sun. I&#8217;ve been using the Betas and trying out the spanking awesome Teleportation feature in VirtualBox 3.1. So lets take a bit of [...]
Related posts:<ol>
<li><a href='http://www.thushanfernando.com/index.php/2009/07/01/time-flies-virtualbox-3-0-final-is-out/' rel='bookmark' title='Time flies: VirtualBox 3.0 final is out!'>Time flies: VirtualBox 3.0 final is out!</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2008/12/18/sun-ushers-in-virtualbox-21-with-cool-new-features/' rel='bookmark' title='Sun ushers in VirtualBox 2.1 with cool new features!'>Sun ushers in VirtualBox 2.1 with cool new features!</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2009/07/13/virtualbox-3-0-2-released-with-smp-and-network-io-fixes/' rel='bookmark' title='VirtualBox 3.0.2 released with SMP and Network IO fixes'>VirtualBox 3.0.2 released with SMP and Network IO fixes</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Just when you thought you can start a new month without some new software, Sun has blessed the world with a ray of <a href="http://forums.virtualbox.org/viewtopic.php?f=1&amp;t=25240&amp;start=0">VirtualBox 3.1</a> goodness on us all! All hail the Sun. I&#8217;ve been using the Betas and trying out the spanking awesome Teleportation feature in VirtualBox 3.1. So lets take a bit of a look at the new grub.</p>
<h3>Beam me up Scotty!</h3>
<p>You know, people say the catch phrase thinking its from <a href="http://en.wikipedia.org/wiki/Star_Trek:_The_Original_Series">Star Trek</a>, but did you know that it was <a href="http://en.wikipedia.org/wiki/List_of_famous_misquotations#cite_ref-20">never actually mentioned in any episode</a>?</p>
<p>Teleportation or &#8216;<a href="http://www.citrix.com/English/ps2/products/feature.asp?contentID=1686939">Live Migration</a>&#8216; in Xen/KVM  or <a href="http://www.vmware.com/products/vmotion/">vMotion</a> in <a href="http://www.vmware.com">VMWare</a> allows you to move a running virtual machine to another host without any downtime. Sun brings us this &#8216;Enterprise&#8217; feature to VirtualBox. Whats even cooler, is that you can teleport your running VM on different host platforms (Windows -&gt; OpenSolaris or Linux, vice versa) but not from one hardware set (Intel) to another (AMD) unless they both have the same instruction-sets. The transport layer for the teleportation is TCP/<acronym title="Internet Protocol">IP</acronym>, so as long as the agreed port is open and accessible you can even teleport it through the tubes! (assuming you have a fast link like <a href="http://www.vermeer.bz/">those pesky Dutch</a>)</p>
<p>There are a few conditions and caveats as I&#8217;ve found. Firstly you must ensure (as you&#8217;d expect) the target VM has to have the exact same configuration as the source VM (same RAM, graphics memory, storage, <acronym title="Compact Disc">CD</acronym>/<acronym title="Digital Versatile Disc">DVD</acronym> images etc) the other thing is to be weary of the CPUs the host computer has. As long as its between the same generations (different clock speeds are OK) it should work (I tried between a <a href="http://processorfinder.intel.com/details.aspx?sSpec=SLAFN">QX6850</a> -&gt; <a href="http://processorfinder.intel.com/Details.aspx?ProcFam=0&amp;sSpec=sl9zl&amp;OrdCode=BX80557e6600sl9zl">E6600</a> but QX6850-&gt;<a href="http://www.amdcompare.com/us-en/desktop/details.aspx?opn=ADA4600DAA5BV">AMD X2 4600+</a> wasn&#8217;t so pretty!).</p>
<p>Once you&#8217;ve configured the target host to match the source host, time to ask VirtualBox to keep its eyes open for an incoming beam.</p>
<pre>VBoxManage modifyvm<strong> [VirtualMachineName]</strong> --teleporter on --teleporterport <strong>[Port]</strong></pre>
<p>Then on the source host, send out the beams to initiate the teleportation:</p>
<pre>VBoxManage controlvm <strong>[VirtualMachineName]</strong> teleport --host <strong>[TargetIP]</strong> --port <strong>[Port]</strong></pre>
<p>Give it some time to think and if you tried a <em>localhost </em> migration, it should migrate seamlessly <img src='http://www.thushanfernando.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<h3>Scotty doesn&#8217;t know</h3>
<p><a href="http://www.youtube.com/watch?v=0Vyj1C8ogtE">Scotty doesn&#8217;t know</a> about the other little changes, but you will. The new VirtualBox has lots of refinements in the UI. For one, new icons for all the Guest operating systems. The settings window has had a make over and includes &#8216;optimal settings&#8217; detection.</p>
<div id="attachment_1022" class="wp-caption aligncenter" style="width: 561px"><a href="http://www.thushanfernando.com/wp-content/uploads/2009/12/Windows-2003-SQLServer2005-Settings.png"><img class="size-full wp-image-1022 " title="Windows 2003 (SQLServer2005) - Settings" src="http://www.thushanfernando.com/wp-content/uploads/2009/12/Windows-2003-SQLServer2005-Settings.png" alt="Windows 2003 VM in VirtualBox 3.1" width="551" height="406" /></a><p class="wp-caption-text">Windows 2003 VM in VirtualBox 3.1</p></div>
<p>Here its telling me my Windows 2003 VM should have atleast 20Mb Video Memory assigned to it to work well in full-screen mode. Heading over to the Display options in VirtualBox 3.1 we find that the Video Memory selectors have got little indicators now, as well as the inclusion of 2D Video Acceleration.</p>
<div id="attachment_1023" class="wp-caption aligncenter" style="width: 561px"><a href="http://www.thushanfernando.com/wp-content/uploads/2009/12/Windows-2003-SQLServer2005-Settings-Display.png"><img class="size-full wp-image-1023 " title="Windows 2003 (SQLServer2005) - Settings-Display" src="http://www.thushanfernando.com/wp-content/uploads/2009/12/Windows-2003-SQLServer2005-Settings-Display.png" alt="Windows 2003 VM - VirtualBox 3.1 Display Settings" width="551" height="406" /></a><p class="wp-caption-text">Windows 2003 VM - VirtualBox 3.1 Display Settings</p></div>
<p>Depending how ever many cores you have, it will highlight what you should set as the maximum number of cores available for your VirtualMachine as well as the recommended RAM allocation. This is what I see in my <a href="http://processorfinder.intel.com/details.aspx?sSpec=SLAFN">Intel QX6850</a> development workstation.<a href="http://processorfinder.intel.com/details.aspx?sSpec=SLAFN"><br />
</a></p>
<div id="attachment_1024" class="wp-caption aligncenter" style="width: 497px"><a href="http://www.thushanfernando.com/wp-content/uploads/2009/12/VirtualBox-3.1-System-Processor-Settings.png"><img class="size-full wp-image-1024" title="VirtualBox 3.1 - System Processor Settings" src="http://www.thushanfernando.com/wp-content/uploads/2009/12/VirtualBox-3.1-System-Processor-Settings.png" alt="VirtualBox 3.1 System Processor Settings" width="487" height="73" /></a><p class="wp-caption-text">VirtualBox 3.1 System Processor Settings</p></div>
<div id="attachment_1025" class="wp-caption aligncenter" style="width: 513px"><a href="http://www.thushanfernando.com/wp-content/uploads/2009/12/VirtualBox-3.1-Motherboard-Settings.png"><img class="size-full wp-image-1025" title="VirtualBox 3.1 - Motherboard Settings" src="http://www.thushanfernando.com/wp-content/uploads/2009/12/VirtualBox-3.1-Motherboard-Settings.png" alt="VirtualBox 3.1 - Motherboard Settings" width="503" height="204" /></a><p class="wp-caption-text">VirtualBox 3.1 - Motherboard Settings</p></div>
<p>VirtualBox now also has experimental support for <a href="http://en.wikipedia.org/wiki/Extensible_Firmware_Interface">Extensible Firmware Interface</a> (EFI) which will eventually replace the aging <a href="http://en.wikipedia.org/wiki/BIOS">BIOS</a> bootstrap (which is the default). Well known operating systems that boot via EFI include <a href="http://www.microsoft.com/windows/windows-vista/default.aspx">Windows Vista</a> and <a href="http://www.microsoft.com/windows/windows-7/">Windows 7</a>, <a href="http://www.apple.com/">Apple <acronym title="Operating System">OS</acronym> X</a> and <a href="http://fedoraproject.org/wiki/Features/EFI">Fedora 11+</a>.</p>
<p>The Storage controls in VirtualBox <acronym title="Graphical User Interface">GUI</acronym> has also had a bit of a make over. The options to select a disk and a controller have changed, <acronym title="Compact Disc">CD</acronym>/<acronym title="Digital Versatile Disc">DVD</acronym> drives can be attached to an arbitrary IDE controller too now!</p>
<div id="attachment_1026" class="wp-caption aligncenter" style="width: 512px"><a href="http://www.thushanfernando.com/wp-content/uploads/2009/12/VirtualBox-3.1-Storage.png"><img class="size-full wp-image-1026" title="VirtualBox 3.1 - Storage" src="http://www.thushanfernando.com/wp-content/uploads/2009/12/VirtualBox-3.1-Storage.png" alt="VirtualBox 3.1 - Storage" width="502" height="302" /></a><p class="wp-caption-text">VirtualBox 3.1 - Storage</p></div>
<p>The networking settings <acronym title="Graphical User Interface">GUI</acronym> in the new VirtualBox has change too, not only that but you can now configure the network interfaces whilst the guest is running &#8211; YAY!</p>
<div id="attachment_1027" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.thushanfernando.com/wp-content/uploads/2009/12/VirtualBox-3.1-Network.png"><img class="size-full wp-image-1027" title="VirtualBox 3.1 Network" src="http://www.thushanfernando.com/wp-content/uploads/2009/12/VirtualBox-3.1-Network.png" alt="VirtualBox 3.1 Network Settings" width="500" height="304" /></a><p class="wp-caption-text">VirtualBox 3.1 Network Settings</p></div>
<p>Snapshots are a lot more flexible in this release (much like VMWare&#8217;s snapshot feature). Previously you can only restore from the last created snapshot, now any arbitrary snapshot can be restored too or branched off.</p>
<p>For those who use <a href="http://www.thushanfernando.com/index.php/category/operating-systems/opensolaris/">OpenSolaris</a> (<a href="http://www.thushanfernando.com/index.php/tag/zeus-rebuild/">like yours truely</a>!) the rewritten <acronym title="Universal Serial Bus">USB</acronym> support (still experimental btw!) should mean we can interact with our <acronym title="Universal Serial Bus">USB</acronym> devices in Solaris Nevada 124 or higher now &#8211; I&#8217;m running 127 and have <acronym title="Universal Serial Bus">USB</acronym> devices appearing in my VMs.</p>
<p>If those don&#8217;t give you any indication on to the pure awesomeness of this release, there was a significant performance improvement for APE &amp; AMD64 guests (VT-x/AMD-V) which will be quite noticeable from what I&#8217;ve been told by a college.</p>
<h3>As Barack Obama said, tis time for a change..log.</h3>
<p>He didn&#8217;t say that, I just reused <a href="http://www.youtube.com/watch?v=FF4Yr7IrZqg#t=1m58s">36 Mafia&#8217;s Lolli Lolli</a>. The entire change log appears below <a href="http://www.virtualbox.org/wiki/Changelog">from the website</a>.</p>
<blockquote><p><strong><span>VirtualBox</span> <span>3.1</span>.0</strong> (released 2009-11-30)</p>
<p>This version is a major update. The following major new features were added:</p>
<ul>
<li>Teleportation (aka live migration); migrate a live VM session from one host to another (see the manual for more information)</li>
<li>VM states can now be restored from arbitrary snapshots instead of only the last one, and new snapshots can be taken from other snapshots as well (&#8220;branched snapshots&#8221;; see the manual for more information)</li>
<li>2D video acceleration for Windows guests; use the host video hardware for overlay stretching and color conversion (see the manual for more information)</li>
<li>More flexible storage attachments: <acronym title="Compact Disc">CD</acronym>/<acronym title="Digital Versatile Disc">DVD</acronym> drives can be attached to an arbitrary IDE controller, and there can be more than one such drive (the manual for more information)</li>
<li>The network attachment type can be changed while a VM is running</li>
<li>Complete rewrite of experimental <acronym title="Universal Serial Bus">USB</acronym> support for OpenSolaris hosts making use of the latest <acronym title="Universal Serial Bus">USB</acronym> enhancements in Solaris Nevada 124 and higher</li>
<li>Significant performance improvements for PAE and AMD64 guests (VT-x and AMD-V only; normal (non-nested) paging)</li>
<li>Experimental support for EFI (Extensible Firmware Interface; see the manual for more information)</li>
<li>Support for paravirtualized network adapters (virtio-net; see the manual for more information)</li>
</ul>
<p>In addition, the following items were fixed and/or added:</p>
<ul>
<li>VMM: guest SMP fixes for certain rare cases</li>
<li>GUI: snapshots include a screenshot</li>
<li>GUI: locked storage media can be unmounted by force</li>
<li>GUI: the a log window grabbed all key events from other <acronym title="Graphical User Interface">GUI</acronym> windows (bug <a title="Focus/Text insertion problem when Log Viewer open =&gt; Fixed in SVN/3.1.0 (closed)" href="http://www.virtualbox.org/ticket/5291">#5291</a>)</li>
<li>GUI: allow to disable <acronym title="Universal Serial Bus">USB</acronym> filters (bug <a title="USB filter IsActive flag is not editable =&gt; Fixed in SVN (closed)" href="http://www.virtualbox.org/ticket/5426">#5426</a>)</li>
<li>GUI: improved memory slider in the VM settings</li>
<li>GUI: the <a href="http://www.virtualbox.org/"><span>VirtualBox</span> website</a> couldn&#8217;t be opened from the help menu (bug <a title="Failed to open VirtualBox Web Site from help-menu (XP host only) (closed)" href="http://www.virtualbox.org/ticket/4559">#4559</a>)</li>
<li>3D support: major performance improvement in VBO processing</li>
<li>3D support: added <em>GL_EXT_framebuffer_object</em>, <em>GL_EXT_compiled_vertex_array</em> support</li>
<li>3D support: fixed crashes in FarCry, SecondLife, Call of Duty, Unreal Tournament, Eve Online (bugs <a title="OpenGL: Call of Duty fails to start due to lacking GL extensions -&gt; Fixed  ... (closed)" href="http://www.virtualbox.org/ticket/2801">#2801</a>, <a title="Unreal Tournament crashes -&gt; Fixed in SVN. (closed)" href="http://www.virtualbox.org/ticket/2791">#2791</a>)</li>
<li>3D support: fixed graphics corruption in World of Warcraft (<a title="World of Warcraft under Virtualbox error -&gt; Fixed in SVN. (new)" href="http://www.virtualbox.org/ticket/2816">#2816</a>)</li>
<li>3D support: fixed Final frame of Compiz animation not updated to the screen (<a title="Final frame of Compiz animation not updated to the screen -&gt; Fixed in SVN. (reopened)" href="http://www.virtualbox.org/ticket/4653">#4653</a>)</li>
<li>3D support: fixed incorrect rendering of non ARGB textures under compiz</li>
<li>iSCSI: support iSCSI targets with more than 2TiB capacity</li>
<li>VRDP: fixed occasional VRDP server crash (bug <a title="VRDP issues segfault in VBoxHeadless (new)" href="http://www.virtualbox.org/ticket/5424">#5424</a>)</li>
<li>Network: fixed the E1000 emulation for QNX (and probably other) guests (bug <a title="QNX 6.4, no network with E1000 =&gt; Fixed in SVN (closed)" href="http://www.virtualbox.org/ticket/3206">#3206</a>)</li>
<li>NAT: added host resolver <acronym title="Domain Name Server">DNS</acronym> proxy (see the manual for more information)</li>
<li>VMDK: fixed incorrectly rejected big images split into 2G pieces (bug <a title="unable to parse large sparse vmdk file =&gt; fixed in svn (closed)" href="http://www.virtualbox.org/ticket/5523">#5523</a>, <a title="Adding new VMDK results in error and corrupted VMDK header =&gt; fixed in SVN (closed)" href="http://www.virtualbox.org/ticket/2787">#2787</a>)</li>
<li>VMDK: fixed compatibility issue with fixed or raw disk VMDK files (bug <a title="Rawdisk vmdk files created with VBoxManage command aren't compatible with  ... (closed)" href="http://www.virtualbox.org/ticket/2723">#2723</a>)</li>
<li>VHD: fixed incompatibility with Hyper-V</li>
<li>Support for Parallels version 2 disk image (<acronym title="Hard Disk Drive">HDD</acronym>) files; see the manual for more information</li>
<li>OVF: create manifest files on export and verify the content of an optional manifest file on import</li>
<li>OVF: fixed memory setting during import (bug <a title="Memory setting detected by import appliance wizard is incorrect -&gt; fixed  ... (closed)" href="http://www.virtualbox.org/ticket/4188">#4188</a>)</li>
<li>Mouse device: now five buttons are passed to the guest (bug <a title="Pass all mouse events to the guest -&gt; fixed in SVN (closed)" href="http://www.virtualbox.org/ticket/3773">#3773</a>)</li>
<li>VBoxHeadless: fixed loss of saved state when VM fails to start</li>
<li>VBoxSDL: fixed crash during shutdown (Windows hosts only)</li>
<li>X11 based hosts: allow the user to specify their own scan code layout (bug <a title="keys dead when remapped by xkb -&gt; fixed in SVN (closed)" href="http://www.virtualbox.org/ticket/2302">#2302</a>)</li>
<li>Mac <acronym title="Operating System">OS</acronym> X hosts: don&#8217;t auto show the menu and dock in fullscreen (bug <a title="Disable macosx top menu bar on fullscreen -&gt; fixed in 3.1.0/SVN (closed)" href="http://www.virtualbox.org/ticket/4866">#4866</a>)</li>
<li>Mac <acronym title="Operating System">OS</acronym> X hosts (64 bit): don&#8217;t interpret mouse wheel events as left click (bug <a title="Mouse wheel scrolling interpredted as click events in guest -&gt; fixed in  ... (closed)" href="http://www.virtualbox.org/ticket/5049">#5049</a>)</li>
<li>Mac <acronym title="Operating System">OS</acronym> X hosts: fixed a VM abort during shutdown under certain conditions</li>
<li>Solaris hosts: combined the kernel interface package into the <span>VirtualBox</span> main package</li>
<li>Solaris hosts: support for OpenSolaris Boomer architecture (with <acronym title="Open Source Software">OSS</acronym> audio backend).</li>
<li>Shared folders: VBOXSVR is visible in Network folder (Windows guests, bug <a title="VBOXSRV is not on the network (win2008) (closed)" href="http://www.virtualbox.org/ticket/4842">#4842</a>)</li>
<li>Shared folders: performance improvements (Windows guests, bug <a title="Slow performance of shared folders XP guest (reopened)" href="http://www.virtualbox.org/ticket/1728">#1728</a>)</li>
<li>Windows, Linux and Solaris Additions: added balloon tip notifier if <span>VirtualBox</span> host version was updated and Additions are out of date</li>
<li>Solaris guests: fixed keyboard emulation (bug <a title="Keyboard inoperative on Solaris 10 or Solaris 8 guest (new)" href="http://www.virtualbox.org/ticket/1589">#1589</a>)</li>
<li>Solaris Additions: fixed as_pagelock() failed errors affecting guest properties (bug <a title="OpenSolaris guest returns rtR0MemObjNativeLockUser: as_pagelock failed  ... (closed)" href="http://www.virtualbox.org/ticket/5337">#5337</a>)</li>
<li>Windows Additions: added automatic logon support for Windows Vista and Windows 7</li>
<li>Windows Additions: improved file version lookup for guest <acronym title="Operating System">OS</acronym> information</li>
<li>Windows Additions: fixed runtime <acronym title="Operating System">OS</acronym> detection on Windows 7 for session information</li>
<li>Windows Additions: fixed crash in seamless mode (contributed by Huihong Luo)</li>
<li>Linux Additions: added support for uninstalling the Linux Guest Additions (bug <a title="Guest Additions for Linux cannot be uninstalled -&gt; fixed in SVN (closed)" href="http://www.virtualbox.org/ticket/4039">#4039</a>)</li>
<li>Linux guest shared folders: allow mounting a shared folder if a file of the same name as the folder exists in the current directory (bug <a title="Mounting share directory on Linux host result in Protocol error if default  ... (new)" href="http://www.virtualbox.org/ticket/928">#928</a>)</li>
<li>SDK: added object-oriented web service bindings for PHP5</li>
</ul>
</blockquote>
<p>Overall this is a solid new release from Sun &#8211; unsure about its stability as I&#8217;ve only been running a few VMs (Windows 2003, CentOS and Fedora 12) for about 10-12hrs. Nothing bad as yet.</p>
<p>Download from the <a href="http://www.virtualbox.org/wiki/Downloads">VirtualBox site</a>:</p>
<ul>
<li><strong>VirtualBox 3.1.0 for Windows hosts</strong> <a href="http://download.virtualbox.org/virtualbox/3.1.0/VirtualBox-3.1.0-55467-Win.exe"><span>x86/amd64</span></a></li>
</ul>
<ul>
<li><strong>VirtualBox 3.1.0 for <acronym title="Operating System">OS</acronym> X hosts</strong> <a href="http://download.virtualbox.org/virtualbox/3.1.0/VirtualBox-3.1.0-55467-OSX.dmg"><span>Intel Macs</span></a></li>
</ul>
<ul>
<li><strong><a href="http://www.virtualbox.org/wiki/Linux_Downloads">VirtualBox 3.1.0 for Linux hosts</a></strong></li>
</ul>
<ul>
<li><strong>VirtualBox 3.1.0 for Solaris and OpenSolaris hosts</strong> <a href="http://download.virtualbox.org/virtualbox/3.1.0/VirtualBox-3.1.0-55467-SunOS.tar.gz"><span>x86/amd64</span></a></li>
</ul>
<p>Enjoy!</p><div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="medium" count="1" href="http://www.thushanfernando.com/index.php/2009/12/01/virtualbox-3-1-released/">{lang: 'en-GB'}</g:plusone></div><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.thushanfernando.com%2Findex.php%2F2009%2F12%2F01%2Fvirtualbox-3-1-released%2F&amp;title=VirtualBox%203.1%20released%21" id="wpa2a_6"><img src="http://www.thushanfernando.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>Related posts:<ol>
<li><a href='http://www.thushanfernando.com/index.php/2009/07/01/time-flies-virtualbox-3-0-final-is-out/' rel='bookmark' title='Time flies: VirtualBox 3.0 final is out!'>Time flies: VirtualBox 3.0 final is out!</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2008/12/18/sun-ushers-in-virtualbox-21-with-cool-new-features/' rel='bookmark' title='Sun ushers in VirtualBox 2.1 with cool new features!'>Sun ushers in VirtualBox 2.1 with cool new features!</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2009/07/13/virtualbox-3-0-2-released-with-smp-and-network-io-fixes/' rel='bookmark' title='VirtualBox 3.0.2 released with SMP and Network IO fixes'>VirtualBox 3.0.2 released with SMP and Network IO fixes</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.thushanfernando.com/index.php/2009/12/01/virtualbox-3-1-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 NetBIOS Kernel Crash, 1997 all over again :(</title>
		<link>http://www.thushanfernando.com/index.php/2009/11/12/windows-7-netbios-kernel-crash-1997-all-over-again/</link>
		<comments>http://www.thushanfernando.com/index.php/2009/11/12/windows-7-netbios-kernel-crash-1997-all-over-again/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 12:50:12 +0000</pubDate>
		<dc:creator>Thushan Fernando</dc:creator>
				<category><![CDATA[Developer]]></category>
		<category><![CDATA[Kernel / Internals]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[exploit]]></category>
		<category><![CDATA[netbios]]></category>
		<category><![CDATA[smb]]></category>
		<category><![CDATA[windows 7]]></category>
		<category><![CDATA[winnuke]]></category>

		<guid isPermaLink="false">http://www.thushanfernando.com/?p=976</guid>
		<description><![CDATA[Looks like Windows 7 is vulnerable to an SMB remote exploit. Unfortunatly this SMB2 security issue is specificaly due to a MS patch, for another SMB2.0 security issue: KB942624 (MS07-063) Installing only this specific update on Vista SP0 create the following issue: SRV2.SYS fails to handle malformed SMB headers for the NEGOTIATE PROTOCOL REQUEST functionnality. [...]
Related posts:<ol>
<li><a href='http://www.thushanfernando.com/index.php/2008/10/29/going-deep-inside-windows-7-with-mark-russinovich/' rel='bookmark' title='Going Deep: Inside Windows 7 with Mark Russinovich'>Going Deep: Inside Windows 7 with Mark Russinovich</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2008/12/13/window-7-information-about-the-leaked-build-from-winhec-china/' rel='bookmark' title='Window 7: Information about the leaked build from WinHEC China'>Window 7: Information about the leaked build from WinHEC China</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2009/03/14/engineering-windows-7-just-a-few-more-changes-from-beta-to-rc/' rel='bookmark' title='Engineering Windows 7: Just a few more changes from Beta to RC'>Engineering Windows 7: Just a few more changes from Beta to RC</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Looks like <a href="http://g-laurent.blogspot.com/2009/09/windows-vista7-smb20-negotiate-protocol.html">Windows 7 is vulnerable to an SMB remote exploit</a>.</p>
<blockquote><p>Unfortunatly this SMB2 security issue is specificaly due to a <acronym title="Microsoft">MS</acronym> patch, for another SMB2.0 security issue:<br />
KB942624 (MS07-063)<br />
Installing only this specific update on Vista SP0 create the following issue:</p>
<p>SRV2.SYS fails to handle malformed SMB headers for the NEGOTIATE PROTOCOL REQUEST functionnality.<br />
The NEGOTIATE PROTOCOL REQUEST is the first SMB query a client send to a SMB server, and it&#8217;s used to identify the SMB dialect that will be used for futher communication.</p></blockquote>
<p>Reminds me of the days of <a href="http://en.wikipedia.org/wiki/WinNuke">WinNuke</a>.</p><div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="medium" count="1" href="http://www.thushanfernando.com/index.php/2009/11/12/windows-7-netbios-kernel-crash-1997-all-over-again/">{lang: 'en-GB'}</g:plusone></div><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.thushanfernando.com%2Findex.php%2F2009%2F11%2F12%2Fwindows-7-netbios-kernel-crash-1997-all-over-again%2F&amp;title=Windows%207%20NetBIOS%20Kernel%20Crash%2C%201997%20all%20over%20again%20%3A%28" id="wpa2a_8"><img src="http://www.thushanfernando.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>Related posts:<ol>
<li><a href='http://www.thushanfernando.com/index.php/2008/10/29/going-deep-inside-windows-7-with-mark-russinovich/' rel='bookmark' title='Going Deep: Inside Windows 7 with Mark Russinovich'>Going Deep: Inside Windows 7 with Mark Russinovich</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2008/12/13/window-7-information-about-the-leaked-build-from-winhec-china/' rel='bookmark' title='Window 7: Information about the leaked build from WinHEC China'>Window 7: Information about the leaked build from WinHEC China</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2009/03/14/engineering-windows-7-just-a-few-more-changes-from-beta-to-rc/' rel='bookmark' title='Engineering Windows 7: Just a few more changes from Beta to RC'>Engineering Windows 7: Just a few more changes from Beta to RC</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.thushanfernando.com/index.php/2009/11/12/windows-7-netbios-kernel-crash-1997-all-over-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Four new Windows 7 Ads</title>
		<link>http://www.thushanfernando.com/index.php/2009/10/22/four-new-windows-7-ads/</link>
		<comments>http://www.thushanfernando.com/index.php/2009/10/22/four-new-windows-7-ads/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 10:05:43 +0000</pubDate>
		<dc:creator>Thushan Fernando</dc:creator>
				<category><![CDATA[Developer]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[crapple]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[switch ads]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://www.thushanfernando.com/?p=932</guid>
		<description><![CDATA[Here&#8217;s four new Microsoft Windows 7 commercials, 7 seconds to talk about Windows 7.  Short, sweet functionality and to the point. Oh  and look, they don&#8217;t seem to need to be bashing their competitors (awww!). www.youtube.com/watch?v=jK-nMQiLzts www.youtube.com/watch?v=7szEK7ZFMHU www.youtube.com/watch?v=DAD_Mtk88bg www.youtube.com/watch?v=TGth7i2lCXY Having used Windows 7 now for close to 2 months I have to say its nothing [...]
Related posts:<ol>
<li><a href='http://www.thushanfernando.com/index.php/2009/01/08/steve-balmer-announces-the-availability-of-windows-7-beta/' rel='bookmark' title='Steve Balmer Announces the availability of Windows 7 Beta!'>Steve Balmer Announces the availability of Windows 7 Beta!</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2009/03/14/engineering-windows-7-just-a-few-more-changes-from-beta-to-rc/' rel='bookmark' title='Engineering Windows 7: Just a few more changes from Beta to RC'>Engineering Windows 7: Just a few more changes from Beta to RC</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2009/05/01/windows-7-release-candidate-is-available-from-microsoft/' rel='bookmark' title='Windows 7 Release Candidate Is Available From Microsoft'>Windows 7 Release Candidate Is Available From Microsoft</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Here&#8217;s four new <a href="http://www.microsoft.com/windows/windows-7/">Microsoft Windows 7</a> commercials, 7 seconds to talk about Windows 7.  Short, sweet functionality and to the point. Oh  and look, they don&#8217;t <a href="http://www.apple.com/getamac/ads/">seem to need to be bashing their competitors</a> (awww!).</p>
<p style="text-align: center;">
<p><a href="http://www.youtube.com/watch?v=jK-nMQiLzts">www.youtube.com/watch?v=jK-nMQiLzts</a></p>
</p>
<p style="text-align: center;">
<p><a href="http://www.youtube.com/watch?v=7szEK7ZFMHU">www.youtube.com/watch?v=7szEK7ZFMHU</a></p>
</p>
<p style="text-align: center;">
<p><a href="http://www.youtube.com/watch?v=DAD_Mtk88bg">www.youtube.com/watch?v=DAD_Mtk88bg</a></p>
</p>
<p style="text-align: center;">
<p><a href="http://www.youtube.com/watch?v=TGth7i2lCXY">www.youtube.com/watch?v=TGth7i2lCXY</a></p>
</p>
<p style="text-align: left;">Having used Windows 7 now for close to 2 months I have to say its nothing but pure awesomeness. If you have <acronym title="Microsoft Developer Network">MSDN</acronym> there&#8217;s no excuse not to try it out. I&#8217;ve been too busy to even blog about it <img src='http://www.thushanfernando.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p><div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="medium" count="1" href="http://www.thushanfernando.com/index.php/2009/10/22/four-new-windows-7-ads/">{lang: 'en-GB'}</g:plusone></div><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.thushanfernando.com%2Findex.php%2F2009%2F10%2F22%2Ffour-new-windows-7-ads%2F&amp;title=Four%20new%20Windows%207%20Ads" id="wpa2a_10"><img src="http://www.thushanfernando.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>Related posts:<ol>
<li><a href='http://www.thushanfernando.com/index.php/2009/01/08/steve-balmer-announces-the-availability-of-windows-7-beta/' rel='bookmark' title='Steve Balmer Announces the availability of Windows 7 Beta!'>Steve Balmer Announces the availability of Windows 7 Beta!</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2009/03/14/engineering-windows-7-just-a-few-more-changes-from-beta-to-rc/' rel='bookmark' title='Engineering Windows 7: Just a few more changes from Beta to RC'>Engineering Windows 7: Just a few more changes from Beta to RC</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2009/05/01/windows-7-release-candidate-is-available-from-microsoft/' rel='bookmark' title='Windows 7 Release Candidate Is Available From Microsoft'>Windows 7 Release Candidate Is Available From Microsoft</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.thushanfernando.com/index.php/2009/10/22/four-new-windows-7-ads/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Visual Studio 2010 Beta 2 is out!</title>
		<link>http://www.thushanfernando.com/index.php/2009/10/21/visual-studio-2010-beta-2-is-out/</link>
		<comments>http://www.thushanfernando.com/index.php/2009/10/21/visual-studio-2010-beta-2-is-out/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 10:38:32 +0000</pubDate>
		<dc:creator>Thushan Fernando</dc:creator>
				<category><![CDATA[.NET / CLR / C#]]></category>
		<category><![CDATA[Beta]]></category>
		<category><![CDATA[Developer]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[.net 4.0]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[concurrency]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[java 7]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[multi-threaded]]></category>
		<category><![CDATA[sun]]></category>
		<category><![CDATA[threading]]></category>
		<category><![CDATA[ultimate]]></category>
		<category><![CDATA[visual studio]]></category>
		<category><![CDATA[visual studio 2010]]></category>
		<category><![CDATA[vs.net]]></category>

		<guid isPermaLink="false">http://www.thushanfernando.com/?p=927</guid>
		<description><![CDATA[Microsoft has just released VisualStudio 2010 Beta 2 to MSDN Subscribers &#8211; aka Rosario. I&#8217;m not sure why they&#8217;re going with the ULTIMATE moniker for Visual Studio, I still prefer the VS6 style Standard, Professional, Enterprise. Meh. Microsoft Visual Studio 2010 Ultimate with MSDN The comprehensive suite of application lifecycle management tools for software teams [...]
Related posts:<ol>
<li><a href='http://www.thushanfernando.com/index.php/2009/05/19/hot-booty-visual-studio-2010-beta-launches/' rel='bookmark' title='Hot Booty: Visual Studio 2010 Beta Launches!'>Hot Booty: Visual Studio 2010 Beta Launches!</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2008/10/14/microsoft-releases-silverlight-2-and-openoffice-30-goes-out-the-door/' rel='bookmark' title='Microsoft releases Silverlight 2, and OpenOffice 3.0 goes out the door!'>Microsoft releases Silverlight 2, and OpenOffice 3.0 goes out the door!</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2008/11/18/microsoft-releases-singularity-20-research-development-kit-rdk/' rel='bookmark' title='Microsoft Releases Singularity 2.0 Research Development Kit (RDK)'>Microsoft Releases Singularity 2.0 Research Development Kit (RDK)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Microsoft has just released <a href="https://msdn.microsoft.com/en-au/subscriptions/securedownloads/default.aspx">VisualStudio 2010 Beta 2 to <acronym title="Microsoft Developer Network">MSDN</acronym> Subscribers</a> &#8211; aka Rosario.</p>
<p><a href="http://www.thushanfernando.com/wp-content/uploads/2009/10/msn_visual_studio_2010.png"><img class="aligncenter size-full wp-image-928" title="msn_visual_studio_2010" src="http://www.thushanfernando.com/wp-content/uploads/2009/10/msn_visual_studio_2010.png" alt="msn_visual_studio_2010" width="673" height="371" /></a></p>
<p>I&#8217;m not sure why they&#8217;re going with the <a href="http://blogs.msdn.com/innov8showcase/archive/2009/10/19/visual-studio-2010-beta-2-released.aspx">ULTIMATE moniker for Visual Studio</a>, I still prefer the VS6 style Standard, Professional, Enterprise. Meh.</p>
<ul>
<li><strong>Microsoft Visual Studio 2010 Ultimate with <acronym title="Microsoft Developer Network">MSDN</acronym></strong><br />
The comprehensive suite of application lifecycle management tools for software teams to ensure quality results from design to deployment.</li>
<li><strong>Microsoft Visual Studio 2010 Premium with <acronym title="Microsoft Developer Network">MSDN</acronym></strong><br />
A complete toolset for developers to deliver scalable, high quality applications.</li>
<li><strong>Microsoft Visual Studio 2010 Professional with <acronym title="Microsoft Developer Network">MSDN</acronym></strong><br />
The essential tool for professional development tasks to assist developers in implementing their ideas easily. (Note: Visual Studio 2010 Professional will also be available without <acronym title="Microsoft Developer Network">MSDN</acronym> subscription)</li>
</ul>
<p>Some of the more exciting things that are coming with <a href="http://www.microsoft.com/visualstudio/en-us/products/2010/default.mspx">Visual Studio 2010</a> are <a href="http://msdn.microsoft.com/en-us/library/bb386063%28VS.100%29.aspx">documented on <acronym title="Microsoft Developer Network">MSDN</acronym></a> or a <a href="http://www.vikasgoyal.net/net/What%27s%20New%20in%20Visual%20Studio%202010%20Rosario.aspx">better one would be Vikas Goyal&#8217;s post</a> and also <a href="http://www.vikasgoyal.net/net/What%27s%20New%20in%20.NET%204.0.aspx">his .NET 4.0 coverage</a>.. Personally the Parallel extensions are the most exciting bits for me. The new <a href="http://java.dzone.com/news/javaone-brian-goetz-concurrenc">Java 7 work is concentrating heavily on concurrency</a> and its good to see both camps pushing the boundaries.</p><div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="medium" count="1" href="http://www.thushanfernando.com/index.php/2009/10/21/visual-studio-2010-beta-2-is-out/">{lang: 'en-GB'}</g:plusone></div><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.thushanfernando.com%2Findex.php%2F2009%2F10%2F21%2Fvisual-studio-2010-beta-2-is-out%2F&amp;title=Visual%20Studio%202010%20Beta%202%20is%20out%21" id="wpa2a_12"><img src="http://www.thushanfernando.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>Related posts:<ol>
<li><a href='http://www.thushanfernando.com/index.php/2009/05/19/hot-booty-visual-studio-2010-beta-launches/' rel='bookmark' title='Hot Booty: Visual Studio 2010 Beta Launches!'>Hot Booty: Visual Studio 2010 Beta Launches!</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2008/10/14/microsoft-releases-silverlight-2-and-openoffice-30-goes-out-the-door/' rel='bookmark' title='Microsoft releases Silverlight 2, and OpenOffice 3.0 goes out the door!'>Microsoft releases Silverlight 2, and OpenOffice 3.0 goes out the door!</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2008/11/18/microsoft-releases-singularity-20-research-development-kit-rdk/' rel='bookmark' title='Microsoft Releases Singularity 2.0 Research Development Kit (RDK)'>Microsoft Releases Singularity 2.0 Research Development Kit (RDK)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.thushanfernando.com/index.php/2009/10/21/visual-studio-2010-beta-2-is-out/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Lets Get The Party Started: Windows 7 House Party!</title>
		<link>http://www.thushanfernando.com/index.php/2009/09/03/lets-get-the-party-started-windows-7-house-party/</link>
		<comments>http://www.thushanfernando.com/index.php/2009/09/03/lets-get-the-party-started-windows-7-house-party/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 10:06:55 +0000</pubDate>
		<dc:creator>Thushan Fernando</dc:creator>
				<category><![CDATA[Beta]]></category>
		<category><![CDATA[Developer]]></category>
		<category><![CDATA[Gaming]]></category>
		<category><![CDATA[News & Events]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[launch party]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://www.thushanfernando.com/?p=830</guid>
		<description><![CDATA[Excited about Windows 7 launch to the public in October? Organise a party and get some swagger! Choose a day from October 22-29 and if you&#8217;re selected, you&#8217;ll not only receive a special Signature Edition of Windows® 7 Ultimate but your very own Windows® 7 Party Pack. Countries allowed to partaye! Australia Canada France Germany [...]
Related posts:<ol>
<li><a href='http://www.thushanfernando.com/index.php/2009/03/14/engineering-windows-7-just-a-few-more-changes-from-beta-to-rc/' rel='bookmark' title='Engineering Windows 7: Just a few more changes from Beta to RC'>Engineering Windows 7: Just a few more changes from Beta to RC</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2009/05/01/windows-7-release-candidate-is-available-from-microsoft/' rel='bookmark' title='Windows 7 Release Candidate Is Available From Microsoft'>Windows 7 Release Candidate Is Available From Microsoft</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2009/07/23/windows-7-rtms-finally/' rel='bookmark' title='Windows 7 RTMs finally'>Windows 7 RTMs finally</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Excited about Windows 7 launch to the public in October? <a href="http://houseparty.com/windows7">Organise a party and get some swagger</a>!</p>
<blockquote><p>Choose a day from October 22-29 and if you&#8217;re selected, you&#8217;ll not only receive a special Signature Edition of Windows<small>®</small> 7 Ultimate but your very own Windows<small>®</small> 7 Party Pack.</p></blockquote>
<div><a href="http://www.thushanfernando.com/wp-content/uploads/2009/09/nerds_win7party1.jpg"><img class="size-full wp-image-832 alignright" title="nerds_win7party" src="http://www.thushanfernando.com/wp-content/uploads/2009/09/nerds_win7party1.jpg" alt="Windows 7 Partaye!" width="350" height="262" /></a></div>
<p>Countries allowed to partaye!</p>
<ul>
<li><strong>Australia</strong></li>
<li>Canada</li>
<li>France</li>
<li>Germany</li>
<li>HongKong</li>
<li>India</li>
<li>Italy</li>
<li>Japan</li>
<li>Mexico</li>
<li>Spain</li>
<li>UK</li>
<li>USA</li>
</ul>
<p>Get the details and <a href="http://www.youtube.com/watch?v=wMGcod6f00o">lets get this party started</a>. (Did I mention I don&#8217;t like <a href="http://en.wikipedia.org/wiki/Pink_(singer)">Pink</a>?)</p><div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="medium" count="1" href="http://www.thushanfernando.com/index.php/2009/09/03/lets-get-the-party-started-windows-7-house-party/">{lang: 'en-GB'}</g:plusone></div><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.thushanfernando.com%2Findex.php%2F2009%2F09%2F03%2Flets-get-the-party-started-windows-7-house-party%2F&amp;title=Lets%20Get%20The%20Party%20Started%3A%20Windows%207%20House%20Party%21" id="wpa2a_14"><img src="http://www.thushanfernando.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>Related posts:<ol>
<li><a href='http://www.thushanfernando.com/index.php/2009/03/14/engineering-windows-7-just-a-few-more-changes-from-beta-to-rc/' rel='bookmark' title='Engineering Windows 7: Just a few more changes from Beta to RC'>Engineering Windows 7: Just a few more changes from Beta to RC</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2009/05/01/windows-7-release-candidate-is-available-from-microsoft/' rel='bookmark' title='Windows 7 Release Candidate Is Available From Microsoft'>Windows 7 Release Candidate Is Available From Microsoft</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2009/07/23/windows-7-rtms-finally/' rel='bookmark' title='Windows 7 RTMs finally'>Windows 7 RTMs finally</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.thushanfernando.com/index.php/2009/09/03/lets-get-the-party-started-windows-7-house-party/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ars Technica reviews Mac OS X 10.6 Leopard</title>
		<link>http://www.thushanfernando.com/index.php/2009/09/02/ars-technica-reviews-mac-os-x-10-6-leopard/</link>
		<comments>http://www.thushanfernando.com/index.php/2009/09/02/ars-technica-reviews-mac-os-x-10-6-leopard/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 11:23:40 +0000</pubDate>
		<dc:creator>Thushan Fernando</dc:creator>
				<category><![CDATA[Developer]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[snow leopard]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://www.thushanfernando.com/?p=820</guid>
		<description><![CDATA[The only review you&#8217;ll ever need to read for the newly released Apple OS X 10.6 Leopard from Ars. Having used 10.6 for a few days now (yes believe it or not I do have a couple of Macs at home!) I&#8217;ve felt it to be snappier than the original Leopard the Macbook and iMac [...]
Related posts:<ol>
<li><a href='http://www.thushanfernando.com/index.php/2009/08/02/apple-security-im-in-yo-keeboards-hax0ring-yo-porn-sitez/' rel='bookmark' title='Apple Security: I&#8217;m in yo keeboards hax0ring yo porn sitez.'>Apple Security: I&#8217;m in yo keeboards hax0ring yo porn sitez.</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2008/10/29/windows-se7en-so-it-begins/' rel='bookmark' title='Windows Se7en: So it begins&#8230;'>Windows Se7en: So it begins&#8230;</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2008/12/27/pre-christmas-cheer-paul-thurrott-previews-windows-7-beta-1/' rel='bookmark' title='Pre-Christmas Cheer, Paul Thurrott previews Windows 7 Beta 1'>Pre-Christmas Cheer, Paul Thurrott previews Windows 7 Beta 1</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The only review you&#8217;ll ever need to read for the newly released <a href="http://arstechnica.com/apple/reviews/2009/08/mac-os-x-10-6.ars">Apple <acronym title="Operating System">OS</acronym> X 10.6 Leopard from Ars</a>.</p>
<p style="text-align: center;"><a href="http://arstechnica.com/apple/reviews/2009/08/mac-os-x-10-6.ars"><img class="aligncenter" src="http://static.arstechnica.com/assets/2009/08/snow_leopard_ars-thumb-640xauto-8029.jpg" alt="" width="640" height="360" /></a></p>
<p style="text-align: left;">Having used 10.6 for a few days now (yes believe it or not I do have a couple of Macs at home!) I&#8217;ve felt it to be snappier than the original Leopard the <a href="http://www.apple.com/macbook/">Macbook</a> and <a href="http://www.apple.com/imac/">iMac</a> shipped with. Still my main box is a <a href="http://www.microsoft.com/windows/windows-7/">Windows 7</a> machine <img src='http://www.thushanfernando.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  But I&#8217;d highly recommend installing 10.6 if you&#8217;re running 10.5 *after* you&#8217;ve made sure all your software is compatible, unfortunately <a href="http://blogs.adobe.com/jnack/2009/08/adobe_snow_leopard_faq.html">Adobe CS3 <span style="text-decoration: line-through;">is not supported</span> in 10.6</a> (I mean not working in <a href="http://www.apple.com/macosx/">Snow Leopard</a>), so I went out and got CS4 for Mac.</p>
<blockquote>
<p style="text-align: left;">[<strong>Update</strong>: No one said anything about CS3 being "not supported" on Snow Leopard. The plan, however, is not to take resources away from other efforts (e.g. porting Photoshop to Cocoa) in order to modify 2.5-year-old software in response to changes Apple makes in the <acronym title="Operating System">OS</acronym> foundation.]</p>
</blockquote>
<p style="text-align: left;">Lovely.</p><div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="medium" count="1" href="http://www.thushanfernando.com/index.php/2009/09/02/ars-technica-reviews-mac-os-x-10-6-leopard/">{lang: 'en-GB'}</g:plusone></div><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.thushanfernando.com%2Findex.php%2F2009%2F09%2F02%2Fars-technica-reviews-mac-os-x-10-6-leopard%2F&amp;title=Ars%20Technica%20reviews%20Mac%20OS%20X%2010.6%20Leopard" id="wpa2a_16"><img src="http://www.thushanfernando.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>Related posts:<ol>
<li><a href='http://www.thushanfernando.com/index.php/2009/08/02/apple-security-im-in-yo-keeboards-hax0ring-yo-porn-sitez/' rel='bookmark' title='Apple Security: I&#8217;m in yo keeboards hax0ring yo porn sitez.'>Apple Security: I&#8217;m in yo keeboards hax0ring yo porn sitez.</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2008/10/29/windows-se7en-so-it-begins/' rel='bookmark' title='Windows Se7en: So it begins&#8230;'>Windows Se7en: So it begins&#8230;</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2008/12/27/pre-christmas-cheer-paul-thurrott-previews-windows-7-beta-1/' rel='bookmark' title='Pre-Christmas Cheer, Paul Thurrott previews Windows 7 Beta 1'>Pre-Christmas Cheer, Paul Thurrott previews Windows 7 Beta 1</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.thushanfernando.com/index.php/2009/09/02/ars-technica-reviews-mac-os-x-10-6-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 available for MSDN and Technet subscribers!</title>
		<link>http://www.thushanfernando.com/index.php/2009/08/08/windows-7-available-for-msdn-and-technet-subscribers/</link>
		<comments>http://www.thushanfernando.com/index.php/2009/08/08/windows-7-available-for-msdn-and-technet-subscribers/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 02:53:42 +0000</pubDate>
		<dc:creator>Thushan Fernando</dc:creator>
				<category><![CDATA[.NET / CLR / C#]]></category>
		<category><![CDATA[Developer]]></category>
		<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[6.1.7600.16385.090713-1255]]></category>
		<category><![CDATA[7600.16385]]></category>
		<category><![CDATA[Beta]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[windows 7]]></category>
		<category><![CDATA[Windows Beta]]></category>

		<guid isPermaLink="false">http://www.thushanfernando.com/?p=803</guid>
		<description><![CDATA[A bit late on this one, Windows 7 has finally hit MSDN and Technet subscribers, go grab your product key and ISO. As posted earlier the Windows 7 hashes remain the same. Dont forget to grab the latest Windows 7 SDK and the RTM version of the Windows API Code Pack for .NET Framework. From [...]
Related posts:<ol>
<li><a href='http://www.thushanfernando.com/index.php/2009/07/23/windows-7-rtms-finally/' rel='bookmark' title='Windows 7 RTMs finally'>Windows 7 RTMs finally</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2008/10/29/windows-se7en-so-it-begins/' rel='bookmark' title='Windows Se7en: So it begins&#8230;'>Windows Se7en: So it begins&#8230;</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2009/01/09/windows-se7en-feedback/' rel='bookmark' title='Windows Se7en, feedback.'>Windows Se7en, feedback.</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">A bit late on this one, <a href="http://www.thushanfernando.com/index.php/tag/windows-7/">Windows 7</a> has finally hit <a href="https://msdn.microsoft.com/en-gb/subscriptions/securedownloads/default.aspx"><acronym title="Microsoft Developer Network">MSDN</acronym></a> and <a href="http://windowsteamblog.com/blogs/windows7/archive/2009/08/06/windows-7-rtm-available-today-for-msdn-amp-technet-subscribers.aspx">Technet subscribers</a>, go grab your product key and <acronym title="International Organization for Standardization">ISO</acronym>.</p>
<a href="http://www.thushanfernando.com/wp-content/uploads/2009/08/windows7_msdn.png"><img class="size-full wp-image-804" title="windows7_msdn" src="http://www.thushanfernando.com/wp-content/uploads/2009/08/windows7_msdn.png" alt="Windows 7 MSDN" width="954" height="480" /></a>
<p>As <a href="http://www.thushanfernando.com/index.php/2009/07/23/windows-7-rtms-finally/">posted earlier the Windows 7 hashes</a> remain the same. Dont forget to grab the latest <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=71deb800-c591-4f97-a900-bea146e4fae1&amp;displaylang=en" target="_blank">Windows 7 <acronym title="Software Development Kit">SDK</acronym></a> and the RTM version of the <a href="http://code.msdn.microsoft.com/WindowsAPICodePack">Windows <acronym title="Application Programming Interface">API</acronym> Code Pack for .NET Framework</a>.<a href="http://code.msdn.microsoft.com/WindowsAPICodePack"></a></p>
<p>From Channel 9:</p>
<ul>
<li><a href="http://channel9.msdn.com/windows/using/">Using Windows 7</a> – Contains consumer- and user-related videos such as how to install Windows 7 and how to set up a home group network</li>
<li><a href="http://channel9.msdn.com/windows/programming/">Programming Windows 7</a> – I don’t really need to explain what goes here, right?</li>
<li>Last but not least, “<a href="http://channel9.msdn.com/windows/under-the-hood/">Under the Hood</a>” – Contains classics like the <a href="http://channel9.msdn.com/shows/Going+Deep/Mark-Russinovich-Inside-Windows-7/">interview with Mark Russinovich</a> on Windows 7 Internals.</li>
</ul>
<p>Enjoy, I&#8217;m house hunting this weekend!</p><div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="medium" count="1" href="http://www.thushanfernando.com/index.php/2009/08/08/windows-7-available-for-msdn-and-technet-subscribers/">{lang: 'en-GB'}</g:plusone></div><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.thushanfernando.com%2Findex.php%2F2009%2F08%2F08%2Fwindows-7-available-for-msdn-and-technet-subscribers%2F&amp;title=Windows%207%20available%20for%20MSDN%20and%20Technet%20subscribers%21" id="wpa2a_18"><img src="http://www.thushanfernando.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>Related posts:<ol>
<li><a href='http://www.thushanfernando.com/index.php/2009/07/23/windows-7-rtms-finally/' rel='bookmark' title='Windows 7 RTMs finally'>Windows 7 RTMs finally</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2008/10/29/windows-se7en-so-it-begins/' rel='bookmark' title='Windows Se7en: So it begins&#8230;'>Windows Se7en: So it begins&#8230;</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2009/01/09/windows-se7en-feedback/' rel='bookmark' title='Windows Se7en, feedback.'>Windows Se7en, feedback.</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.thushanfernando.com/index.php/2009/08/08/windows-7-available-for-msdn-and-technet-subscribers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Apple Security: I&#8217;m in yo keeboards hax0ring yo porn sitez.</title>
		<link>http://www.thushanfernando.com/index.php/2009/08/02/apple-security-im-in-yo-keeboards-hax0ring-yo-porn-sitez/</link>
		<comments>http://www.thushanfernando.com/index.php/2009/08/02/apple-security-im-in-yo-keeboards-hax0ring-yo-porn-sitez/#comments</comments>
		<pubDate>Sun, 02 Aug 2009 01:42:21 +0000</pubDate>
		<dc:creator>Thushan Fernando</dc:creator>
				<category><![CDATA[Beta]]></category>
		<category><![CDATA[Developer]]></category>
		<category><![CDATA[Humour]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[blackhat]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[losers]]></category>
		<category><![CDATA[macs]]></category>
		<category><![CDATA[scam]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://www.thushanfernando.com/?p=776</guid>
		<description><![CDATA[I&#8217;ll let you decide if this is LOL worthy. APPLE KEYBOARDS ARE vulnerable to a hack that puts keyloggers and malware directly into the keyboard. This could be a serious problem, and now that the presentation and code is out there, the bad guys will surely be exploiting it. The vulnerability was discovered by K. [...]
Related posts:<ol>
<li><a href='http://www.thushanfernando.com/index.php/2008/12/13/window-7-information-about-the-leaked-build-from-winhec-china/' rel='bookmark' title='Window 7: Information about the leaked build from WinHEC China'>Window 7: Information about the leaked build from WinHEC China</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2009/01/10/getting-a-windows-7-beta-1-product-key/' rel='bookmark' title='Getting a Windows 7 Beta 1 Product Key'>Getting a Windows 7 Beta 1 Product Key</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2008/10/29/going-deep-inside-windows-7-with-mark-russinovich/' rel='bookmark' title='Going Deep: Inside Windows 7 with Mark Russinovich'>Going Deep: Inside Windows 7 with Mark Russinovich</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll let you decide if <a href="http://www.semiaccurate.com/2009/07/31/apple-keyboard-firmware-hack-demonstrated/">this is <acronym title="Laughing out loud">LOL</acronym> worthy</a>.</p>
<blockquote><p><strong>APPLE KEYBOARDS ARE</strong> vulnerable to a hack that puts keyloggers and malware directly into the keyboard. This could be a serious problem, and now that the presentation and code is out there, the bad guys will surely be exploiting it.</p>
<p>The vulnerability was discovered by K. Chen, and he gave a <a href="http://www.blackhat.com/html/bh-usa-09/bh-usa-09-archives.html#Chen" target="_blank">talk on it at Blackhat</a> this year. The concept is simple, a modern Apple keyboard has about 8K of flash memory, and 256 bytes of working ram. For the intelligent, this is more than enough space to have a field day.</p>
<p>&#8230;</p>
<p>Nothing is encrypted, decrypted, and the process is simple. You then resume HIDFirmwareUpdaterTool, and in a few seconds, your keyboard is compromised. Formatting the <acronym title="Operating System">OS</acronym> won&#8217;t do you any good, the code is in keyboard flash. There are no batteries to pull, no nothing, the keyboard is simply compromised.</p></blockquote>
<p style="text-align: justify;">Then from the <a href="http://www.blackhat.com/presentations/bh-usa-09/CHEN/BHUSA09-Chen-RevAppleFirm-PAPER.pdf">proof of concept document</a>:</p>
<blockquote><p>The application checks a number of properties of the keyboard and checks the validity of the ?rmware image ?le kbd 0&#215;0069 0&#215;0220.irrxfw in the bundle. The ?rmware validity checking routine is called CRC32: and is the 75 byte routine starting at 0&#215;00003005. Despite the name,<em><strong> this routine does not do CRC32 at all and in fact</strong></em>, it simply just adds up the bytes of the ?rmware image ?le and the application veri?es that the sum is 0x252ed7.</p></blockquote>
<p>EPIC FAIL. While the rest of the world has been working hard on securing the fabrics of their kernel, Apple have concentrated on <a href="http://www.apple.com/macosx/refinements/">painting the Lepoard with new stripes</a>. Before you fall into a trap thinking this isn&#8217;t as big as they make it out to be &#8211; because you need physical (and root) access to update firmware (and the user would have to approve), think of malware or a Safari related exploit. How many security conscience Mac users are there do you think? Wasn&#8217;t the original deal move to Mac and forget all your troubles?</p>
<p>Surely Apple can&#8217;t be the only keyboard at fault, I&#8217;m sure my <a href="http://www.razerzone.com/gaming-keyboards/razer-tarantula/">Razer Tarrantula</a> (with a few modifications) can fall into the same trap &#8211; atleast you&#8217;d hope so, for Apple&#8217;s sake (or not!).</p>
<p>Anyway, woo <a href="http://www.thushanfernando.com/index.php/tag/windows-7/">WINdows 7</a> to Technet/<acronym title="Microsoft Developer Network">MSDN</acronym> guys this week!</p><div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="medium" count="1" href="http://www.thushanfernando.com/index.php/2009/08/02/apple-security-im-in-yo-keeboards-hax0ring-yo-porn-sitez/">{lang: 'en-GB'}</g:plusone></div><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.thushanfernando.com%2Findex.php%2F2009%2F08%2F02%2Fapple-security-im-in-yo-keeboards-hax0ring-yo-porn-sitez%2F&amp;title=Apple%20Security%3A%20I%26%238217%3Bm%20in%20yo%20keeboards%20hax0ring%20yo%20porn%20sitez." id="wpa2a_20"><img src="http://www.thushanfernando.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>Related posts:<ol>
<li><a href='http://www.thushanfernando.com/index.php/2008/12/13/window-7-information-about-the-leaked-build-from-winhec-china/' rel='bookmark' title='Window 7: Information about the leaked build from WinHEC China'>Window 7: Information about the leaked build from WinHEC China</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2009/01/10/getting-a-windows-7-beta-1-product-key/' rel='bookmark' title='Getting a Windows 7 Beta 1 Product Key'>Getting a Windows 7 Beta 1 Product Key</a></li>
<li><a href='http://www.thushanfernando.com/index.php/2008/10/29/going-deep-inside-windows-7-with-mark-russinovich/' rel='bookmark' title='Going Deep: Inside Windows 7 with Mark Russinovich'>Going Deep: Inside Windows 7 with Mark Russinovich</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.thushanfernando.com/index.php/2009/08/02/apple-security-im-in-yo-keeboards-hax0ring-yo-porn-sitez/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

