How to find Serial Number from Vmware Vsphere Esxi Host

Enable SSH on the ESXi Machine and run the following

esxcfg-info | grep "Serial N"

If this doesnt work then you can use something like this in powershell however it needs Vcenter and Vsphere CLI

Get-VMHost | Select Name,
@{N=’Serial’;E={(Get-EsxCli -VMHost $_).hardware.platform.get().SerialNumber}} |
Export-Csv serial.csv -NoTypeInformation -UseCulture
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading...