前段时间配置的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
参考原文链接:ESXI7.0封装最新版英特尔I225/I219网卡驱动 (sqmn666.com)
标签:封装,ESXI,网卡,7.0,ESXi,驱动 From: https://www.cnblogs.com/Eleanoreblog/p/17016464.html