Hi Try Below option
1.
if you have Host Details on the vm properties you can get form below command
vmtoolsd.exe --cmd "info-get guestinfo.hypervisor.hostname
Else add the entry and try # from its advance properties
guestinfo.hypervisor.hostname = esxi hostname
vmtoolsd.exe "info-get guestinfo.hypervisor.hostname
Path of the VMtools
UNIX/Linux - /usr/bin/vmtoolsd
Windows - C:\Program Files\VMware\VMware Tools\vmtoolsd.exe
2.
Try from POwer CLI to get all ESXI host infomration using below script
Connect-VIServer $vCenter
$vmhosts = get-vmhost *
$vmhosts | Sort Name -Descending | % { $server = $_ |get-view; `
$server.Config.Product | select `
@{ Name = "Server Name"; Expression ={ $server.Name }}, `
Name, Version, Build, FullName, ApiVersion }
3.
Connect ESXi through Putty and use below command
vmware -vvv
Or Download RVtools and access vcenter get the complete information