<?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>Three Wise Men &#187; Software</title> <atom:link href="http://www.twm-kd.com/category/computers/software/feed/" rel="self" type="application/rss+xml" /><link>http://www.twm-kd.com</link> <description>In desperate need of a punchline.</description> <lastBuildDate>Sun, 22 Jan 2012 13:21:51 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>Repairing Windows 7 when they fail to boot</title><link>http://www.twm-kd.com/software/repairing-windows-7-when-they-fail-to-boot/</link> <comments>http://www.twm-kd.com/software/repairing-windows-7-when-they-fail-to-boot/#comments</comments> <pubDate>Thu, 03 Mar 2011 05:14:35 +0000</pubDate> <dc:creator>BigWhale</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[BCDEDit]]></category> <category><![CDATA[Boot]]></category> <category><![CDATA[boot.ini]]></category> <category><![CDATA[Repair]]></category> <category><![CDATA[Windows]]></category> <guid
isPermaLink="false">http://www.twm-kd.com/?p=4566</guid> <description><![CDATA[Repairing broken Windows 7 boot loader when auto repair fails. BCDEdit is the right tool to use in this scenario.<hr
/><div
class='related-posts'><h5>Related Posts:</h5><ol><li><a
href=' http://www.twm-kd.com/software/installing-windows-7-from-usb-flash-drive/' rel='bookmark'>Installing Windows 7 from USB flash drive</a></li><li><a
href=' http://www.twm-kd.com/software/windows-7-installation-on-hp-compaq-2230s-nn340es/' rel='bookmark'>Windows 7 installation on HP Compaq 2230s (NN340ES)</a></li><li><a
href=' http://www.twm-kd.com/software/windows-7-login-using-authentec-aes2810-fingerprint-scanner-on-hp-notebooks/' rel='bookmark'>Windows 7 login using AuthenTec AES2810 fingerprint scanner on HP notebooks</a></li></ol></div>]]></description> <content:encoded><![CDATA[<p>If you are like me, <a
href="http://windows.microsoft.com/en-US/windows/home" target="_blank">Windows</a> accident prone, then you already had problems with booting your Windows, right? Probably. I manage to break even the non breakable things. So, the last time I was playing around with partitions on my hard drives Windows rendered themselves un-bootable. No, it really wasn&#8217;t me. The whole boot procedure is actually so weird that repairing often fails. When your boot fails and instead of Windows boot menu or a splash animation, you get a weird error message which you never saw before, you usually try to recover with Windows installation DVD. In some situations this might not be enough&#8230;<br
/> <span
id="more-4566"></span></p><h4>Short theory</h4><p>BIOS or EFI will read the <a
href="http://en.wikipedia.org/wiki/Master_boot_record" target="_blank">MBR</a> and the boot sector. Boot procedure then continues by loading Windows Boot Manager (BOOTMGR). Boot manager will then access first active partition and read Boot Configuration Data (BCD). BCD is a replacement for boot.ini and in the end it will display the boot menu. If you pressed F8 or you had more than one option in the boot menu, if not, it will simply boot your Windows.</p><p>Sometimes if you move partitions here and there, delete them and rename them, the information in BCD will not reflect the situation on your hard drives. Windows will not allow you to delete System partition even if there is no Windows installed on it. That&#8217;s because a system partition contains necessary data for booting your system.</p><h4>How to break things?</h4><p>If you are strictly a Windows user, then it will be hard to do that. If you are using multiple operating systems and you don&#8217;t play around with fdisk or other disk tools you are also pretty safe. However if you decide to reinstall your Windows to a new disk drive, without completely clearing your old installation, and you later delete partition that was marked as System partition in Windows disk manager, then you will end up with broken machine. Again, this cannot be done with Windows disk management tools, you will have to use some other tool.</p><p>A message similar to this will surprised you when you try booting Windows.</p><pre>Windows failed to start. A Recent hardware or software change might be the cause. To fix the problem:
1. Insert your windows installation disc and restart your computer.
2. Choose your language settings, and then click next
3. Click "repair your computer."
Status: 0xc000000e</pre><p>Repairing a broken installation will also fail and you are pretty much stuck.</p><blockquote><p>Just reinstall, you can&#8217;t fix that and you&#8217;ll spend hours trying to repair it.</p></blockquote><p>That&#8217;s what they told me. However, not all is lost and you probably don&#8217;t have to reinstall and it will only take a few minutes to repair the whole mess.</p><h4>How to repair things?</h4><p>With a little help of <a
title="BCDEdit" href="http://technet.microsoft.com/en-us/library/cc709667%28WS.10%29.aspx" target="_blank">BCDEdit</a> (Boot Configuration Database Edit) you can pretty much fix most of the problems. If you boot with install DVD and you enter the command prompt you will be able to run bcdedit. Running it without any options and you will get a list of all the bootable partitions and boot manager. So, a healthy, working BCD will look similar to this:</p><pre>C:\Windows\system32&gt;bcdedit
Windows Boot Manager
--------------------
identifier              {bootmgr}
device                  partition=C:
path                    \bootmgr
description             Windows Boot Manager
locale                  en-US
default                 {current}
displayorder            {current}
timeout                 30
Windows Boot Loader
-------------------
identifier              {current}
device                  partition=C:
path                    \Windows\system32\winload.exe
description             Windows 7 Home Premium
locale                  en-US
recoverysequence        {b20ad2c6-2111-11e0-9e5a-fff6f1e7349c}
recoveryenabled         Yes
osdevice                partition=C:
systemroot              \Windows
resumeobject            {c5e53405-20c7-11e0-829f-806e6f6e6963}</pre><p>Take a look at the identifier field in the Windows Boot Loader. In your case it probably won&#8217;t say {current} but it will contain a UUID. If you have more than one Windows installation then you will have more than one Boot Loader entry and bcdedit will display all of them. Those entries are equivalents of (now obsolete) <a
title="Boot.ini and NTLDR" href="http://en.wikipedia.org/wiki/NTLDR" target="_blank">boot.ini</a> entries. A broken boot loader entry will look similar to this:</p><pre>Windows Boot Loader
-------------------
identifier              {3de3a01-127a-3e20-af15f-b15e6f78c963}
device                  unknown
path                    \Windows\system32\winload.exe
description             Windows 7 Home Premium
locale                  en-US
recoverysequence        {b20ad2c6-2111-11e0-9e5a-fff6f1e7349c}
recoveryenabled         Yes
osdevice                unknown
systemroot              \Windows
resumeobject            {c5e53405-20c7-11e0-829f-806e6f6e6963}</pre><p>This is a broke boot entry in your BCD, device and osdevice are unknown. You will have to set them manually in order to boot. For example if your Windows installation is on your first partition then you will have to issue the following two commands:</p><pre>bcdedit /set {3de3a01-127a-3e20-af15f-b15e6f78c963} device partition=C:
bcdedit /set {3de3a01-127a-3e20-af15f-b15e6f78c963} osdevice partition=C:</pre><p>First command will change the value of device parameter and the second command will change the osdevice parameter. If you have your Windows on a second partition, then you would use D: instead of C:.</p><p>BCDEdit is also used for changing boot order if you have multiple installations of Windows or ore operating systems on your hard disk. Also, you can tweak many other parameters with it, but you better be careful. :)</p><h4>A word of caution</h4><p>BCDEdit is one of those tools that can help you a lot and at the same time you can really mess things up if you are not careful and that is why it will need administrator privileges to run. When booting from install DVD you get those privileges automatically. When you are running Windows and you are logged in as a normal user, you will have to run bcdedit from cmd.exe that has administrator privileges otherwise it will fail to work.</p><p>Don&#8217;t over use it and you&#8217;ll be fine.</p> <br
/><hr
/><div
class='related-posts'><h5>Related Posts:</h5><ol><li><a
href=' http://www.twm-kd.com/software/installing-windows-7-from-usb-flash-drive/' rel='bookmark'>Installing Windows 7 from USB flash drive</a></li><li><a
href=' http://www.twm-kd.com/software/windows-7-installation-on-hp-compaq-2230s-nn340es/' rel='bookmark'>Windows 7 installation on HP Compaq 2230s (NN340ES)</a></li><li><a
href=' http://www.twm-kd.com/software/windows-7-login-using-authentec-aes2810-fingerprint-scanner-on-hp-notebooks/' rel='bookmark'>Windows 7 login using AuthenTec AES2810 fingerprint scanner on HP notebooks</a></li></ol></div>]]></content:encoded> <wfw:commentRss>http://www.twm-kd.com/software/repairing-windows-7-when-they-fail-to-boot/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>Eclipse runs &#8220;File Search&#8221; when pressing AltGr+G</title><link>http://www.twm-kd.com/software/eclipse-runs-file-search-when-pressing-altgrg/</link> <comments>http://www.twm-kd.com/software/eclipse-runs-file-search-when-pressing-altgrg/#comments</comments> <pubDate>Tue, 02 Feb 2010 09:38:52 +0000</pubDate> <dc:creator>RRunner</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[AltGr+G]]></category> <category><![CDATA[CTRL+Alt+G]]></category> <category><![CDATA[Eclipse]]></category> <category><![CDATA[Keyboard shortcut]]></category> <category><![CDATA[Windows]]></category> <guid
isPermaLink="false">http://www.twm-kd.com/?p=3426</guid> <description><![CDATA[Eclipse has many problems. Some are created by users and some by Eclipse developers. If you are troubles by strange key mappings than this post can solve your problems.<hr
/><div
class='related-posts'><h5>Related Posts:</h5><ol><li><a
href=' http://www.twm-kd.com/software/eclipse-code-assist-code-completion-content-assist-hang-up/' rel='bookmark'>Eclipse Code Assist / Code Completion / Content Assist hang-up</a></li><li><a
href=' http://www.twm-kd.com/software/eclipse-galileo-and-svn-support/' rel='bookmark'>Eclipse Galileo and SVN support</a></li><li><a
href=' http://www.twm-kd.com/science/partial-solar-eclipse-20110104/' rel='bookmark'>Partial solar eclipse 2011/01/04</a></li></ol></div>]]></description> <content:encoded><![CDATA[<div
class="zemanta-img zemanta-action-dragged" style="margin: 1em; display: block;"><div><dl
class="wp-caption alignright" style="width: 310px;"><dt
class="wp-caption-dt"><a
href="http://commons.wikipedia.org/wiki/Image:KB_Slovene.svg"><img
title="Croatian and Slovenian keyboard layout" src="http://static.twm-kd.com/twm-uploads/300px-KB_Slovene.svg_.png" alt="Croatian and Slovenian keyboard layout" width="300" height="100" /></a></dt><dd
class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image via <a
href="http://commons.wikipedia.org/wiki/Image:KB_Slovene.svg">Wikipedia</a></dd></dl></div></div><p>Did you ever have any problems with <a
class="zem_slink" title="Eclipse (software)" rel="homepage" href="http://www.eclipse.org/">Eclipse</a>? With initial versions of Galileo and in previously released Gynamed there was a problem with preassigned keyboard shortcuts on some locale&#8217;s. The problem that Eclipse created when using Slovene keyboard layout was that while programmer wanted to type the <em>]</em> key, Eclipse run File Search action.</p><p>Slovenian users are not to blame that their keyboard has <em>]</em> key mapped to AltGr+G key combination. And Eclipse developers could browse through <a
href="http://en.wikipedia.org/wiki/Keyboard_layout">Wikipedia </a>to discover what obscure keyboard layouts exist.</p><p>Any competent programmer will notice that with the default key mapping Eclipse guards programmers from using too many arrays since typically array is marked with <em>[]</em> key combination. They are advancing object oriented design and programming. But in some cases arrays actually make your code faster and optimize memory usage and fragmentation.</p><p>To discover how to remedy the problem read on.<span
id="more-3426"></span></p><p>Fortunately Eclipse has built in keyboard mapping manager. Until Eclipse developers don not remove the mapping or replace it with something more appropriate you can do the following:</p><ol><li>Open <em>Window-&gt;Preferences-&gt;General-&gt;Keys</em></li><li>Sort table by <em>Binding</em> and find the one that is bothering you. Unbind all commands that are bind to the combination. If you don&#8217;t know which combination you should be searching for use <em>Binding</em> text box and type in the key that is bothering you.</li></ol><p>There you have it problem is solved. File search gone by removing the CTRL+ALT+G or AltGr+G key combination from Eclipse key mapping. If you can not live without the combination you could replace it with something more appropriate.</p><div
class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><img
class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/pixy.gif?x-id=90f21331-b0ab-4d92-9d9b-fb247b3c94c8" alt="" /><span
class="zem-script pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div> <br
/><hr
/><div
class='related-posts'><h5>Related Posts:</h5><ol><li><a
href=' http://www.twm-kd.com/software/eclipse-code-assist-code-completion-content-assist-hang-up/' rel='bookmark'>Eclipse Code Assist / Code Completion / Content Assist hang-up</a></li><li><a
href=' http://www.twm-kd.com/software/eclipse-galileo-and-svn-support/' rel='bookmark'>Eclipse Galileo and SVN support</a></li><li><a
href=' http://www.twm-kd.com/science/partial-solar-eclipse-20110104/' rel='bookmark'>Partial solar eclipse 2011/01/04</a></li></ol></div>]]></content:encoded> <wfw:commentRss>http://www.twm-kd.com/software/eclipse-runs-file-search-when-pressing-altgrg/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Windows 7 driver update for AuthenTec AES2810 fingerprint scanner on HP notebooks</title><link>http://www.twm-kd.com/software/windows-7-driver-update-for-authentec-aes2810-fingerprint-scanner-on-hp-notebooks/</link> <comments>http://www.twm-kd.com/software/windows-7-driver-update-for-authentec-aes2810-fingerprint-scanner-on-hp-notebooks/#comments</comments> <pubDate>Sun, 03 Jan 2010 12:16:39 +0000</pubDate> <dc:creator>RRunner</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[AES2810]]></category> <category><![CDATA[AuthenTec]]></category> <category><![CDATA[HP Compaq 2230s]]></category> <category><![CDATA[HP EliteBook 8530p]]></category> <category><![CDATA[TrueSuite 2.0]]></category> <category><![CDATA[Windows 7]]></category> <guid
isPermaLink="false">http://www.twm-kd.com/?p=3177</guid> <description><![CDATA[A follow up of previous post where a hack was described regarding AuthenTec AES2810 fingerprint scanner. Since final driver was released this post describes how to install and use official driver through Windows update.]]></description> <content:encoded><![CDATA[<p>In my previous <a
href="http://www.twm-kd.com/computers/windows-7-login-using-authentec-aes2810-fingerprint-scanner-on-hp-notebooks/">post</a> I was describing a method how to enable and use the AuthenTec ASE2810 fingerprint scanner beta Windows 7 driver. There was some positive feedback and the method worked on some HP notebook devices. For some with different versions of fingerprint scanner the method did not work. Hopefully times have changed for all of us.</p><p>On the October 23, 2009 AuthenTec <a
href="http://www.authentec.com/news-item.cfm?newsID=197">released information</a> about update to Windows 7 driver infrastructure. About 2 weeks ago I noticed an optional update in Windows 7 update section. It read <em>AuthenTec Inc. driver update for AuthenTec Inc. AES2810.</em> I was pleased to finally get the final version of the driver.</p><p>Immediately checked it and started the 32Mb download procedure. Smooth download, smooth install. Went to <em>Control Panel-&gt;Hardware and Sound-&gt;Biometric Devices</em> and the  AES2810 was still available. I decided for clean setup so I removed my existing fingerprint data by clicking and confirming the <em>Remove your fingerprint data </em>dialog<em>. </em>Then I clicked on <em>Manage your fingerprint data</em> and waited for my password dialog. None appeared. Frustrated and angry about the stupid update I started to minimize the windows and was presently surprised by the TrueSuite login screen. Typed and retyped in password of my account and voila I was ready to enroll my fingers.</p><table
width="100%"><tbody><tr><td
width="33%" align="center" valign="middle"><a
href="http://static.twm-kd.com/twm-uploads/Authentac-AES2810-with-new-driver.png"><img
class="aligncenter size-thumbnail wp-image-3182" title="Authentac-AES2810-with-new-driver" src="http://static.twm-kd.com/twm-uploads/Authentac-AES2810-with-new-driver-150x150.png" alt="Windows 7 Control panel Fingerprint biometrics showing detected AuthenTac AES2810" width="150" height="150" /></a></td><td
width="33%" align="center" valign="middle"><a
href="http://static.twm-kd.com/twm-uploads/Authentac-AES2810-TrueSuite-Starter.png"><img
class="aligncenter size-thumbnail wp-image-3183" title="Authentac-AES2810-TrueSuite-Starter" src="http://static.twm-kd.com/twm-uploads/Authentac-AES2810-TrueSuite-Starter-150x150.png" alt="Windows 7 AuthenTec TrueSuite login screen" width="150" height="150" /></a></td><td
width="33%" align="center" valign="middle"><a
href="http://static.twm-kd.com/twm-uploads/Authentac-AES2810-TrueSuite-Delete-a-finger1.png"><img
class="aligncenter size-thumbnail wp-image-3194" title="Authentac-AES2810-TrueSuite-Delete-a-finger" src="http://static.twm-kd.com/twm-uploads/Authentac-AES2810-TrueSuite-Delete-a-finger1-150x150.png" alt="Windows 7 TrueSuite management application" width="150" height="150" /></a></td></tr></tbody></table><p>TrueSuite Application has changed a bit. Must say that it is simple and intuitive to use. You have 2 options. Enroll finger by selecting a finger to enroll and repeating finger swipe 3 times and delete an enrolled finger. Additional nifty feature is available when you enroll a finger.  When TrueSuite application is run through manage your fingerprint data call you are presented by the password login screen. But now you can use your enrolled finger to authenticate your self. No more password typing.</p><p>I repeated the update on both HP notebooks that I own. So I can confirm that the driver works for HP EliteBook 8530p and HP Compaq 2230s. Bravo AuthenTec. Now if you could only release data which would help to create or create a Linux driver then I would be in heaven.</p><div
class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a
class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/b8447550-b427-4537-a820-87952aeab2f6/"><img
class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=b8447550-b427-4537-a820-87952aeab2f6" alt="Reblog this post [with Zemanta]" /></a><span
class="zem-script pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div> ]]></content:encoded> <wfw:commentRss>http://www.twm-kd.com/software/windows-7-driver-update-for-authentec-aes2810-fingerprint-scanner-on-hp-notebooks/feed/</wfw:commentRss> <slash:comments>7</slash:comments> </item> <item><title>µTorrent freezing Windows 7</title><link>http://www.twm-kd.com/software/utorrent-freezing-windows-7/</link> <comments>http://www.twm-kd.com/software/utorrent-freezing-windows-7/#comments</comments> <pubDate>Wed, 11 Nov 2009 11:00:26 +0000</pubDate> <dc:creator>BigWhale</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Blue Screen of Death]]></category> <category><![CDATA[Freeze]]></category> <category><![CDATA[Microsoft Windows]]></category> <category><![CDATA[Operating system]]></category> <guid
isPermaLink="false">http://www.twm-kd.com/?p=2906</guid> <description><![CDATA[A word of caution. After I managed to install Windows 7 64bit my machine started to freeze. Completely freezing, not the blue screen of death, not the black screen of death, not the &#8216;this program has stopped responding&#8217; kind of freeze. It was the &#8216;if I had a CRT monitor the picture would be burned in [...]<hr
/><div
class='related-posts'><h5>Related Posts:</h5><ol><li><a
href=' http://www.twm-kd.com/software/dreaming-of-windows-8/' rel='bookmark'>Dreaming of Windows 8</a></li><li><a
href=' http://www.twm-kd.com/software/installing-windows-7-from-usb-flash-drive/' rel='bookmark'>Installing Windows 7 from USB flash drive</a></li><li><a
href=' http://www.twm-kd.com/software/windows-7-login-using-authentec-aes2810-fingerprint-scanner-on-hp-notebooks/' rel='bookmark'>Windows 7 login using AuthenTec AES2810 fingerprint scanner on HP notebooks</a></li></ol></div>]]></description> <content:encoded><![CDATA[<p>A word of caution. After I managed to install Windows 7 64bit my machine started to freeze. Completely freezing, not the blue screen of death, not the black screen of death, not the &#8216;this program has stopped responding&#8217; kind of freeze. It was the &#8216;if I had a CRT monitor the picture would be burned in by now&#8217; kind of freeze. Why? Because of the µTorrent. After running it for 15 minutes or so machine was freezing constantly. This only happens on 64bit version of Windows 7, 32bit version is ok.</p><p>I am not sure if this is related to the fact that µTorrent is downloading on TrueCrypted drive, but I am not going to test this theory. The impostor was already removed from my disks and I was just copying a load of stuff to and from the encrypted drive for two hours now and no freezing.</p><div
class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a
class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/ed74dedb-1ae6-41ca-ba60-9a64c6412be8/"><img
class="zemanta-pixie-img" style="border:none;float:right" src="http://img.zemanta.com/reblog_e.png?x-id=ed74dedb-1ae6-41ca-ba60-9a64c6412be8" alt="Reblog this post [with Zemanta]" /></a><span
class="zem-script more-related more-info pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div> <br
/><hr
/><div
class='related-posts'><h5>Related Posts:</h5><ol><li><a
href=' http://www.twm-kd.com/software/dreaming-of-windows-8/' rel='bookmark'>Dreaming of Windows 8</a></li><li><a
href=' http://www.twm-kd.com/software/installing-windows-7-from-usb-flash-drive/' rel='bookmark'>Installing Windows 7 from USB flash drive</a></li><li><a
href=' http://www.twm-kd.com/software/windows-7-login-using-authentec-aes2810-fingerprint-scanner-on-hp-notebooks/' rel='bookmark'>Windows 7 login using AuthenTec AES2810 fingerprint scanner on HP notebooks</a></li></ol></div>]]></content:encoded> <wfw:commentRss>http://www.twm-kd.com/software/utorrent-freezing-windows-7/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> <item><title>Installing Windows 7 from USB flash drive</title><link>http://www.twm-kd.com/software/installing-windows-7-from-usb-flash-drive/</link> <comments>http://www.twm-kd.com/software/installing-windows-7-from-usb-flash-drive/#comments</comments> <pubDate>Tue, 10 Nov 2009 13:30:00 +0000</pubDate> <dc:creator>BigWhale</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Install]]></category> <category><![CDATA[Microsoft]]></category> <category><![CDATA[USB flash drive]]></category> <category><![CDATA[Windows 7]]></category> <guid
isPermaLink="false">http://www.twm-kd.com/?p=2882</guid> <description><![CDATA[Installing Windows 7 from DVD could be slow. Installation from USB flash drive can be much faster and you can also specify which version you'd like to install.<hr
/><div
class='related-posts'><h5>Related Posts:</h5><ol><li><a
href=' http://www.twm-kd.com/software/boot-virtualbox-machine-from-a-usb-flash-drive/' rel='bookmark'>Boot VirtualBox machine from a USB flash drive</a></li><li><a
href=' http://www.twm-kd.com/software/dreaming-of-windows-8/' rel='bookmark'>Dreaming of Windows 8</a></li><li><a
href=' http://www.twm-kd.com/software/windows-7-installation-on-hp-compaq-2230s-nn340es/' rel='bookmark'>Windows 7 installation on HP Compaq 2230s (NN340ES)</a></li></ol></div>]]></description> <content:encoded><![CDATA[<p>Past few couple of days I had some problems with buying Windows 7 and getting it installed. Long story short: they sold me 32bit OEM Home Premium version and I wanted 64bit version. They refused to replace it since I already opened the package. Let&#8217;s not get into details that they shouldn&#8217;t even sell me the OEM version and that <a
class="zem_slink freebase/guid/9202a8c04000641f8000000000026344" title="Microsoft" rel="homepage" href="http://www.microsoft.com">Microsoft</a> won&#8217;t be too happy to hear about this but I had a problem and it needed fixing.</p><p>Microsoft support was VERY helpful and they told me that I can use my existing serial number to install 64 bit Windows 7 Home Premium OEM, not the retail version, but OEM. Great! Unfortunately they told me to get the installation DVD <em>somewhere else</em>.</p><p>Read on if you want to know how I solved my problem &#8230;</p><p><span
id="more-2882"></span>The trouble was that <em>somewhere else</em> didn&#8217;t have the Windows Home Premium 64bit OEM installation medium. All I could find were retails of Ultimate and Enterprise version. I could have looked longer and harder and I&#8217;d probably managed to find them.</p><p>But I stumbled on a better solution. Windows 7 DVD&#8217;s are all the same, there is just this configuration file that tells the installation program what to install. It is called <em>EI.CFG</em>.</p><p>It resides in the <em>/sources</em> directory on a DVD and it looks similar to this:</p><div
class="wp_syntax"><div
class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">&#91;</span>EditionID<span style="color: #7a0874; font-weight: bold;">&#93;</span>
Ultimate
<span style="color: #7a0874; font-weight: bold;">&#91;</span>Channel<span style="color: #7a0874; font-weight: bold;">&#93;</span>
Retail
<span style="color: #7a0874; font-weight: bold;">&#91;</span>VL<span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #000000;">0</span></pre></div></div><p>In this particular example installation program will know that it is installing Windows 7 Ultimate from a Retail package. I needed Home Premium from OEM channel.</p><p>Grab 4GB USB flash drive, format it and copy the contents of the Windows installation DVD to the root directory on USB drive. Then edite <em>EI.CFG</em> file to suit your needs. Mine looked like this after editing:</p><div
class="wp_syntax"><div
class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">&#91;</span>EditionID<span style="color: #7a0874; font-weight: bold;">&#93;</span>
HomePremium
<span style="color: #7a0874; font-weight: bold;">&#91;</span>Channel<span style="color: #7a0874; font-weight: bold;">&#93;</span>
OEM
<span style="color: #7a0874; font-weight: bold;">&#91;</span>VL<span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #000000;">0</span></pre></div></div><p>[Update 12/11/2009]:<br
/> We were told that the best way to do this is to simply delete this file from USB drive. Installer will then ask which version you want to install and you can simply select it from a drop down menu. You still need to select the correct version otherwise your key will be unusable and you will have to repeat the installation.</p><p>After that you will need to make USB drive bootable. Luckily the tools needed for this are on the Windows 7 installation DVD. Open <em>cmd.exe</em> and switch to boot directory on the installation DVD.</p><div
class="wp_syntax"><div
class="code"><pre class="bash" style="font-family:monospace;">c:\<span style="color: #000000; font-weight: bold;">&gt;</span> d:
c:\<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #7a0874; font-weight: bold;">cd</span> boot</pre></div></div><p>Then you need to run bootsect program and specify the drive letter of your USB key:</p><div
class="wp_syntax"><div
class="code"><pre class="bash" style="font-family:monospace;">bootsect <span style="color: #000000; font-weight: bold;">/</span>nt60 e:</pre></div></div><p>In the above example boot sector for Windows Vista (or Windows 7) will be created on drive E:. Now you need to reboot and tell your computer to boot from USB drive.</p><p>Windows 7 installation should start and you will be installing the version that you specified in the <em>EI.CFG</em> file.</p><p>Keep in mind that your serial number determines which version of Windows you can install. If you have serial number that belongs to Retail package you won&#8217;t be able to install OEM version with it and if you have serial number for Home Premium, you won&#8217;t be able to install Ultimate version.</p><p>The whole procedure in four short steps:</p><ul><li>Format 4GB usb drive</li><li>Copy contents of Windows DVD to USB drive</li><li>Edit \sources\ei.cfg if necessary or even better, delete this file from USB drive</li><li>Make USB drive bootable with bootsect /nt60 e:</li></ul><p>Many thanks to OmegaBlue for all the tips and PaJo for the update. :)</p><div
class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a
class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/d8e745fa-33a7-47dc-a581-5285e5fffbe5/"><img
class="zemanta-pixie-img" style="border: none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=d8e745fa-33a7-47dc-a581-5285e5fffbe5" alt="Reblog this post [with Zemanta]" /></a><span
class="zem-script more-related more-info pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div> <br
/><hr
/><div
class='related-posts'><h5>Related Posts:</h5><ol><li><a
href=' http://www.twm-kd.com/software/boot-virtualbox-machine-from-a-usb-flash-drive/' rel='bookmark'>Boot VirtualBox machine from a USB flash drive</a></li><li><a
href=' http://www.twm-kd.com/software/dreaming-of-windows-8/' rel='bookmark'>Dreaming of Windows 8</a></li><li><a
href=' http://www.twm-kd.com/software/windows-7-installation-on-hp-compaq-2230s-nn340es/' rel='bookmark'>Windows 7 installation on HP Compaq 2230s (NN340ES)</a></li></ol></div>]]></content:encoded> <wfw:commentRss>http://www.twm-kd.com/software/installing-windows-7-from-usb-flash-drive/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Boot VirtualBox machine from a USB flash drive</title><link>http://www.twm-kd.com/software/boot-virtualbox-machine-from-a-usb-flash-drive/</link> <comments>http://www.twm-kd.com/software/boot-virtualbox-machine-from-a-usb-flash-drive/#comments</comments> <pubDate>Tue, 08 Sep 2009 12:52:56 +0000</pubDate> <dc:creator>BigWhale</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Booting]]></category> <category><![CDATA[Disk image]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Operating system]]></category> <category><![CDATA[Ubuntu]]></category> <category><![CDATA[USB flash drive]]></category> <category><![CDATA[virtualbox]]></category> <guid
isPermaLink="false">http://www.twm-kd.com/?p=2458</guid> <description><![CDATA[Pretty soon I discovered that VirtualBox has no support for booting from USB devices. Here is a how you can trick VirtualBox to actually boot from USB flash driver or other external USB stoarege device.]]></description> <content:encoded><![CDATA[<div
class="zemanta-img" style="margin: 1em; display: block;"><div><dl
class="wp-caption alignright" style="width: 138px;"><dt
class="wp-caption-dt"><a
href="http://en.wikipedia.org/wiki/Image:Virtualbox_logo.png"><img
title="VirtualBox" src="http://static.twm-kd.com/twm-uploads/Virtualbox_logo.png" alt="VirtualBox" width="128" height="128" /></a></dt><dd
class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image via <a
href="http://en.wikipedia.org/wiki/Image:Virtualbox_logo.png">Wikipedia</a></dd></dl></div></div><p>While preparing my new workstation I stumbled upon a problem on how to boot <a
class="zem_slink freebase/guid/9202a8c04000641f80000000047b239b" title="VirtualBox" rel="homepage" href="http://www.virtualbox.org/">VirtualBox</a> machine from a <a
class="zem_slink freebase/guid/9202a8c04000641f800000000021e3fa" title="USB flash drive" rel="wikipedia" href="http://en.wikipedia.org/wiki/USB_flash_drive">USB fash drive</a>. Pretty soon I discovered that VirtualBox has no support for booting from <a
class="zem_slink freebase/guid/9202a8c04000641f800000000003ed6d" title="Universal Serial Bus" rel="wikipedia" href="http://en.wikipedia.org/wiki/Universal_Serial_Bus">USB</a> devices. Something with their <a
class="zem_slink freebase/guid/9202a8c04000641f800000000000b604" title="BIOS" rel="wikipedia" href="http://en.wikipedia.org/wiki/BIOS">BIOS</a> not supporting it and that implementing this wouldn&#8217;t bring a lot to the whole package.</p><p>Read on if you want to know more.<br
/> <span
id="more-2458"></span><br
/> I am using <a
class="zem_slink" title="Ubuntu" rel="homepage" href="http://www.ubuntu.com/">Ubuntu</a> 9.0.4 and I installed VirtualBox from Ubuntu repositories. Accessing physical devices in <a
class="zem_slink freebase/guid/9202a8c04000641f8000000000dafbd5" title="Linux" rel="wikipedia" href="http://en.wikipedia.org/wiki/Linux">Linux</a> is restricted to <a
class="zem_slink freebase/guid/9202a8c04000641f80000000001a144b" title="Superuser" rel="wikipedia" href="http://en.wikipedia.org/wiki/Superuser">root user</a> only, so you&#8217;ll have to run your VirtualBox as root, which is rather inconvenient, however this is the only way I got things to work.</p><p>The trick is to tell VirtualBox that your USB drive is just an ordinary <a
class="zem_slink freebase/guid/9202a8c04000641f8000000000008456" title="AT Attachment" rel="wikipedia" href="http://en.wikipedia.org/wiki/AT_Attachment">IDE drive</a>.</p><div
class="wp_syntax"><div
class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #660033;">-s</span>
virtualbox <span style="color: #000000; font-weight: bold;">&amp;</span>amp;
<span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #000000; font-weight: bold;">/</span>root<span style="color: #000000; font-weight: bold;">/</span>.VirtualBox<span style="color: #000000; font-weight: bold;">/</span>HardDisks
VBoxManage internalcommands createrawvmdk \
   <span style="color: #660033;">-filename</span> <span style="color: #000000; font-weight: bold;">/</span>root<span style="color: #000000; font-weight: bold;">/</span>.VirtualBox<span style="color: #000000; font-weight: bold;">/</span>HardDisks<span style="color: #000000; font-weight: bold;">/</span>usbdisk.vmdk \
   <span style="color: #660033;">-rawdisk</span> <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>sdi <span style="color: #660033;">-register</span></pre></div></div><p>First you switch to root shell and then run VirtualBox in the background. If you did this before and you have <a
class="zem_slink freebase/guid/9202a8c04000641f800000000003f5a2" title="Virtual machine" rel="wikipedia" href="http://en.wikipedia.org/wiki/Virtual_machine">virtual machines</a> already running as root then you can probably skip creating HardDisks directory. With VBoxManage you create vmdk file that is connected to /dev/sdi device and register it with internal registry of hard disks.</p><p>Two important things to note: First, path to image file must be absolute starting with / and second, raw disk device must be <strong>your</strong> actual device. It might not be called /dev/sdi, but something completely different. Plug in your USB drive and then run dmesg in console. Output will be similar to this:</p><div
class="wp_syntax"><div
class="code"><pre class="bash" style="font-family:monospace;">... snip snip ...
<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">181685.693389</span><span style="color: #7a0874; font-weight: bold;">&#93;</span> usb-storage: device found at <span style="color: #000000;">5</span>
<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">181685.693392</span><span style="color: #7a0874; font-weight: bold;">&#93;</span> usb-storage: waiting <span style="color: #000000; font-weight: bold;">for</span> device to settle before scanning
<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">181690.692200</span><span style="color: #7a0874; font-weight: bold;">&#93;</span> usb-storage: device scan <span style="color: #7a0874; font-weight: bold;">complete</span>
<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">181690.692918</span><span style="color: #7a0874; font-weight: bold;">&#93;</span> scsi <span style="color: #000000;">12</span>:<span style="color: #000000;">0</span>:<span style="color: #000000;">0</span>:<span style="color: #000000;">0</span>: Direct-Access                               <span style="color: #000000;">0.00</span> PQ: <span style="color: #000000;">0</span> ANSI: <span style="color: #000000;">2</span>
<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">181690.694539</span><span style="color: #7a0874; font-weight: bold;">&#93;</span> sd <span style="color: #000000;">12</span>:<span style="color: #000000;">0</span>:<span style="color: #000000;">0</span>:<span style="color: #000000;">0</span>: <span style="color: #7a0874; font-weight: bold;">&#91;</span>sdi<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #000000;">7897088</span> <span style="color: #000000;">512</span>-byte hardware sectors: <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">4.04</span> GB<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">3.76</span> GiB<span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">181690.695037</span><span style="color: #7a0874; font-weight: bold;">&#93;</span> sd <span style="color: #000000;">12</span>:<span style="color: #000000;">0</span>:<span style="color: #000000;">0</span>:<span style="color: #000000;">0</span>: <span style="color: #7a0874; font-weight: bold;">&#91;</span>sdi<span style="color: #7a0874; font-weight: bold;">&#93;</span> Write Protect is off
<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">181690.695040</span><span style="color: #7a0874; font-weight: bold;">&#93;</span> sd <span style="color: #000000;">12</span>:<span style="color: #000000;">0</span>:<span style="color: #000000;">0</span>:<span style="color: #000000;">0</span>: <span style="color: #7a0874; font-weight: bold;">&#91;</span>sdi<span style="color: #7a0874; font-weight: bold;">&#93;</span> Mode Sense: 00 00 00 00
<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">181690.695043</span><span style="color: #7a0874; font-weight: bold;">&#93;</span> sd <span style="color: #000000;">12</span>:<span style="color: #000000;">0</span>:<span style="color: #000000;">0</span>:<span style="color: #000000;">0</span>: <span style="color: #7a0874; font-weight: bold;">&#91;</span>sdi<span style="color: #7a0874; font-weight: bold;">&#93;</span> Assuming drive cache: <span style="color: #c20cb9; font-weight: bold;">write</span> through
<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">181690.702414</span><span style="color: #7a0874; font-weight: bold;">&#93;</span> sd <span style="color: #000000;">12</span>:<span style="color: #000000;">0</span>:<span style="color: #000000;">0</span>:<span style="color: #000000;">0</span>: <span style="color: #7a0874; font-weight: bold;">&#91;</span>sdi<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #000000;">7897088</span> <span style="color: #000000;">512</span>-byte hardware sectors: <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">4.04</span> GB<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">3.76</span> GiB<span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">181690.702910</span><span style="color: #7a0874; font-weight: bold;">&#93;</span> sd <span style="color: #000000;">12</span>:<span style="color: #000000;">0</span>:<span style="color: #000000;">0</span>:<span style="color: #000000;">0</span>: <span style="color: #7a0874; font-weight: bold;">&#91;</span>sdi<span style="color: #7a0874; font-weight: bold;">&#93;</span> Write Protect is off
<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">181690.702913</span><span style="color: #7a0874; font-weight: bold;">&#93;</span> sd <span style="color: #000000;">12</span>:<span style="color: #000000;">0</span>:<span style="color: #000000;">0</span>:<span style="color: #000000;">0</span>: <span style="color: #7a0874; font-weight: bold;">&#91;</span>sdi<span style="color: #7a0874; font-weight: bold;">&#93;</span> Mode Sense: 00 00 00 00
<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">181690.702916</span><span style="color: #7a0874; font-weight: bold;">&#93;</span> sd <span style="color: #000000;">12</span>:<span style="color: #000000;">0</span>:<span style="color: #000000;">0</span>:<span style="color: #000000;">0</span>: <span style="color: #7a0874; font-weight: bold;">&#91;</span>sdi<span style="color: #7a0874; font-weight: bold;">&#93;</span> Assuming drive cache: <span style="color: #c20cb9; font-weight: bold;">write</span> through
<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">181690.702922</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>  sdi: sdi1
<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">181690.830974</span><span style="color: #7a0874; font-weight: bold;">&#93;</span> sd <span style="color: #000000;">12</span>:<span style="color: #000000;">0</span>:<span style="color: #000000;">0</span>:<span style="color: #000000;">0</span>: <span style="color: #7a0874; font-weight: bold;">&#91;</span>sdi<span style="color: #7a0874; font-weight: bold;">&#93;</span> Attached SCSI removable disk</pre></div></div><p>This is your newly plugged USB drive. If you are not sure about it, you can open file manager and mount your drive then check the output of mount command to see which device was just mounted.</p><p>After VBoxManage has completed check if the file was created.</p><div
class="wp_syntax"><div
class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">ls</span> <span style="color: #660033;">-l</span> <span style="color: #000000; font-weight: bold;">/</span>root<span style="color: #000000; font-weight: bold;">/</span>.VirtualBox<span style="color: #000000; font-weight: bold;">/</span>HardDisks
total <span style="color: #000000;">4</span>
<span style="color: #660033;">-rw-------</span> <span style="color: #000000;">1</span> root root <span style="color: #000000;">624</span> <span style="color: #000000;">2009</span>-09-08 <span style="color: #000000;">12</span>:<span style="color: #000000;">50</span> usbdisk.vmdk</pre></div></div><p>If all seems to be in order and you got output similar to this, then you can go create a virtual machine using your USB drive. When you get to the <a
class="zem_slink freebase/guid/9202a8c04000641f8000000000091fbf" title="Disk image" rel="wikipedia" href="http://en.wikipedia.org/wiki/Disk_image">disk image</a> creation you&#8217;ll be able to select usbdisk.vmdk.</p><p><a
href="http://static.twm-kd.com/twm-uploads/virtualbox2.png"><img
class="aligncenter size-medium wp-image-2462" title="Addding physical drive" src="http://static.twm-kd.com/twm-uploads/virtualbox2-300x223.png" alt="Addding physical drive" width="300" height="223" /></a></p><p>Before you start the virtual machine make sure you add one more disk if you plan to install something from your USB drive. This way you can also add other physical storage devices to Virtual Box.</p><div
class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a
class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/b353eed9-095a-4d3e-9083-3da4f208cbf0/"><img
class="zemanta-pixie-img" style="border: medium none ; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=b353eed9-095a-4d3e-9083-3da4f208cbf0" alt="Reblog this post [with Zemanta]" /></a><span
class="zem-script more-related more-info pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div> ]]></content:encoded> <wfw:commentRss>http://www.twm-kd.com/software/boot-virtualbox-machine-from-a-usb-flash-drive/feed/</wfw:commentRss> <slash:comments>13</slash:comments> </item> <item><title>Dreaming of Windows 8</title><link>http://www.twm-kd.com/software/dreaming-of-windows-8/</link> <comments>http://www.twm-kd.com/software/dreaming-of-windows-8/#comments</comments> <pubDate>Thu, 27 Aug 2009 19:29:14 +0000</pubDate> <dc:creator>RRunner</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Copenhagen Concept]]></category> <category><![CDATA[Dreaming]]></category> <category><![CDATA[Fedora]]></category> <category><![CDATA[Goodies]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Microsoft]]></category> <category><![CDATA[Microsoft Windows]]></category> <category><![CDATA[Open source]]></category> <category><![CDATA[Operating system]]></category> <category><![CDATA[Reality]]></category> <category><![CDATA[Solitair]]></category> <category><![CDATA[Ubuntu]]></category> <category><![CDATA[unreal]]></category> <category><![CDATA[Windows 7]]></category> <category><![CDATA[Windows 8]]></category> <guid
isPermaLink="false">http://www.twm-kd.com/?p=2047</guid> <description><![CDATA[Image by mmatasic via Flickr Not so long ago BigWhale wrote about Windows 7 RTM. Sure Windows 7 have some installation quirks, but which operating system does not have one or two of those? Some operating systems can live without the constant need for GUI updates. But not Windows. Their micro GUI developers are working [...]<hr
/><div
class='related-posts'><h5>Related Posts:</h5><ol><li><a
href=' http://www.twm-kd.com/software/installing-windows-7-from-usb-flash-drive/' rel='bookmark'>Installing Windows 7 from USB flash drive</a></li><li><a
href=' http://www.twm-kd.com/software/windows-7-installation-on-hp-compaq-2230s-nn340es/' rel='bookmark'>Windows 7 installation on HP Compaq 2230s (NN340ES)</a></li><li><a
href=' http://www.twm-kd.com/software/utorrent-freezing-windows-7/' rel='bookmark'>µTorrent freezing Windows 7</a></li></ol></div>]]></description> <content:encoded><![CDATA[<div
class="zemanta-img zemanta-action-dragged" style="margin: 1em; display: block;"><div><dl
class="wp-caption alignright" style="width: 250px;"><dt
class="wp-caption-dt"><a
href="http://www.flickr.com/photos/34029964@N00/2981151056"><img
title="Windows 8 SP4 Professional" src="http://static.twm-kd.com/twm-uploads/2981151056_89dcfd0f4b_m.jpg" alt="Windows 8 SP4 Professional" width="240" height="160" /></a></dt><dd
class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image by <a
href="http://www.flickr.com/photos/34029964@N00/2981151056">mmatasic</a> via Flickr</dd></dl></div></div><p>Not so long ago BigWhale wrote about <a
href="http://www.twm-kd.com/computers/released-to-manufacturing-but-unable-to-install/">Windows 7 RTM</a>. Sure Windows 7 have some installation quirks, but which operating system does not have one or two of those? Some <a
class="zem_slink freebase/guid/9202a8c04000641f800000000002c5ef" title="Operating system" rel="wikipedia" href="http://en.wikipedia.org/wiki/Operating_system">operating systems</a> can live without the constant need for <a
class="zem_slink freebase/guid/9202a8c04000641f8000000000019cb8" title="Graphical user interface" rel="wikipedia" href="http://en.wikipedia.org/wiki/Graphical_user_interface">GUI</a> updates. But not Windows. Their micro GUI developers are working hard. So hard that they have a new GUI concept ready even before Windows 7 accumulated some dust on the shelves. Now that is why I call ahead of time market.. &#8211; development.</p><p>If you want to see Microsoft dreaming machine in action read on and take a look at a possible future of Windows 8.<span
id="more-2047"></span></p><p
style="text-align: center;">&nbsp;</p><p
style="text-align: left;">By looking at video I found out the following about <a
href="http://www.vimeo.com/4255076">Cullen and Mary</a>. Cullen has a tendency to use Skype and μTorrent and is an early bird. Creating a gazillion Word documents and occasionally a web page. Obviously he is a nature lover with pimped out laptop or notebook which contains his pictures, music, videos and more. He is constantly connecting to his friends computer. Strangely his name is Ben. Explorer on this desktop evolved into <a
class="zem_slink freebase/guid/9202a8c04000641f80000000000409f5" title="Web browser" rel="wikipedia" href="http://en.wikipedia.org/wiki/Web_browser">web browser</a> &#8230; sorry is looking like a web page with lots of useful links and ingenious folder and document icons. Sorting is done with new Windows subsystem which is similar to Rails on Windows technology. Icons are painted with Paint and animated using Silverlight technology.</p><p
style="text-align: left;">Like all the people in this Universe he likes to watch TV Series &#8230; on his laptop or notebook. Currently he is a fan of Futurama series and understands a dead language. His new operating system brings has an additional &#8220;My Something&#8221;. And a pimped out plugin that was available years ago for <a
class="zem_slink freebase/guid/9202a8c04000641f80000000001675f3" title="Mozilla Firefox" rel="geolocation" href="http://maps.google.com/maps?ll=45.1238,-123.1138&amp;spn=1.0,1.0&amp;q=45.1238,-123.1138%20%28Mozilla%20Firefox%29&amp;t=h">Firefox</a> browser which is integrated into operating system. Taskbar has totally animated icons. And can be moved independently of the Start icon. But wait the best is yet to come. Start icon can be moved around.</p><p
style="text-align: left;">Mary is more private person. But I think she likes cats.</p><p
style="text-align: left;">So Copenhagen Concept. A concept no doubt. I like the idea of Explorer evolving into a web browser. But to be able to run this GUI monstrosity I will probably need Dual Intel Octave processor with a tendency to high-end consumer graphics card which will probably use a minimum of 1GB of 3.56Gz memory for smooth transitions. Is that a users curse?</p><div
class="zemanta-img zemanta-action-dragged" style="margin: 1em; display: block;"><div
class="wp-caption alignleft" style="width: 250px"><a
href="http://www.flickr.com/photos/77113087@N00/310741273"><img
title="goodies for customers" src="http://static.twm-kd.com/twm-uploads/310741273_62ef18e099_m.jpg" alt="goodies for customers" width="240" height="183" /></a><p
class="wp-caption-text">Image by &#39;smil via Flickr</p></div></div><p
style="text-align: left;">And what about licensing? Will we get free Windows 8 operating system with payable update service? Probably not! We will surely get multiple choices of Professional, Home, Student, Ultimate, Unseen versions of Windows 8.</p><p
style="text-align: left;">Every version will be packed with goodies of which normal user will probably use 10% + Solitaire. With clever marketing campaign titled &#8220;Deal me one&#8221; Microsoft will surely win over the Linux desktop distributions, like <a
class="zem_slink" title="Ubuntu" rel="homepage" href="http://www.ubuntu.com/">Ubuntu</a>, <a
class="zem_slink freebase/guid/9202a8c04000641f80000000055e6fc1" title="Fedora (operating system)" rel="wikipedia" href="http://en.wikipedia.org/wiki/Fedora_%28operating_system%29">Fedora</a>, Gentoo, Mandriva, <a
class="zem_slink freebase/guid/9202a8c04000641f800000000074b115" title="OpenSUSE" rel="wikipedia" href="http://en.wikipedia.org/wiki/OpenSUSE">openSUSE</a> and others and once for all take over the desktop market.</p><p
style="text-align: left;">I have already setup my banking account and will save precious euros to buy Windows 8, but in the mean time I will wake up and install Linux &#8211; Ubuntu to be precise and see what the open source community has to offer.</p><div
class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a
class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/e7dc25e1-ba7c-4279-a4e1-d11ab1de673e/"><img
class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=e7dc25e1-ba7c-4279-a4e1-d11ab1de673e" alt="Reblog this post [with Zemanta]" /></a><span
class="zem-script more-related more-info pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div> <br
/><hr
/><div
class='related-posts'><h5>Related Posts:</h5><ol><li><a
href=' http://www.twm-kd.com/software/installing-windows-7-from-usb-flash-drive/' rel='bookmark'>Installing Windows 7 from USB flash drive</a></li><li><a
href=' http://www.twm-kd.com/software/windows-7-installation-on-hp-compaq-2230s-nn340es/' rel='bookmark'>Windows 7 installation on HP Compaq 2230s (NN340ES)</a></li><li><a
href=' http://www.twm-kd.com/software/utorrent-freezing-windows-7/' rel='bookmark'>µTorrent freezing Windows 7</a></li></ol></div>]]></content:encoded> <wfw:commentRss>http://www.twm-kd.com/software/dreaming-of-windows-8/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Windows 7 login using AuthenTec AES2810 fingerprint scanner on HP notebooks</title><link>http://www.twm-kd.com/software/windows-7-login-using-authentec-aes2810-fingerprint-scanner-on-hp-notebooks/</link> <comments>http://www.twm-kd.com/software/windows-7-login-using-authentec-aes2810-fingerprint-scanner-on-hp-notebooks/#comments</comments> <pubDate>Tue, 18 Aug 2009 09:13:24 +0000</pubDate> <dc:creator>RRunner</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[2230s]]></category> <category><![CDATA[AES2810]]></category> <category><![CDATA[AuthenTec]]></category> <category><![CDATA[biometric]]></category> <category><![CDATA[Biometrics]]></category> <category><![CDATA[Compaq]]></category> <category><![CDATA[Control Panel]]></category> <category><![CDATA[Device driver]]></category> <category><![CDATA[fingerprint]]></category> <category><![CDATA[fingerprint reader]]></category> <category><![CDATA[fingerprint scanner]]></category> <category><![CDATA[FU617AW]]></category> <category><![CDATA[Hewlett-Packard]]></category> <category><![CDATA[HP]]></category> <category><![CDATA[HP 2230s]]></category> <category><![CDATA[HP 8530p]]></category> <category><![CDATA[HP Compaq 2230s]]></category> <category><![CDATA[HP Compaq 2230s NN340ES]]></category> <category><![CDATA[HP EliteBook]]></category> <category><![CDATA[HP EliteBook 8530p]]></category> <category><![CDATA[HP EliteBook 8530p FU617AW]]></category> <category><![CDATA[Installation]]></category> <category><![CDATA[Microsoft Windows]]></category> <category><![CDATA[NN340ES]]></category> <category><![CDATA[Original equipment manufacturer]]></category> <category><![CDATA[problem]]></category> <category><![CDATA[Program Files\AuthenTec]]></category> <category><![CDATA[TrueSuite 2.0]]></category> <category><![CDATA[unavailable]]></category> <category><![CDATA[Window 7]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[Windows 7]]></category> <guid
isPermaLink="false">http://www.twm-kd.com/?p=2086</guid> <description><![CDATA[Image by chadmiller via Flickr Recently I wrote about installation of Windows 7 on HP Compaq 2230s. I had a few problems with device drivers which were resolved by downloading Vista drivers from HP site and installing them. My initial idea was to be able to use all devices on the notebook. I was specially [...]]]></description> <content:encoded><![CDATA[<div
class="zemanta-img zemanta-action-dragged" style="margin: 1em; display: block;"><div><dl
class="wp-caption alignright" style="width: 250px;"><dt
class="wp-caption-dt"><a
href="http://www.flickr.com/photos/51035573981@N01/98014022"><img
title="Ah ain't long for this whorl" src="http://static.twm-kd.com/twm-uploads/98014022_76081a741d_m.jpg" alt="Ah ain't long for this whorl" width="240" height="194" /></a></dt><dd
class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image by <a
href="http://www.flickr.com/photos/51035573981@N01/98014022">chadmiller</a> via Flickr</dd></dl></div></div><p>Recently I wrote about<a
href="http://www.twm-kd.com/computers/windows-7-installation-on-hp-compaq-2230s-nn340es/"> installation of Windows 7 on HP Compaq 2230s</a>. I had a few problems with <a
class="zem_slink freebase/guid/9202a8c04000641f8000000000013f2d" title="Device driver" rel="wikipedia" href="http://en.wikipedia.org/wiki/Device_driver">device drivers</a> which were resolved by downloading Vista drivers from HP site and installing them. My initial idea was to be able to use all devices on the notebook. I was specially interested in notebook fingerprint sensor and its capability to login to <a
class="zem_slink freebase/guid/9202a8c04000641f8000000000025fe8" title="Microsoft Windows" rel="wikipedia" href="http://en.wikipedia.org/wiki/Microsoft_Windows">Windows</a> account by using my fingerprint scanner.</p><p>The notebook has an OEM version of AuthenTec AES2810 fingerprint scanner. After installation of HP device driver <a
class="zem_slink freebase/guid/9202a8c04000641f8000000000950159" title="Fingerprint recognition" rel="wikipedia" href="http://en.wikipedia.org/wiki/Fingerprint_recognition">fingerprint reader</a> will be recognized and you will see fingerprint sensor. Since Windows 7 got a new Biometric Framework it is only prudent that the framework will get its own configuration section in Drivers and Hardware section. But this is where ASE2810 fails. When looking at <em>Start-&gt;Control panel-&gt;Hardware and Sound-&gt;Biometric Devices</em> you can see the AES2810 device but Windows 7 tells you that it is unavailable. If you are interested how this can be solved then read on!</p><p><span
id="more-2086"></span></p><p>AuthenTec provides you with a BETA version of their <a
class="zem_slink freebase/guid/9202a8c04000641f800000000000cda0" title="Computer software" rel="wikipedia" href="http://en.wikipedia.org/wiki/Computer_software">software</a> where you can enroll your <a
class="zem_slink freebase/guid/9202a8c04000641f80000000001b4344" title="Biometrics" rel="wikipedia" href="http://en.wikipedia.org/wiki/Biometrics">biometric</a> data. You can download the software from their web page:</p><ul><li>32bit version &#8211; <a
href="http://www.authentec.com/win7beta32.cfm ">Download</a></li></ul><ul><li>64bit version &#8211; <a
href="http://www.authentec.com/win7beta64.cfm">Download</a></li></ul><p>Since my version of Windows 7 is 32bit I downloaded and installed 32bit version. Restarted the computer and checked if I can start TrueSuite 2.0. You should do the same. You probably can not, because although Windows 7 shows AS2810 device as found you can not use it since AuthenTec drivers installation is not working as it should. If by some miracle you are able to access and run TrueSuite then &#8220;Bravo to you&#8221;!</p><p>Then I started to check what went wrong and I found out that the only way to get the scanner working with this software is to do the following:</p><ol><li>Run <em>C:\Program Files\AuthenTec, Inc\Authentec WBDI Driver Package\WIN7TS32.exe</em> which uninstalls  the software</li><li>Reboot the computer</li><li>Install the WBDI Driver Package again by using <a
class="zem_slink freebase/guid/9202a8c04000641f80000000002eff11" title="Installation (computer programs)" rel="wikipedia" href="http://en.wikipedia.org/wiki/Installation_%28computer_programs%29">installer</a> from previous location <em>C:\Program Files\AuthenTec, Inc\Authentec WBDI Driver Package\WIN7TS32.exe</em></li></ol><p>Now I assume that this complication is due to BETA nature of AuthenTec drivers. I was able to get the fingerprint scanner working on the following HP notebooks:</p><ul><li>HP Compaq 2230s (NN340ES) and</li><li>HP EliteBook 8530p (FU617AW).</li></ul><p>I was able to access fingerprint enrollment in <em>Start-&gt;<a
class="zem_slink freebase/guid/9202a8c04000641f8000000000576c7f" title="Control Panel (Windows)" rel="wikipedia" href="http://en.wikipedia.org/wiki/Control_Panel_%28Windows%29">Control Panel</a>-&gt;Hardware and Sound</em> under <em>Biometric Devices</em> section. By clicking on <em>Biometric Devices</em> you can see list and status of biometric devices that are detected by the system. At this point status changed to <em>Manage your fingerprint data</em>. By clicking on it you will run TrueSuite application and you can enroll or remove a fingerprint for specific account. With <em>Remove your fingerprint data</em> enrolled account fingerprint data will be completely removed.</p><p>In the <a
class="zem_slink freebase/guid/9202a8c04000641f80000000055d5879" title="Login" rel="wikipedia" href="http://en.wikipedia.org/wiki/Login">login screen</a> a fingerprint scanner is seen as a user account icon. Once you have enrolled your finger, logoff and try logging in with your enrolled finger. Swipe your finger and login.</p><p>A note of warning: after you decide which finger to enroll, be careful with whom you share this information. If you&#8217;re not too careful it could cost you a body part &#8230; &#8230; or at least a finger ;)</p><p><em>Update: Final version of Windows 7 AES2810 </em><em>driver </em><em>is available via Windows Update. If you are interested in what will be broken after installing it check this <a
href="http://www.twm-kd.com/computers/software/windows-7-driver-update-for-authentec-aes2810-fingerprint-scanner-on-hp-notebooks/">post</a>.</em></p><div
class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a
class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/7e3a22d6-4694-4955-a5b5-1761e692c297/"><img
class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=7e3a22d6-4694-4955-a5b5-1761e692c297" alt="Reblog this post [with Zemanta]" /></a><span
class="zem-script pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div> ]]></content:encoded> <wfw:commentRss>http://www.twm-kd.com/software/windows-7-login-using-authentec-aes2810-fingerprint-scanner-on-hp-notebooks/feed/</wfw:commentRss> <slash:comments>33</slash:comments> </item> <item><title>Windows 7 installation on HP Compaq 2230s (NN340ES)</title><link>http://www.twm-kd.com/software/windows-7-installation-on-hp-compaq-2230s-nn340es/</link> <comments>http://www.twm-kd.com/software/windows-7-installation-on-hp-compaq-2230s-nn340es/#comments</comments> <pubDate>Wed, 05 Aug 2009 08:29:37 +0000</pubDate> <dc:creator>RRunner</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[2230s]]></category> <category><![CDATA[Compaq]]></category> <category><![CDATA[HP]]></category> <category><![CDATA[HP Compaq 2230s NN340ES]]></category> <category><![CDATA[Installation]]></category> <category><![CDATA[Microsoft]]></category> <category><![CDATA[NN340ES]]></category> <category><![CDATA[Window 7]]></category> <category><![CDATA[Windows 7 RC]]></category> <category><![CDATA[Windows Vista]]></category> <category><![CDATA[Windows XP]]></category> <guid
isPermaLink="false">http://www.twm-kd.com/?p=2073</guid> <description><![CDATA[There is no better way to start an evening as unpacking new computer and starting to install new and fresh operating system on it. Since HP declared that 32bit version of the Windows Vista operating system will run on the notebook in question I decided to put that statement to the test. Actually I used [...]]]></description> <content:encoded><![CDATA[<p>There is no better way to start an evening as unpacking new computer and starting to install new and fresh operating system on it.</p><p>Since HP declared that 32bit version of the <a
class="zem_slink freebase/guid/9202a8c04000641f8000000000709946" title="Windows Vista" rel="homepage" href="http://www.microsoft.com/windows/windows-vista/default.aspx">Windows Vista</a> operating system will run on the notebook in question I decided to put that statement to the test. Actually I used bleeding edge technology, because I was not ready to buy <a
class="zem_slink freebase/guid/9202a8c04000641f8000000000025fe8" title="Windows" rel="homepage" href="http://www.microsoft.com/WINDOWS">Windows</a> Vista and <a
class="zem_slink freebase/guid/9202a8c04000641f8000000000026344" title="Microsoft" rel="homepage" href="http://www.microsoft.com">Microsoft</a> is kind enough to provide you with a free license for Windows 7 RC version. HP notebook had <a
class="zem_slink freebase/guid/9202a8c04000641f80000000000aaa92" title="FreeDOS" rel="homepage" href="http://www.freedos.org/">FreeDOS</a> installed as an operating system. I really used it to its maximal potential. It brought back some fond memories from 10 years ago but unfortunately I had to say goodbye to it. If you want to know how then read on.</p><p><span
id="more-2073"></span></p><p>I did not have any problems with Windows 7 installation. <a
href="http://www.twm-kd.com/computers/released-to-manufacturing-but-unable-to-install/">Previous undertakings</a> of BigWhale convinced me to remove all partitions from the disk and create one 150GB partition of which Windows 7 installer informed me that he might create smaller partition due to its internal usage.  That was fine by me and in an hour or so I was able to look at the picture below.</p><div
id="attachment_2084" class="wp-caption aligncenter" style="width: 610px"><img
class="size-full wp-image-2084" title="Windows7Desktop" src="http://static.twm-kd.com/twm-uploads/Windows7DesktopThumb.jpg" alt="Windows 7 Desktop" width="600" height="375" /><p
class="wp-caption-text">Windows 7 Desktop</p></div><p>Windows 7 installation happened without major problems. Creation of user account, <a
class="zem_slink freebase/guid/9202a8c04000641f80000000001d92f4" title="Windows 7" rel="homepage" href="http://windows.microsoft.com/en-US/Windows7/Home/">HomeGroup</a> password and that is all. I was interested how unpopulated the device list will be but I found out only 3 major problems with HP drivers. They were:</p><ul><li> USB\VID_08FF&amp;PID_2810&amp;REV_1703 (USB\VID_08FF&amp;PID_2810) &#8211; Fingerprint Sensor &#8211; Solved by installing AuthenTec Fingerprint Driver (32-bit) for MS Vista &#8211; <a
href="http://h20000.www2.hp.com/bizsupport/TechSupport/SoftwareDescription.jsp?lang=en&amp;cc=us&amp;prodTypeId=321957&amp;prodSeriesId=3764975&amp;prodNameId=3764978&amp;swEnvOID=2096&amp;swLang=13&amp;mode=2&amp;taskId=135&amp;swItem=ob-61785-1">Download</a></li></ul><ul><li> ACPI\HPQ0004 &#8211; Solved by installing HP 3D DriveGuard for MS Windows Vista &#8211; <a
href="http://h20000.www2.hp.com/bizsupport/TechSupport/SoftwareDescription.jsp?lang=en&amp;cc=us&amp;prodTypeId=321957&amp;prodSeriesId=3764975&amp;prodNameId=3764978&amp;swEnvOID=2096&amp;swLang=13&amp;mode=2&amp;taskId=135&amp;swItem=ob-63107-1">Download </a></li></ul><ul><li> ACPI\HPQ0006 &#8211; Solved by installing HP Quick Launchs Button for MS Windows Vista &#8211; <a
href="http://h20000.www2.hp.com/bizsupport/TechSupport/SoftwareDescription.jsp?lang=en&amp;cc=us&amp;prodTypeId=321957&amp;prodSeriesId=3764975&amp;prodNameId=3764978&amp;swEnvOID=2096&amp;swLang=13&amp;mode=2&amp;taskId=135&amp;swItem=ob-73359-1">Download </a></li></ul><p>If for some reason you are craving for up to date version of HP drivers you can get them <a
href="http://h20000.www2.hp.com/bizsupport/TechSupport/SoftwareIndex.jsp?lang=en&amp;cc=us&amp;prodNameId=3764978&amp;prodTypeId=321957&amp;prodSeriesId=3764975&amp;swLang=13&amp;taskId=135&amp;swEnvOID=2096">here</a>.</p><p>I have not noticed any performance drawbacks. Measuring Windows Experience Index informed me of 3.6 score. Quite low since every component except the graphics card rated higher than 4.9. Graphics card rated 3.2 and I guess that graphics card is what runs this operating system.</p><p>On average My Experience Index is telling me that this version of Windows is running a little faster than Windows Vista and a lot slower than <a
class="zem_slink freebase/guid/9202a8c04000641f8000000000041600" title="Windows XP" rel="homepage" href="http://www.microsoft.com/windows/products/windowsxp/">Windows XP</a>. I was pleased with the installation which bear in mind was performed on empty disc and it did not require much effort or administration knowledge. I have tested <a
class="zem_slink freebase/guid/9202a8c04000641f8000000000079189" title="Wi-Fi" rel="wikipedia" href="http://en.wikipedia.org/wiki/Wi-Fi">WiFi</a> and wired network connection and both worked out of the box, on already setup and tested router without problems. The fingerprint scanner is not working as I have hoped. Device is detected but I can not logon using it. It will need some hacking.</p><p>Overall I am quite pleased.</p><div
class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a
class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/cc9a760f-29ff-49bc-9524-afab2ca2c341/"><img
class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=cc9a760f-29ff-49bc-9524-afab2ca2c341" alt="Reblog this post [with Zemanta]" /></a><span
class="zem-script more-related more-info pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div> ]]></content:encoded> <wfw:commentRss>http://www.twm-kd.com/software/windows-7-installation-on-hp-compaq-2230s-nn340es/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Released To Manufacturing, but unable to install</title><link>http://www.twm-kd.com/software/released-to-manufacturing-but-unable-to-install/</link> <comments>http://www.twm-kd.com/software/released-to-manufacturing-but-unable-to-install/#comments</comments> <pubDate>Thu, 30 Jul 2009 11:19:10 +0000</pubDate> <dc:creator>BigWhale</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Adobe Flash]]></category> <category><![CDATA[Chuck Norris]]></category> <category><![CDATA[Installation]]></category> <category><![CDATA[Internet Explorer]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Microsoft]]></category> <category><![CDATA[Operating system]]></category> <category><![CDATA[Windows 7]]></category> <category><![CDATA[Windows Vista]]></category> <guid
isPermaLink="false">http://www.twm-kd.com/?p=1994</guid> <description><![CDATA[It was time to finally install Windows 7. Ready To Manufacture version. I must admit, I was quite skeptical about this because it seems that I have been cursed in my youth and Microsoft products simply fail with me.<hr
/><div
class='related-posts'><h5>Related Posts:</h5><ol><li><a
href=' http://www.twm-kd.com/linux/network-boot-and-install-of-ubuntu-linux/' rel='bookmark'>Network boot and install of Ubuntu Linux</a></li><li><a
href=' http://www.twm-kd.com/software/dreaming-of-windows-8/' rel='bookmark'>Dreaming of Windows 8</a></li><li><a
href=' http://www.twm-kd.com/linux/kazam/kazam-0-90-released/' rel='bookmark'>Kazam 0.90 released</a></li></ol></div>]]></description> <content:encoded><![CDATA[<div
class="zemanta-img zemanta-action-dragged" style="margin: 1em; display: block;"><div><dl
class="wp-caption alignright" style="width: 250px;"><dt
class="wp-caption-dt"><a
href="http://www.flickr.com/photos/63227032@N00/2394409082"><img
title="Windows Se7en" src="http://static.twm-kd.com/twm-uploads/2394409082_24db67be56_m.jpg" alt="Windows Se7en" width="240" height="55" /></a></dt><dd
class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image by <a
href="http://www.flickr.com/photos/63227032@N00/2394409082">Dekuwa</a> via Flickr</dd></dl></div></div><p>It was time to finally install Windows 7. Released To Manufacturing version. I must admit, I was quite skeptical about this because it seems that I have been cursed in my youth and <a
class="zem_slink freebase/guid/9202a8c04000641f8000000000026344" title="Microsoft" rel="homepage" href="http://www.microsoft.com">Microsoft</a> products simply fail with me. No, seriously, I have had so many issues with Windows that even Chuck Norris can&#8217;t count all of them, and he counted to infinity, twice. I do hope that you are not affected by the same curse.</p><p>So why Windows 7 if nothing works for me like it should? Windows 7 was, and still is praised by a lot of fans. It is even praised by some people that are not, you know,  typical fan-boys. I wanted to see what this praise was all about and what is so great on Windows 7. I already had <a
class="zem_slink freebase/guid/9202a8c04000641f800000000017208e" title="Software release life cycle" rel="wikipedia" href="http://en.wikipedia.org/wiki/Software_release_life_cycle">Release Candidate</a> 1 downloaded but I decided to <em>obtain</em> Ready To Manufacture version, they said that <em>it is the shit</em>.</p><p><span
id="more-1994"></span></p><p>First I made backup of existing Windows <a
class="zem_slink freebase/guid/9202a8c04000641f8000000000709946" title="Windows Vista" rel="homepage" href="http://www.microsoft.com/windows/windows-vista/default.aspx">Vista</a> partition. I had it installed on first partition on the first hard drive and I have few hundred GB free on my Backup drive, so all I did was:</p><pre colla="+" lang="bash">$ sudo dd if=/dev/sda1 of=/media/Backup/Vista.img bs=4096</pre><p>Yes, this is all you need to do, to get a working (and mountable) image of your <a
class="zem_slink freebase/guid/9202a8c04000641f800000000006b1fa" title="Disk partitioning" rel="wikipedia" href="http://en.wikipedia.org/wiki/Disk_partitioning">hard disk partition</a>. If you&#8217;re using Linux or some other unix-like operating system that has the dd command.</p><p>After a reboot and a long wait at the <em>Starting Windows</em> screen I was able to proceed with installation. Unfortunately it seems that the curse is still on me. Installation stopped before it even started. I wasn&#8217;t able to install Windows 7, why? I had no idea at the time, take a look at the screen shot.</p><div
id="attachment_1995" class="wp-caption aligncenter" style="width: 310px"><a
href="http://static.twm-kd.com/twm-uploads/disk-fail.jpg"><img
class="size-medium wp-image-1995" title="Unable to install" src="http://static.twm-kd.com/twm-uploads/disk-fail-300x225.jpg" alt="Why on earth?" width="300" height="225" /></a><p
class="wp-caption-text">Why on earth?</p></div><p>What did I do? I wanted to install on existing partition and Windows 7 told me that old files will be moved to some other place. Not good enough since I wanted them to disappear. I formatted the partition and tried to install. I failed. Then, I deleted the partition and again tried to install, and again failed. There was no way to install Windows 7. Repartitioning the whole disk was out of the question.</p><div
id="attachment_1996" class="wp-caption aligncenter" style="width: 310px"><a
href="http://static.twm-kd.com/twm-uploads/disk-fail-2.jpg"><img
class="size-medium wp-image-1996" title="Partition Blues" src="http://static.twm-kd.com/twm-uploads/disk-fail-2-300x225.jpg" alt="Deleting didn't help." width="300" height="225" /></a><p
class="wp-caption-text">Deleting didn&#39;t help.</p></div><p>What&#8217;s next? First a reboot, maybe <a
class="zem_slink freebase/guid/9202a8c04000641f80000000002eff11" title="Installation (computer programs)" rel="wikipedia" href="http://en.wikipedia.org/wiki/Installation_%28computer_programs%29">installer</a> will change its mind after new partition was created. It didn&#8217;t. Then I went into Repair Mode. Windows 7 installation gives you an option to repair broken Windows 7 installations. I was wondering how this would apply to me since I had no installation and there was nothing to repair. However, I was able to run console and consult with the diskpart program about disk setup. I was happy. I deleted the partition, created new one and formatted it, all in commad line.</p><p>It didn&#8217;t help. I wasn&#8217;t able to install. The story of Windows 7 seemed to be coming to a grinding halt, sad story without <em>they lived happily ever after</em> ending. Then I remembered to take a look at the BIOS settings. It appeard that I had my first SATA hard disk marked as my second hard disk. I have two equally the same 320 GB hard disks for system installations. One hosted Vista and OS X, the other one hosted Linux and their order in BIOS was reversed. I have no idea why, but I&#8217;m sure I had a good reason to do this. Not so long ago Ubuntu 9.0.4 installed without any problems on this configuration.</p><p>I put the drives in normal order and I was able to install. Couple of reboots later I was stuck again. Installation stoppped at the &#8220;Completing the installation &#8230;&#8221; and wouldn&#8217;t continue. This was a little easier to resolve. I ejected the DVD and installation continued with a reboot. After the reboot I was back in Business, err, Ultimate. ;)</p><p>Windows 7 did install quite quickly not counting all the trouble that I had to go through to get it to work. I am sure that the big dinosaur in Redmond called Microsoft has this big switchboard with a bazillion lights on it, some sort of the blinkenlights machine, and each time someone installs Windows the light gets turned on, so I made them happy for a while. However my first search term in Bling when I opened <a
class="zem_slink freebase/guid/9202a8c04000641f800000000001f360" title="Internet Explorer" rel="wikipedia" href="http://en.wikipedia.org/wiki/Internet_Explorer">Internet Explorer</a> 8 was Firefox &#8230; Then it was Pidgin, then Thunderbird, then X-Chat, &#8230;</p><p>I did noticed few annoyances in Windows 7 already:</p><ul><li>Dragging window by its title bar and hitting top of the screen will draw an outline of a maximized window, releasing mouse button at this point will maximize the window. I hit this feature at least five times in less than an hour. Keep in mind that I really dislike maximized windows. I dislike them so much that I remove Maximize buttons when using KDE.</li><li>Firefox 3.5 is always bitching about starting in safe mode. I have no idea why. So far I have installed only <a
class="zem_slink freebase/guid/9202a8c04000641f8000000000006a4d" title="Adobe Systems" rel="homepage" href="http://www.adobe.com/">Adobe</a> Flash plug-in.</li><li>Righ clicking on pinned icon in task bar doesn&#8217;t bring the old right click menu. You only get options to run the program and to unpin the icon. What about finding the source executable?</li><li>Icons on task bar now represent running programs too. If icon is lit/turned on this program is aready running. By clicking on the icon, program is maximized or brought to the front. Want to run another instance? Right click on the icon and select first option. Quite annoying for someone that wants to open six or seven putty terminal emulators.</li><li>Task bar is bloody huge when un-grouping applications and trying to get <em>the old look</em> back, using small icons helps a little.</li><li>When un-grouped, currently running applications are mixed with icons of non running applications the whole task bar looks rather messed up. Clearly Microsoft would like me to believe that their new task bar works better in the grouped mode and this is how I should use it.</li><li>Switching between regional settings and keyboard layouts is weird! Coming from a country that needs its own <a
class="zem_slink freebase/guid/9202a8c04000641f80000000005af446" title="Keyboard layout" rel="wikipedia" href="http://en.wikipedia.org/wiki/Keyboard_layout">keyboard layout</a> and regional settings, this is highly annoying. When I start putty my settings are SL with US Keyboard, when I start Firefox, settings are SL with Slovenian keyboard. Pressing Left-Alt + Left-Shift to change keyboard layout in putty just switches to EN setting with US keyboard. When running Putty, I settings are SL with US Keyboard and LALT+SHIFT change to EN with US keyboard. Which is, keyboard-wise the same. I have to switch keyboard manually if I want Slovenian keyboard. And I can&#8217;t remove US keyboard from Slovenian language settings. Update: This appeared to be PEBKAC. The whole problem would go away sooner if LALT+SHIFT could be used for switching different keyboards for one locale settings.</li><li>Pressing Print Screen or Alt+Print-Screen still does nothing useful. It just copies current screen or currently selected window to clipboard. It is really annoying to run Paintbrush, re-size the default image, paste the content and save, if you want a screen shot.</li><li>Regarding previous post, ALT-F2 or CTRL-SPACE does nothing. In some other <a
class="zem_slink freebase/guid/9202a8c04000641f800000000002c5ef" title="Operating system" rel="wikipedia" href="http://en.wikipedia.org/wiki/Operating_system">operating systems</a> it brings up the quick-run tool where you enter a name of the program you wish to run. Now you have to click Windows button and click on search, type pbrush and press enter.</li><li>TrueCrypt told me that it doesn&#8217;t work like it should on Windows 7. So far no problems. I mounted the volume, but didn&#8217;t try to use it yet.</li><li>Time management. When, oh When will Microsoft realize that system hardware time needs to be on UTC! Always! Now, if I let windows manage my daylight savings time setting, they will set my hardware clock to UTC+2 to compensate for daylight saving, when I boot to Linux which handles time as it should, my time will be off by couple of hours. If I don&#8217;t let them set my <a
class="zem_slink freebase/guid/9202a8c04000641f800000000005e269" title="Daylight saving time" rel="wikipedia" href="http://en.wikipedia.org/wiki/Daylight_saving_time">DST</a> then applications that depend on time will be screwed up. Twhirl for example.</li></ul><p>Is Windows 7 ready for  manufacturing? Microsoft says it is. So far I think it is just Vista upgrade and that they could do better at those more specific and advanced tasks. How do I remove Maximize button and how do I select thickness of window frames or remove them completely?</p><p>Later today, I will be installing some games &#8230;</p><p>Update: RTM is of course Released To Manufacturing not Ready To Manufacture.</p><h6 class="zemanta-related-title" style="font-size: 1em;">Related articles by Zemanta</h6><ul
class="zemanta-article-ul"><li
class="zemanta-article-ul-li"><a
href="http://r.zemanta.com/?u=http%3A//www.guardian.co.uk/technology/blog/2009/jul/22/windows7-rtm-release&amp;a=6387782&amp;rid=3fa3ee62-1e3d-4b17-8293-f444a522a795&amp;e=d8f56bfd84655c4b4775b67063f3b333">Windows 7 released to manufacturing</a> (guardian.co.uk)</li><li
class="zemanta-article-ul-li"><a
href="http://ptech.allthingsd.com/20090722/for-some-move-to-windows-7-will-be-tough/?mod=ATD_rss">For Some, Move To Windows 7 Will Be Tough</a> (ptech.allthingsd.com)</li><li
class="zemanta-article-ul-li"><a
href="http://r.zemanta.com/?u=http%3A//www.telegraph.co.uk/technology/microsoft/5918661/Microsoft-to-offer-choice-of-browsers-in-Windows-7.html&amp;a=6494952&amp;rid=3fa3ee62-1e3d-4b17-8293-f444a522a795&amp;e=354657866796ad77b372788e8caebec8">Microsoft to offer choice of browsers in Windows 7</a> (telegraph.co.uk)</li><li
class="zemanta-article-ul-li"><a
href="http://www.francescofederico.net/2009/07/29/internet-explorer-bailout-page/">Internet Explorer bailout page</a> (francescofederico.net)</li></ul><div
class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a
class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/3fa3ee62-1e3d-4b17-8293-f444a522a795/"><img
class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=3fa3ee62-1e3d-4b17-8293-f444a522a795" alt="Reblog this post [with Zemanta]" /></a><span
class="zem-script more-related more-info pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div> <br
/><hr
/><div
class='related-posts'><h5>Related Posts:</h5><ol><li><a
href=' http://www.twm-kd.com/linux/network-boot-and-install-of-ubuntu-linux/' rel='bookmark'>Network boot and install of Ubuntu Linux</a></li><li><a
href=' http://www.twm-kd.com/software/dreaming-of-windows-8/' rel='bookmark'>Dreaming of Windows 8</a></li><li><a
href=' http://www.twm-kd.com/linux/kazam/kazam-0-90-released/' rel='bookmark'>Kazam 0.90 released</a></li></ol></div>]]></content:encoded> <wfw:commentRss>http://www.twm-kd.com/software/released-to-manufacturing-but-unable-to-install/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> </channel> </rss>
