Description
These instructions will enable you to set up VMWare ESXi on your old DELL XPS Desktop using the onboard Realtek NIC card. Without customizing the iso, the ESXi installation will fail unless you have a secondary NIC that is supported. VMWare does not support Realtek NIC cards, so don’t expect support from VMWare if you use these instructions.
Creating the ISO - Step by Step
1.) Download VMware vSphere Hypervisor (ESXi) Offline Bundle and place in C:\tmp folder
The latest one available at the time of this post is for ESXi 6.5.
2.) Download the Realtek Offline Bundle here based on your NIC and place in C:\tmp folder:
For the DELL XPS desktop used in these instructions, the driver is net55-r8168. Direct download link here
3.) Run the following PowerShell commands:
Install-Package VMWare.PowerCLIIf prompted to install nuget or anything else, select Yes.
Add-EsxSoftwareDepot C:\tmp\VMWare vSphere Hypervisor (ESXi) filenameNOTE: Whatever the filename is in step 1, replace VMWare vSphere Hypervisor (ESXi) filename with it.
Add-EsxSoftwareDepot C:\tmp\Realtek Offline Bundle filenameNOTE: Whatever the file name is in step 2, replace Realtek Offline Bundle filename with it.
Note: Realtek was used for the ImageProfile name in this example
Confirm the software is in the depot
Get-EsxSoftwareDepotGet-EsxImageProfileNew-EsxImageProfile -cloneprofile ESXI...-standard -Name "Realtek"Note: Replace “ESXI…” with what was shown in the Get-EsxImageProfile command. The profile name will still have the -standard at the end of the name. Choose that one. When asked for the vendor name, you can call it anything. The vendor name can be the name of your puppy, the person you love, the person you hate… It doesn’t matter.
Set-EsxImageProfile -Name "Realtek" -AcceptanceLevel CommunitySupportedGet-EsxSoftwarePackageAdd-ESxSoftwarePackage
ImageProfile: RealtekPS C:\Windows\system32> Add-EsxSoftwarePackage
cmdlet Add-EsxSoftwarePackage at command pipeline position 1
Supply values for the following parameters:
(Type !? for Help.)
ImageProfile: Realtek
SoftwarePackage[0]: net55-r8168 8.045a-napi
SoftwarePackage[1]: ghettoVCB 1.0.0-0.0.0
SoftwarePackage[2]:Finally,
Export-EsxImageProfile -ImageProfile "Realtek" -ExportToIso -FilePath c:\tmp\Realtek.isoUse this custom .iso to install VMWare ESXI on your DELL Desktop.