<?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>windows | The Clever Shark</title>
	<atom:link href="https://clevershark.com/tag/windows/feed/" rel="self" type="application/rss+xml" />
	<link>https://clevershark.com</link>
	<description>Bits and rants from Tony Emond</description>
	<lastBuildDate>Wed, 11 Mar 2026 02:56:37 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
<site xmlns="com-wordpress:feed-additions:1">127613282</site>	<item>
		<title>Running a Windows virtual machine on Linux using an Existing Windows Installation</title>
		<link>https://clevershark.com/2026/03/running-a-windows-virtual-machine-on-linux/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=running-a-windows-virtual-machine-on-linux</link>
					<comments>https://clevershark.com/2026/03/running-a-windows-virtual-machine-on-linux/#respond</comments>
		
		<dc:creator><![CDATA[tony]]></dc:creator>
		<pubDate>Wed, 11 Mar 2026 02:49:02 +0000</pubDate>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[machine]]></category>
		<category><![CDATA[raw]]></category>
		<category><![CDATA[virtual]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[vm]]></category>
		<category><![CDATA[windows]]></category>
		<guid isPermaLink="false">https://clevershark.com/?p=3495</guid>

					<description><![CDATA[I&#8217;ve been a Linux user for years. At home I&#8217;ve kept a file server which runs off Linux, but that was &#8220;classic Linux&#8221; &#8212; without a graphical user interface, using the command line, and doing things the &#8220;hard way&#8221;. My main desktop PC was still running Windows, and had to because the one game I &#8230; <a href="https://clevershark.com/2026/03/running-a-windows-virtual-machine-on-linux/" class="more-link">Continue reading <span class="screen-reader-text">Running a Windows virtual machine on Linux using an Existing Windows Installation</span></a>]]></description>
										<content:encoded><![CDATA[<p>I&#8217;ve been a Linux user for years. At home I&#8217;ve kept a file server which runs off Linux, but that was &#8220;classic Linux&#8221; &#8212; without a graphical user interface, using the command line, and doing things the &#8220;hard way&#8221;. My main desktop PC was still running Windows, and had to because the one game I play regularly, Fortnite, was not available on Linux.</p>
<p>Well, someone recommended that I check out GeFORCE NOW, which is a virtualized environment you can use within Linux to play a large number of games in the cloud. I&#8217;ve always been skeptical about that type of play, largely because the capacity of the system to provide a good gaming experience had not previously been available. However since I live alone and have a good broadband connection I tried it out and loved it. It&#8217;s indistinguishable from playing the game from your own computer.</p>
<p>So, since most of the apps I use are open-source or otherwise available for Linux, I decided to switch from Windows to Ubuntu 24.04. My PC has two hard drives as well as a NVME drive which hosts the Windows system, so I decided to delete and transfer what I could from a 1TB drive and installed Ubuntu on there. It was a breeze and I was quickly up and running. Ubuntu has very good hardware support so most things just worked, and the only thing I had to hunt down was a driver for the Logitech G13 gamepad I constantly use. I&#8217;ve been running this for about 3 weeks now and I have no desire to go back.</p>
<p>However, today I came up against an obstacle. On Windows I used Bitvise SSH client to connect to this server, and Bitvise saves its files in its own binary format. I found myself in a situation where I would have to go back to Windows to use Bitvise to connect to my server. Also while my current situation does not require that I have access to a Windows machine, that can change all too easily. So I decided to create a Windows virtual machine (VM from now on), but instead of using a virtual hard drive file, I would simply use the disk on which Windows is already installed. That makes a lot more sense. It&#8217;s just more efficient.</p>
<p>I found one set of instructions to help me do that, but it dates back to 2021 and hasn&#8217;t been updated more recently, so I spend some time figuring out the more current way to go about it.</p>
<h1>How to run a Windows VM from an existing Windows disk</h1>
<p>For this you will naturally need a computer running Linux, preferably something Debian-based like Ubuntu. You will also need to install VirtualBox on that computer (<a href="https://www.virtualbox.org/wiki/Downloads">downloads here</a>). You should also disable Bitlocker encryption from your Windows drive before proceeding. I didn&#8217;t have it enabled on my drive so I don&#8217;t know how that would affect the installation.</p>
<h2>Set up your user</h2>
<p>Your user will need to be part of two groups: &#8220;disk&#8221; (to enable raw disk access) and &#8220;vboxusers&#8221;.</p>
<p><code>sudo usermod -aG disk,vboxusers [user]</code></p>
<p>Also let&#8217;s create a folder &#8220;vms&#8221; in your home directory in which you will keep your VMs:</p>
<p><code>mkdir vms</code></p>
<h2>Set up your Windows disk</h2>
<p>First, find out where your Windows drive is mounted. By default when you install Ubuntu on a computer with FAT32 or NTFS drives, they will be accessible to Linux.</p>
<p><code>lshw -short -class disk,volume</code></p>
<p>This will show you a list of your hard disks and their partitions. Look for a disk that contains a &#8220;Windows FAT volume&#8221;, a &#8220;reserved partition&#8221; and one or more &#8220;Windows NTFS volumes&#8221; and note the entry in the Device column for the disk (not partition). Usually this will be &#8220;/dev/nvme0&#8221; (if you have a NVME disk) or &#8220;/dev/sda&#8221;.</p>
<p>Next, we&#8217;re going to create a special file that points to that disk using a utility that is installed with VirtualBox. Enter this as your regular user (not root):</p>
<p><code>VBoxManage createmedium disk --filename=vms/[disk file].vmdk --variant=RawDisk --format=VMDK --property RawDrive=[Windows drive]</code></p>
<p>This file points at the location of the Windows drive.</p>
<h2>Create a VM</h2>
<p>Now we&#8217;ll start using VirtualBox itself. But before we do, let&#8217;s install the VirtualBox Extension Pack (<a href="https://www.virtualbox.org/wiki/Downloads">download from here</a>). To install the file just double-click on it on the file. It will launch VirtualBox and the installation will take place.</p>
<p>In the VirtualBox dashboard, click on the Create a new virtual machine (VM) link.</p>
<ol>
<li>In the VM Name field, enter a name for the virtual machine</li>
<li>The VM Folder should be &#8220;/home/[user]/vms&#8221;</li>
<li>In the OS field select Microsoft Windows</li>
<li>In the OS Version field select the version of Windows installed on your Windows disk.Win12</li>
<li>Click on the Next button at the bottom right of the New Virtual Machine window.</li>
<li>Under Specify virtual hardware, adjust the Base Memory and Number of CPUs. Bring the Disk Size slider to the lowest value. Note that using 16GB (or more) of RAM is highly recommended otherwise you&#8217;ll find the VM experience very taxing, but keep in mind that this memory will not be available to your Linux apps while the VM is running.</li>
<li>Select Use EFI</li>
<li>Click on the Next button.</li>
<li>Click on the Finish button.</li>
</ol>
<h2>Attach The Windows Disk to the VM</h2>
<p>Now we&#8217;ll attach the pointer file we created in step 1 to the VM.</p>
<ol>
<li>In the Machines tab of VirtualBox Manager, right-click on the new VM and click on Settings.</li>
<li>In the [VM]-Settings window, select the Storage tab.</li>
<li>You&#8217;ll see a .vdi file which we won&#8217;t be using. Click on the Add Attachment button at the bottom right of the Devices box (see below) and select Hard disk from the dropdown menu. <img data-recalc-dims="1" fetchpriority="high" decoding="async" data-attachment-id="3499" data-permalink="https://clevershark.com/2026/03/running-a-windows-virtual-machine-on-linux/attach-disk/" data-orig-file="https://i0.wp.com/clevershark.com/wp-content/uploads/2026/03/Attach-disk.png?fit=1023%2C407&amp;ssl=1" data-orig-size="1023,407" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Attach disk" data-image-description="&lt;p&gt;Attach Disk&lt;/p&gt;
" data-image-caption="" data-medium-file="https://i0.wp.com/clevershark.com/wp-content/uploads/2026/03/Attach-disk.png?fit=300%2C119&amp;ssl=1" data-large-file="https://i0.wp.com/clevershark.com/wp-content/uploads/2026/03/Attach-disk.png?fit=660%2C263&amp;ssl=1" class="aligncenter size-full wp-image-3499" src="https://i0.wp.com/clevershark.com/wp-content/uploads/2026/03/Attach-disk.png?resize=660%2C263&#038;ssl=1" alt="Attach Disk" width="660" height="263" srcset="https://i0.wp.com/clevershark.com/wp-content/uploads/2026/03/Attach-disk.png?w=1023&amp;ssl=1 1023w, https://i0.wp.com/clevershark.com/wp-content/uploads/2026/03/Attach-disk.png?resize=300%2C119&amp;ssl=1 300w, https://i0.wp.com/clevershark.com/wp-content/uploads/2026/03/Attach-disk.png?resize=768%2C306&amp;ssl=1 768w" sizes="(max-width: 660px) 100vw, 660px" /></li>
<li>In the Hard Disk selector window, click the Add button.</li>
<li>Select the .vmdk file you created earlier in the file selection dialog box.</li>
<li>With the .vmdk file selected, click on the Choose button.</li>
<li>In the [VM]-Settings window, select the .vdi file, and click on the Remove Attachment button (next to the Add Attachment button).</li>
<li>Click OK to save your VM configuration.</li>
</ol>
<h2>Run Your VM</h2>
<p>Nothing left to do but to run the VM and make sure it works, so in the Machines tab of VirtualBox Manager, right-click on the VM you just edited and select Start &gt; Start with GUI.</p>
<p>You should be able to log into your Windows installation.</p>
<p>If you have tried in the past to install Linux and modified the UEFI partition of your boot disk&#8230; well, you will then have to navigate around the disk using the GRUB CLI to fix your boot sequence. This is beyond the scope of this particular tutorial, but instructions are easily found online. I had to do this myself.</p>
<p>Something else that came to mind as I was writing this was to try and see if I can do the same thing using QEMU instead of VirtualBox, which I will also write a tutorial for if I can manage to do it.</p>
<p>Keep in mind that virtualization at the local level can be a bit tricky and resource-intensive. It&#8217;s also one of the rare things that can completely freeze up your system and force you to reboot it &#8212; that&#8217;s called a kernel panic.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://clevershark.com/2026/03/running-a-windows-virtual-machine-on-linux/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">3495</post-id>	</item>
		<item>
		<title>I can only hope it fails as fast.</title>
		<link>https://clevershark.com/2008/01/i-can-only-hope-it-fails-as-fast/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=i-can-only-hope-it-fails-as-fast</link>
					<comments>https://clevershark.com/2008/01/i-can-only-hope-it-fails-as-fast/#respond</comments>
		
		<dc:creator><![CDATA[tony]]></dc:creator>
		<pubDate>Sun, 20 Jan 2008 17:26:59 +0000</pubDate>
				<category><![CDATA[Interesting]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Net]]></category>
		<category><![CDATA[ashton-tate]]></category>
		<category><![CDATA[dBase]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[windows]]></category>
		<guid isPermaLink="false">http://clevershark.com/?p=1761</guid>

					<description><![CDATA[A former dBase architect sees ominous parallels between Ashton-Tate swan-song dBase IV and Windows Vista. Looks like Microsoft&#8217;s much-maligned OS could in fact be the beginning of the end for Redmond. Perhaps it&#8217;s no coincidence that Bill Gates has decided to end his day-to-day involvement in the company at this time.]]></description>
										<content:encoded><![CDATA[<p>A former dBase architect sees <a href="http://garywiz.typepad.com/trial_by_fire/2006/03/windows_vista_p.html" title="Vista is the new dBase IV" target="_blank">ominous parallels between Ashton-Tate swan-song dBase IV and Windows Vista</a>. Looks like Microsoft&#8217;s much-maligned OS could in fact be the beginning of the end for Redmond. Perhaps it&#8217;s no coincidence that Bill Gates has decided to end his day-to-day involvement in the company at this time.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://clevershark.com/2008/01/i-can-only-hope-it-fails-as-fast/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1761</post-id>	</item>
		<item>
		<title>&#8220;This is not the target market&#8221; -Mitch Hedberg</title>
		<link>https://clevershark.com/2007/12/this-is-not-the-target-market-mitch-hedberg/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=this-is-not-the-target-market-mitch-hedberg</link>
					<comments>https://clevershark.com/2007/12/this-is-not-the-target-market-mitch-hedberg/#respond</comments>
		
		<dc:creator><![CDATA[tony]]></dc:creator>
		<pubDate>Thu, 20 Dec 2007 16:10:41 +0000</pubDate>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[Funny]]></category>
		<category><![CDATA[Net]]></category>
		<category><![CDATA[Stupid]]></category>
		<category><![CDATA[offer]]></category>
		<category><![CDATA[silly]]></category>
		<category><![CDATA[ultimate]]></category>
		<category><![CDATA[unwanted]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[worthless]]></category>
		<guid isPermaLink="false">http://clevershark.com/?p=1751</guid>

					<description><![CDATA[This morning I noticed a message entitled &#8220;Happy birthday Windows Vista&#8221; in my inbox. The message was in French but the subject line was still in English, which kinda hints at the idea that Microsoft &#8220;doesn&#8217;t get&#8221; Canada&#8217;s bilingualism, but that&#8217;s nit-picky of me&#8230; the message offers me a 2-for-1 on Vista Ultimate upgrades. If &#8230; <a href="https://clevershark.com/2007/12/this-is-not-the-target-market-mitch-hedberg/" class="more-link">Continue reading <span class="screen-reader-text">&#8220;This is not the target market&#8221; -Mitch Hedberg</span></a>]]></description>
										<content:encoded><![CDATA[<p>This morning I noticed a message entitled &#8220;Happy birthday Windows Vista&#8221; in my inbox. The message was in French but the subject line was still in English, which kinda hints at the idea that Microsoft &#8220;doesn&#8217;t get&#8221; Canada&#8217;s bilingualism, but that&#8217;s nit-picky of me&#8230; the message offers me a 2-for-1 on Vista Ultimate upgrades. If I buy one, I get a second one free.</p>
<p><span id="more-1751"></span> I&#8217;ve written here a few times about Windows Vista, I think it&#8217;s pretty damn terrible. I really haven&#8217;t had *anything* positive to say about it. It offers nothing substantial over XP but needs twice the system resources, and really serves no need except Microsoft&#8217;s (namely, to increase OS revenue and let Bill get that additional ivory backscratcher he&#8217;s been eyeing). So clearly, I&#8217;d have to have withstood some form of brain damage to then go and spend more money on what is essentially more Vista. Something that offers little additional functionality, and probably requires even more resources.</p>
<p>And then I get this bit of good news in my inbox.  If I decide to go with the slower, more DRM-shackled computing experience I can have that wonderful experience on not one but TWO PCs! What a dream. So I asked myself, do I have TWO PCs that I want to run slower and with poorer hardware support?</p>
<p>Well, as a matter of fact no&#8230; I think my computing experience is fine with XP and Ubuntu, really. I have Vista installed on one of my PCs &#8212; but I&#8217;m really not using it; it was something I got for free because of an upgrade program and I&#8217;ve really only made use of it when Halo 2 came out for the PC (and a tepid-tastic experience <em>that</em> was, really). I guess Redmond really doesn&#8217;t get the fact you&#8217;re really not going to make anyone optimistic about Vista, unless you pay them to sell it of course.</p>
<p>This wonderful offer did make me smirk a little, I have to admit. With all these &#8220;special offers&#8221; it&#8217;s becoming pretty clear that Vista retail is a flop and that Microsoft isn&#8217;t too far from the point where it&#8217;s going to consider giving it away, or even maybe paying people to use it &#8212; I have heard from trusted sources that Microsoft has some pretty hefty rewards for high-profile bloggers who move on from Windows to open-source solutions. Maybe the same phenomenon is about to hit the retail channels. That might have the distinct advantage of making Vista actually worth using. In any case it seems that bribing your user base must be more expensive than actually listening to what customers want, at least for the Redmond giant.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://clevershark.com/2007/12/this-is-not-the-target-market-mitch-hedberg/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1751</post-id>	</item>
		<item>
		<title>Why make even a few users nervous if you don&#8217;t have to?</title>
		<link>https://clevershark.com/2007/11/this-will-cause-excitement-with-the-tin-foil-hat-crowd/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=this-will-cause-excitement-with-the-tin-foil-hat-crowd</link>
					<comments>https://clevershark.com/2007/11/this-will-cause-excitement-with-the-tin-foil-hat-crowd/#comments</comments>
		
		<dc:creator><![CDATA[tony]]></dc:creator>
		<pubDate>Fri, 30 Nov 2007 02:46:20 +0000</pubDate>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[Net]]></category>
		<category><![CDATA[Technical writing]]></category>
		<category><![CDATA[bad usability]]></category>
		<category><![CDATA[hewlett-packard]]></category>
		<category><![CDATA[hp]]></category>
		<category><![CDATA[restore]]></category>
		<category><![CDATA[restoring]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[useability]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[windows]]></category>
		<guid isPermaLink="false">http://clevershark.com/?p=1738</guid>

					<description><![CDATA[I&#8217;m restoring the original software on my HP tx1218 tonight and came across something I found amusing: HP makes driver installer, called the File Based Installer. Now this doesn&#8217;t seem all that amusing, and in itself it isn&#8217;t, but note the initials, it&#8217;s going to be relevant. And at least mildly interesting. The way a &#8230; <a href="https://clevershark.com/2007/11/this-will-cause-excitement-with-the-tin-foil-hat-crowd/" class="more-link">Continue reading <span class="screen-reader-text">Why make even a few users nervous if you don&#8217;t have to?</span></a>]]></description>
										<content:encoded><![CDATA[<p>I&#8217;m restoring the original software on my HP tx1218 tonight and came across something I found amusing: HP makes driver installer, called the <strong>F</strong>ile <strong>B</strong>ased <strong>I</strong>nstaller. Now this doesn&#8217;t seem all that amusing, and in itself it isn&#8217;t, but note the initials, it&#8217;s going to be relevant. And at least mildly interesting.</p>
<p><span id="more-1738"></span></p>
<p>The way a Vista computer gets restored is by a two-step process:</p>
<ol>
<li>Windows Vista is installed off the CD</li>
<li>The manufacturer then has Vista run an installer which runs until all the devices on the PC are installed.</li>
<li>Every time an installer needs a restart, the computer restarts, and the installer picks up where it left off.</li>
<li>Your PC will restart. And restart. And restart.</li>
</ol>
<p>This <em>will</em> go on for hours, and the hard disk is spinning the whole time. What this means is that the computer is on, you see your desktop, but if you try and actually use your computer by starting an application the computer is so slow and unresponsive it&#8217;s not useable.  All you see is an item in your taskbar that shows the name of the installer.</p>
<p>This is where it gets funny. It&#8217;s the File Based Installer Graphical User Interface Manager. But that would be too long for an application name, so they used  acronyms.  As a result the installer application is called &#8220;FBI Gui Manager&#8221;.</p>
<p>So your computer is on but you can&#8217;t really use it, and that seems because of a program called &#8220;FBI Gui Manager&#8221;; you can&#8217;t stop this application, and to top it off it doesn&#8217;t have an interface, so if you click on it you don&#8217;t see a window. You hear your hard drive working constantly, and if you have a laptop you notice that it&#8217;s grown hot, and the fan is constantly running at maximum flow as well. And it literally runs for hours. Take this situation, add a user who&#8217;s a bit paranoid,  combine with the relatively-recent attention to the whole &#8220;warrantless wiretapping&#8221; stories that have been coming out of the United States, and you have the potential to make a lot of your users very uncomfortable indeed!</p>
<p>And indeed there are a few posts on blogs and question sites from users who are very scared that their computer is being infiltrated by the FBI, or a victim of spyware.</p>
<p>This strikes me as being just plain bad useability.</p>
<p>Now we&#8217;re used to this term being used to define the position of elements on a window, or the way one should build interactive elements of applications. So what is the link between this and the name of an application? Well, the first principle of useability, in a very broad sense, is that you should design with your user in mind. And HP really hasn&#8217;t followed this principle when it came to designing the user experience of restoring the computer on one&#8217;s computer.</p>
<p>In this case, while it is true that you have to be pretty paranoid (and unimaginative, it has to be said) to be made uncomfortable by having a program called &#8220;FBI Gui Manager&#8221; being in control of your PC, the name is evidently bad useability because it has made some of HP&#8217;s customers uncomfortable.</p>
<p>Moreover, there is absolutely no need for this program to have that name. What&#8217;s wrong with using the name &#8220;Installation Manager&#8221; or &#8220;HP Installation Manager&#8221;? Nothing, that&#8217;s what! It&#8217;s not difficult in any way to change the name of an installer, even in this age of Vista driver and application signing. This is not a small third-party garage software operation here, HP is a major OEM partner and I can&#8217;t imagine that they wouldn&#8217;t have a certain level of priority with Microsoft when it comes to software signing.</p>
<p>Now perhaps HP wants to use a name for this particular installer to differentiate it from older installers. There&#8217;s no reason whatsoever to do this of course, because those restore discs are supposed to be only installable on one specific model (or at least model family) of computer. The only thing a support rep should need to ask is what model the user has.</p>
<p>And frankly, there&#8217;s really no need to call the software project &#8220;File Base Installer&#8221; in the first place. This just has to be the most generic, and hence practically meaningless name I have ever seen in a software project. Apparently no one could be bothered to even remember the name of the company when it was time to give this program a name. As far as I know there is really only one installer in existence that ISN&#8217;T file-based, and that&#8217;s Java&#8217;s Web Start. All other installers get downloaded to your PC and executed from there, even if that process is somewhat obfuscated by the operating system. So as a distinguishing name for this installer application &#8212; one used by everyone who needs to reinstall the computer software using the official DVD &#8212; &#8220;File Based Installer&#8221; both fails to be useable in that it says almost nothing about the purpose of the application, and it risks making people uncomfortable because of its unfortunate initials (FBI).</p>
<p>This is not the first time that an abbreviation for the name of a piece of software causes some controversy. The most famous incident in the so-far-short history of computing was a Microsoft memory-resident that would alert you when MS had released a critical update for windows. Unwisely Microsoft decided to call it the <strong>C</strong>ritical <strong>U</strong>pdate <strong>N</strong>otification <strong>T</strong>ool. I&#8217;ll leave it as an exercise to the reader to figure out what&#8217;s wrong with this name. Now fortunately Microsoft did not name any software using the abbreviation of the name for this infamous piece of software, but enough people noticed that it became an embarassment for Redmond.</p>
<p>The lesson seems simple. Use a little common sense when you name a piece of software, and run the name by a few people. Have more eyes looking at the name and its various permutations, like abbreviations and acronyms.</p>
<p>So, in retrospect, it&#8217;s bad useability on many, many levels:</p>
<ol>
<li>Vista&#8217;s installation procedure for OEMs is really not useable. I hope they&#8217;ve improved it since the time my recovery CD was initially published.</li>
<li>When you have a program that takes over your computer for several hours, it would be a good idea to give it an interface. At the very least you want to let the user know what&#8217;s happening. It&#8217;s not difficult and it&#8217;s not resource-intensive. It&#8217;s the way almost all proper installers run.</li>
<li>The application that runs the installer shows a rather unfortunate name in the taskbar.</li>
<li>The application has the wrong name altogether, which is the cause of #2. It&#8217;s too generic and redundant to be distinctive and useful.</li>
</ol>
<p>The lesson here is that useability is a concept which really should be applied not only to the obvious parts of the computer experience, but to things like application names and the PC restoring process as well. The user doesn&#8217;t stop being a user while his computer is restoring, especially when the process lasts for several hours for some hard-to-imagine reason.</p>
<p>Edit: as it turns out the restoring process does not take quite as long as I think, although it will still take well over 1 hour. What happened is that on my initial try the restoring did not work properly, and as a result after it was done the computer went into a ridiculously long cycle of rebooting. How long? Well, I started restoring the PC at 8pm. At 1am I decided that this was just too damn long, so I shut down and started re-restoring, and by the time I saw the laptop again at 8am it had been restored properly. So, it looks like our File-Based Installer needs a little QA as well as better useability&#8230;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://clevershark.com/2007/11/this-will-cause-excitement-with-the-tin-foil-hat-crowd/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1738</post-id>	</item>
	</channel>
</rss>
