Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 1.72 KB

Build ESXI image with Realtek Driver.md

File metadata and controls

43 lines (30 loc) · 1.72 KB

Build ESXI image with Realtek 8168/8111/8411/8118 Driver

Required tools

Build iso

Downloads> .\ESXi-Customizer-PS.ps1 -v67 -ozip
  • v67 flag gets us version 6.7
  • ozip flag gets us an offline bundle rather than the ISO.
Add-EsxSoftwareDepot ".\net55-r8168-8.045a-napi-offline_bundle.zip", "ESXi-6.7.0-20210304001-standard.zip" 

Get-EsxImageProfile
New-EsxImageProfile -CloneProfile ESXi-6.7.0-20210304001-standard  -name ESXi-6.7.0-20210304001-standard-RTL8111 -Vendor Razz
Set-EsxImageProfile ESXi-6.7.0-20210304001-standard-RTL8111 -AcceptanceLevel CommunitySupported

Get-EsxSoftwarePackage
Add-EsxSoftwarePackage -ImageProfile ESXi-6.7.0-20210304001-standard-RTL8111 -SoftwarePackage net55-r8168

Export-EsxImageProfile -ImageProfile ESXi-6.7.0-20210304001-standard-RTL8111 -ExportToIso -filepath .\VMware-ESXi-6.7.0-20210304001-RTL8111.iso

Use rufus to prepare a bootable USB stick and install ESXI.

Sources