Accessing the VMware BIOS Screen at startup

It can be tough to get to the VMware BIOS screen at startup, especially for modern systems with fast processors. Before the VMware worksation/player window can grab your keyboard or mouse for you to press the F2 key, the OS is already booting up!

Fortunately, there is a configuration setting that will give you more time to enter the BIOS screen at startup. If you add the line below to your vmx file:

bios.bootDelay = "10000"

the POST screen will delay for the specified number of milliseconds. The maximum value is 10000 (i.e. 10 seconds)

If you’re still having challenges with pressing the F2 key (like i sometime do when connecting to a virtual machine running on a windows host over remote desktop), you can configure the virtual machine to boot directly into BIOS. Simply add the line below to your vmx file:

bios.forceSetupOnce = "TRUE"

Note that as this setting will be reverted to “FALSE” as soon as the virtual machine boots up and enters the BIOS screen.

I found this information on the vmware knowledge base. I also saw this article on hepdeskgeek.com which gives more detailed steps, and I saw an entry in the illustrated vmx file which looks like

bios.bootOrder = "CDROM"

I should try that out sometime, it might even save me the effort of trying to enter the BIOS to change boot orders.

Related Posts

Unresolved Assembly Reference when Merging Precompiled ASP.NET Assemblies

If you need to merge the output DLLs generated after precompiling an ASP.NET website from Visual Studio 2008 and later, you need to use the ASP.NET merge tool. The location of this tool is a bit tricky, though. The version in the default location is actually the wrong one!

Reading a Binary XML stream in WCF

If you don’t provide a dictionary to read the XML stream with, you will get a weird and unhelpful exception that says “the input source is not correctly formatted”, and googling around will only bring you to posts telling you that “your client/server endpoints are not matched” or “you need to use the basicHttpBinding”. This is not a binding issue – it’s a deserialization issue that comes up when i make an attempt to inspect the soap messages coming in to (or going out of) my WCF service.

Specifing the bridging network adapter in vmware player 4

For those of you using VMware Player 4 on linux hosts, if you’re not happy with the autobridging for the vmnet0 network, you can choose a specific…

How TestDisk and the GParted LiveCD saved my deleted partitions

I was messing around with Vmware converter (in windows XP, running from a dual-boot partition), and then I kept getting the following message: “FAILED: Unable to find…

Reset Forgotten Local Administrator Password on Windows

Where angels fear to tread, fools rush in. I happily removed my computer from the domain and restarted Windows 7. When the computer came back up, I couldn’t login with my domain user account – which was not surprising. However, I could not log in with the local admin account either! I had reset the password like 6 months ago and forgotten about it. Now I couldn’t log in to the computer, and no one could help me remotely.

ConvertEmptyStringToNull not working with ASP.NET SqlDataSource Parameters

The ConverEmptyStringToNull property of SqlDataSource Parameters does not work for asp.net 2.0 applications. You probably need this kind of setting when you have a stored procedure that…