前段時間配置的All In One 主機,由於華擎H410M-ITX/AC主板的板載網卡為intel I219-V,在安裝ESXI后網卡無法驅動。查詢之后發現原來ESXI7.0.2的版本不含該網卡驅動,因此需要自行將網卡驅動封裝到ESXI的安裝鏡像中。
1.Windows 安裝VMware.PowerCLI
打開電腦上的Windows PowerShell,輸入以下安裝命令
Install-Module -Name VMware.PowerCLI
2.信任模塊
運行以下命令,輸入Y確認
set-ExecutionPolicy RemoteSigned
3.下載ESXI官方離線包和網卡驅動離線包
4.封裝驅動
$esxiOfflineBundle = "D:\esxi\VMware-ESXi-7.0U3c-19193900-depot.zip"
$intelNicOfflineBundle = "D:\esxi\Intel-NUC-ne1000_0.8.4-3vmw.670.0.0.8169922-offline_bundle-16654787.zip"
$esxiImageProfileName = "ESXi-7.0U3c-19193900-standard"
$newImageProfileName = "ESXi-7.0U3c-19193900-Intel-i219_i225"
Add-EsxSoftwareDepot $esxiOfflineBundle
Add-EsxSoftwareDepot $intelNicOfflineBundle
New-EsxImageProfile -CloneProfile $esxiImageProfileName -Name $newImageProfileName -Vendor ashin
Add-EsxSoftwarePackage -ImageProfile $newImageProfileName -SoftwarePackage "net-community"
Export-EsxImageProfile -ImageProfile $newImageProfileName -ExportToIso -FilePath "D:\esxi\ESXi-7.0U3c-19193900-Intel-i219_i225.ISO"
將上述文件路徑替換成文件真實路徑,運行成功之后會生成新的ISO文件。
后記
網卡驅動可直接在文中下載鏈接下載,如需封裝完成的ESXI 7.0.2 ISO文件,可以點擊這里或者前往以下鏈接下載。
https://download.csdn.net/download/qq_30428293/85032223