While continuing my exploration trip down memory lane with early VMware Hypervisors such as VMware GSX Server, VMware Server and VMware Workstation, I came across the following error message when attempting to install these hypervisors within a Windows VM:
Sorry this product can not be installed inside of a virtual machine
I guess this would make sense given the ability to run a Hypervisor (Nested Virtualization) within a VM would not be possible for many more years later and this check seemed like a good way to prevent users from having a bad user experience, however it prevent me from continuing.
After a bit of digging and researching, I came to find that there was a workaround for this by inserting a special Windows registry key that would bypass the check. The key would be an empty REG_BINARY called InstallInVM under the path HKEY_LOCAL_MACHINE\SOFTWARE\VMware, Inc.\Misc as shown in the screenshot below.
You can also add the Windows registry key by using the following registry script:
Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\VMware, Inc.\Misc] "InstallInVM"=hex:
After adding the new registry key, you will need to reboot the system before the change goes into effect and now you can install these early VMware Hypervisors which have these pre-checks.
Thanks for the comment!