vmware, how to Custom ESXi ISO with Image Builder PowerCLI Cmdlets

vmware, how to Custom ESXi ISO with Image Builder PowerCLI Cmdlets
integrate network drive to ESXI iso

6. Add a package by name to an image profile: PowerCLI C:\Program Files (x86)\VMware\Infrastructure\vSphere PowerCLI> Add-EsxSoftwarePackage -ImageProfile “My custom profile” -SoftwarePackage “vib.*”

Set-EsxImageProfile -Name string -AcceptanceLevel level=CommunitySupported

imageprofile set –level=CommunitySupported

———————————————————————————–
1. get-esximageprofile
2. Add-EsxSoftwareDepot -DepotUrl C:\*.zip
3. Get-EsxImageProfile
4. New-EsxImageProfile -CloneProfile “ESX-5.0-234567-standard” \
-Name “My custom profile” -AcceptanceLevel CommunitySupported

exaple:
New-EsxImageProfile -CloneProfile “ESXi-6.5.0-20170104001-standard” \ -Name “esxi65RealtekA” -AcceptanceLevel CommunitySupported

5. Get-esximageprofile
check if the new imageprofile created?
6. get-esxsoftwarepackage
7. Add-EsxSoftwareDepot -DepotUrl c:\*.zip
8. get-esxsoftwarepackage
find the depot just added, you will need this depot name for next command line
9. Add-EsxSoftwarePackage -ImageProfile “custom profile name” -SoftwarePackage “the depot name you just added”
10. Export-EsxImageProfile -ImageProfile YourCustomProfileName -FilePath c:\customprofileName.iso -ExportToIso

You may also like...