/build/static/layout/Breadcrumb_cap_w.png

Uploading inventory data for ESXi 5 machines

If you have machines that cannot run the Dell KACE Agent, you can create your own XML file and use it to upload machine inventory data to the K1000 provided that you have enabled Inventory API Access. The Administrator Guidedescribes this process, and provides a sample Perl script.

 

To upload inventory information for ESXi 5 hosts, follow these steps:

  1. Copy and paste the ESXi Shell script commands into a new .sh file.
  2. Copy the .sh file to the ESXi 5 server.
  3. Access the ESXi Shell using SSH or the console.
  4. Navigate to the directory where you copied the script.
  5. Run the script using the following command: ./<filename>.sh. After script runs, the inventory.xml file is created in same directory.
  6. Do one of the following: 
  • Upload the generated inventory.xml file to the K1000 through the WSAPI. For more information, see theAdministrator Guide.
  • In the Administrator Interface, go to Inventory > Computers, add a new item, and import the inventory.xml file for the new item.
  • Inventory can also be created periodically on a cron schedule and uploaded to K1000 through the WSAPI

 

#!/bin/sh
#
# Copyright 2012 Dell Inc. All rights reserved.
#
# Create a basic minimum inventory.xml for ESXi 5
# and later which can be uploaded to KBOX
#Define the inventory file name
out_file="inventory.xml"
echo "<?xml version=\"1.0\" encoding=\"utf-8\"?>" > $out_file
echo "<MachineStruct>" >> $out_file
echo "<NAME>"`hostname`"</NAME>" >> $out_file
echo "<CLIENT_VERSION>x.x.xxxx</CLIENT_VERSION>" >> $out_file
echo "<IP>"`esxcli network ip interface ipv4 get | grep vmk0 | awk '{print $2;}'`"</IP>" >> $out_file
echo "<MAC>xxxxxxxxxxxxxxxxxxxxxx</MAC>" >> $out_file
echo "<OS_NAME>"`uname -s` `uname -r`"</OS_NAME>" >> $out_file
echo "<OS_NUMBER>"`uname -r`"</OS_NUMBER>" >> $out_file
echo "<OS_MAJOR>"`uname -r | cut -d . -f 1`"</OS_MAJOR>" >> $out_file
echo "<OS_MINOR>"`uname -r | cut -d . -f 2`"</OS_MINOR>" >> $out_file
echo "<SERVICE_PACK></SERVICE_PACK>" >> $out_file
echo "<INSTALL_DATE></INSTALL_DATE>" >> $out_file
echo "<OS_ARCH>"`uname -m`"</OS_ARCH>" >> $out_file
echo "<OS_FAMILY>linux</OS_FAMILY>" >> $out_file
echo "<OS_VERSION>"`uname -r`"</OS_VERSION>" >> $out_file
echo "<OS_BUILD></OS_BUILD>" >> $out_file
echo "<DOMAIN>(none)</DOMAIN>" >> $out_file
echo "<CS_DOMAIN>(none)</CS_DOMAIN>" >> $out_file
printf "`date +%s` `uptime`" | awk '
{
currdate = $1;
if ($5 ~ /days/) {
uptime_day = $4*86400;
sub(/,/,"",$6);
split($6,a,":");
uptime_hms = (a[1]*60 + a[2] )*60 + a[3];
last_reboot = currdate - (uptime_day + uptime_hms);
} else {
sub(/,/,"",$4)
split($4,a,":");
uptime_hms = (a[1]*60 + a[2] )*60 + a[3];
last_reboot = currdate - uptime_hms;
}
print "<LAST_REBOOT>" strftime("%Y-%m-%d %H:%M:%S",last_reboot) "</LAST_REBOOT>";
}' >> $out_file
echo "<TZ_AGENT>GMT</TZ_AGENT>" >> $out_file
uptime | awk '
{
if ($4 ~ /days/) {
print ("<UPTIME>" $3 "," $5 "</UPTIME>");
} else {
print ("<UPTIME>" $3 "</UPTIME>");
}
}' >> $out_file
echo "<RAM_TOTAL>" `esxcli hardware memory get | grep "Physical Memory" | awk '{print ($3/(1024*1024)) "MB"}'` "</RAM_TOTAL>" >> $out_file
echo "<RAM_USED></RAM_USED>" >> $out_file
echo "<CS_MANUFACTURER>"`esxcli hardware platform get | grep Vendor | cut -d : -f 2`"</CS_MANUFACTURER>" >> $out_file
echo "<CS_MODEL>"`esxcli hardware platform get | grep Product | cut -d : -f 2`"</CS_MODEL>" >> $out_file
echo "<USER_LOGGED>root</USER_LOGGED>" >> $out_file
echo "<USER>root</USER>" >> $out_file
echo "<USER_NAME>root</USER_NAME>" >> $out_file
echo "<USER_FULLNAME></USER_FULLNAME>" >> $out_file
echo "<USER_DOMAIN>(none)</USER_DOMAIN>" >> $out_file
echo "<BIOS_NAME></BIOS_NAME>" >> $out_file
echo "<BIOS_VERSION>"`smbiosDump | grep -i -A 3 "BIOS Info" | grep Version | cut -d : -f 2 | sed s/\"//g`"</BIOS_VERSION>" >> $out_file
echo "<BIOS_MANUFACTURER>"`smbiosDump | grep -i -A 3 "BIOS Info" | grep Vendor | cut -d : -f 2 | sed s/\"//g`"</BIOS_MANUFACTURER>" >> $out_file
echo "<BIOS_DESCRIPTION></BIOS_DESCRIPTION>" >> $out_file
echo "<BIOS_SERIAL_NUMBER>"`smbiosDump | grep -i -A 5 "System Info" | grep Serial | cut -d : -f 2 | sed s/\"//g`"</BIOS_SERIAL_NUMBER>" >> $out_file
echo "<MOTHERBOARD_PRIMARY_BUS></MOTHERBOARD_PRIMARY_BUS>" >> $out_file
echo "<MOTHERBOARD_SECONDARY_BUS></MOTHERBOARD_SECONDARY_BUS>" >> $out_file
echo "<PROCESSORS>" >> $out_file
echo "CPU Core Count:" `esxcli hardware cpu global get | grep "CPU Packages" | awk '{print $3}'` >> $out_file
echo "CPU Chip Count:" `esxcli hardware cpu global get | grep "CPU Cores" | awk '{print $3}'` >> $out_file
echo "</PROCESSORS>" >> $out_file
echo "<SOUND_DEVICES>Unknown</SOUND_DEVICES>" >> $out_file
echo "<CDROM_DEVICES></CDROM_DEVICES>" >> $out_file
echo "<MONITOR></MONITOR>" >> $out_file
echo "<VIDEO_CONTROLLERS></VIDEO_CONTROLLERS>" >> $out_file
echo "<DISK_DRIVES>" >> $out_file
df -k / | awk '
{
if ($1 != "Filesystem") {
print ("<DiskDrive>");
print ("<NAME>Drive " $6 " Used: " $3/(1024*1024) " GB Total: " ($3+$4)/(1024*1024) " GB </NAME>");
print ("<DISK_SIZE>"($3+$4)/(1024*1024)"</DISK_SIZE>");
print ("<DISK_USED>"$3/(1024*1024)"</DISK_USED>");
print ("<DISK_FREE>"$4/(1024*1024)"</DISK_FREE>");
print ("<PERCENT_USED>"$5"</PERCENT_USED>");
print ("</DiskDrive>");
}
}' >> $out_file
echo "</DISK_DRIVES>" >> $out_file
echo "<NETWORK_INTERFACES>" >> $out_file
esxcli network nic list | awk '{
if ($1 !~ /Name/ && $1 !~ /---/) {
print ("<NetworkInterface>");
print ("<NIC>" $1 "</NIC>");
print ("<MAC>" $7 "</MAC>");
print ("<IP></IP>");
print ("<DHCP_ENABLED>Unknown</DHCP_ENABLED>");
print ("</NetworkInterface>");
}
}' >> $out_file
echo "</NETWORK_INTERFACES>" >> $out_file
echo "<PRINTERS></PRINTERS>" >> $out_file
echo "<STARTUP_PROGRAMS>" >> $out_file
for file in `ls /etc/init.d`; do
echo "<StartupProgram>" >> $out_file
echo "<NAME>"$file"</NAME>" >> $out_file
echo "</StartupProgram>" >> $out_file
done
echo "</STARTUP_PROGRAMS>" >> $out_file
echo "<PROCESSES>" >> $out_file
ps -C |awk '
{
if ($4 != "NAME") {
print ("<MachineProcess>");
print ("<NAME>" $4 "</NAME>");
print ("</MachineProcess>");
}
}' >> $out_file
echo "</PROCESSES>" >> $out_file
echo "<INSTALLED_SOFTWARE>" >> $out_file
esxcli software vib list | awk '
{
if ($1 !~ /Name/ && $1 !~ /---/) {
print ("<Software>");
print ("<DISPLAY_VERSION>" $2 "</DISPLAY_VERSION>");
print ("<HELP_LINK></HELP_LINK>");
print ("<README></README>");
print ("<INSTALL_DATE>" $5 "</INSTALL_DATE>");
print ("<PUBLISHER>" $3 "</PUBLISHER>");
print ("<UNINSTALL_STRING></UNINSTALL_STRING>");
print ("<URLINFO_ABOUT></URLINFO_ABOUT>");
print ("<DISPLAY_NAME>" $1 "</DISPLAY_NAME>");
print ("</Software>");
}
}' >> $out_file
echo "</INSTALLED_SOFTWARE>" >> $out_file
echo "</MachineStruct>" >> $out_file

Comments

  • Very nice article!!
    Actually your article inspired me in writting this other one http://www.itninja.com/blog/view/how-to-use-the-k1000-5-4-inventory-api-with-powershell on how to use PowerShell to interact wit the Inventory API/WSAPI.
    Regards,
    StockTrader - StockTrader 11 years ago
  • I've tried to execute this script but everytime I do I get a filename is to long error. - zizjo 11 years ago
  • Thank you for sharing this script! Works great and I am using StockTrader's PS script to upload the xml file. I would like to include information about server Manufacturer, Model, and BIOS Information in the iventory.xml. Could you possibly help me with these commands?
    Best Regards,
    Jesse - jessefrase 11 years ago
  • I have added Manufacturer, Model and BIOS Serial to the inventory script and updated the script in the blog above. Give it a try - AbhayR 11 years ago
  • Thank you for the update. In the out file the serial number field has a space which causes warranty lookup to fail.
    <BIOS_SERIAL_NUMBER> DWYXVH1</BIOS_SERIAL_NUMBER> - jessefrase 11 years ago
  • I am fairly new to this process, especially running commands on ESXi shell. I created the .sh file and uploaded it to the ESXi host using the datastore browser. I managed to navigate to the folder and find the file using the shell on the console. I had to change the permissions on the file to allow it to be executed (chmod +x filename.sh).
    Now when I try to run ./filename.sh it returns the error:
    -sh: ./filename.sh: not found
    I know it is there, when I run an ls -l in that directory I get the following:
    -rwx--x--x 1 root root 5851 Oct 23 19:55 filename.sh

    where the filename.sh is in green text.
    Thanks for having patience with a cli newbie! - cortech74 10 years ago
    • Please check if you are in the correct directory where filename.sh is present before running ./filename.sh - AbhayR 10 years ago
  • Thanks for the quick reply! Please correct me if I am wrong, but when I ran the ls -l command and it gave me the response as noted in my previous post, does that not verify the file is there? I did also just double check and the path seems correct on my shell prompt. Thanks again for the quick post. - cortech74 10 years ago
    • Yes, that means file is in the same directory. Can you do a quick check by creating another file and see if you are able to run it

      File is below
      ------------
      #!/bin/sh
      echo 1;
      ----------- - AbhayR 10 years ago
      • I tried that and did get the same not found error. I thought that maybe my sh file was incorrectly formatted so I created the file in ESXi using the touch command, then opened it in Windows using notepad++ making sure to save it in the unix format.
        When I look at the file using vi in ESXi it shows me a ^M at the end of the #!/bin/sh line which I have read elsewhere may be a problem.
        Perhaps the error is not that it cannot fine my sh file but that it cannot fine the shell interpreter. - cortech74 10 years ago
  • Open the file in VI editor and remove all the ^M characters by doing following


    Inside vi [in ESC mode] type: :%s/^M//g
    To enter ^M, type CTRL-V, then CTRL-M. That is, hold down the CTRL key then press V and M in succession. - AbhayR 10 years ago
    • Thanks, I tried that, but must have not done something right. I did end up cleaning up the file using:
      sed 's/.$//' < filename.sh > newfile.sh

      After that the script ran and created the inventory.xml. Now time to get it into Kace.

      Thanks for your help! - cortech74 10 years ago
  • When a second inventory.xml is uploaded to KACE, it supercedes the first so there is only one ESX server at a time in KACE. I attempted to run the script with different names on each ESX server and also to rename the output file before uploading, but KACE always overwrites the first one. I'm sure it is a simple workaround, but i am missing it. Anyone encounter/solve this issue already? - AHMFG 10 years ago
  • Change the ID from <MAC></MAC> tag - AbhayR 10 years ago
  • When I try to upload the inventory onto 5.5, I get an error - "Oops something went wrong" followed by Error message: PHP Error: Uncaught Error in /kbox/kboxwww/include/client_service.php on line 1365: Call to a member function getName() on a non-object - does an adjustment need to be made for 5.5? - gcoolong 9 years ago
    • This script works in 5.5. Not sure why are you getting this error. Can you paste the xml after masking the original values? - AbhayR 9 years ago
      • <?xml version="1.0" encoding="utf-8"?>
        <MachineStruct>
        <NAME>Machine01.mydomain.local</NAME>
        <CLIENT_VERSION>x.x.xxxx</CLIENT_VERSION>
        <IP>10.190.1.1</IP>
        <MAC>xxxxxxxxxxxxxxxxxxxxxx</MAC>
        <OS_NAME>VMkernel 5.1.0</OS_NAME>
        <OS_NUMBER>5.1.0</OS_NUMBER>
        <OS_MAJOR>5</OS_MAJOR>
        <OS_MINOR>1</OS_MINOR>
        <SERVICE_PACK></SERVICE_PACK>
        <INSTALL_DATE></INSTALL_DATE>
        <OS_ARCH>x86_64</OS_ARCH>
        <OS_FAMILY>linux</OS_FAMILY>
        <OS_VERSION>5.1.0</OS_VERSION>
        <OS_BUILD></OS_BUILD>
        <DOMAIN>(none)</DOMAIN>
        <CS_DOMAIN>(none)

        </CS_DOMAIN>
        <LAST_REBOOT>2014-04-05 11:50:49</LAST_REBOOT>
        <TZ_AGENT>GMT</TZ_AGENT>
        <UPTIME>16,00:06:12,</UPTIME>
        <RAM_TOTAL> 196562MB </RAM_TOTAL>
        <RAM_USED></RAM_USED>
        <CS_MANUFACTURER> Dell Inc.</CS_MANUFACTURER>
        <CS_MODEL> PowerEdge R620</CS_MODEL>
        <USER_LOGGED>root</USER_LOGGED>
        <USER>root</USER>
        <USER_NAME>root</USER_NAME>
        <USER_FULLNAME></USER_FULLNAME>
        <USER_DOMAIN>(none)</USER_DOMAIN>
        <BIOS_NAME></BIOS_NAME>
        <BIOS_VERSION> 1.3.6</BIOS_VERSION>
        <BIOS_MANUFACTURER> Dell Inc.</BIOS_MANUFACTURER>
        <BIOS_DESCRIPTION></BIOS_DESCRIPTION>
        <BIOS_SERIAL_NUMBER> C37KYV1</BIOS_SERIAL_NUMBER>
        <MOTHERBOARD_PRIMARY_BUS></MOTHERBOARD_PRIMARY_BUS>
        <MOTHERBOARD_SECONDARY_BUS></MOTHERBOARD_SECONDARY_BUS>
        <PROCESSORS>
        CPU Core Count: 2
        CPU Chip Count: 12
        </PROCESSORS>
        <SOUND_DEVICES>Unknown</SOUND_DEVICES>
        <CDROM_DEVICES></CDROM_DEVICES>
        <MONITOR></MONITOR>
        <VIDEO_CONTROLLERS></VIDEO_CONTROLLERS>
        <DISK_DRIVES>
        <DiskDrive>
        <NAME>Drive /vmfs/volumes/ISO_Images Used: 835.081 GB Total:

        2785.12 GB </NAME>
        <DISK_SIZE>2785.12</DISK_SIZE>
        <DISK_USED>835.081</DISK_USED>
        <DISK_FREE>1950.04</DISK_FREE>
        <PERCENT_USED>30%</PERCENT_USED>
        </DiskDrive>
        <DiskDrive>
        <NAME>Drive

        /vmfs/volumes/vol03 Used: 3144.36 GB Total: 3839.75 GB </NAME>
        <DISK_SIZE>3839.75</DISK_SIZE>
        <DISK_USED>3144.36</DISK_USED>
        <DISK_FREE>695.391</DISK_FREE>
        <PERCENT_USED>82%</PERCENT_USED>
        </DiskDrive>
        <DiskDrive>
        <NAME>Drive /vmfs/volumes/vol10 Used: 4001.51 GB Total: 4300.75 GB </NAME>
        <DISK_SIZE>4300.75</DISK_SIZE>
        <DISK_USED>4001.51</DISK_USED>
        <DISK_FREE>299.239</DISK_FREE>
        <PERCENT_USED>93%</PERCENT_USED>
        </DiskDrive>
        <DiskDrive>
        <NAME>Drive /vmfs/volumes/vol11 Used: 348.347 GB Total:

        1023.75 GB </NAME>
        <DISK_SIZE>1023.75</DISK_SIZE>
        <DISK_USED>348.347</DISK_USED>
        <DISK_FREE>675.403</DISK_FREE>
        <PERCENT_USED>34%</PERCENT_USED>
        </DiskDrive>
        <DiskDrive>
        <NAME>Drive

        /vmfs/volumes/vol12 Used: 1885.84 GB Total: 3071.75 GB </NAME>
        <DISK_SIZE>3071.75</DISK_SIZE>
        <DISK_USED>1885.84</DISK_USED>
        <DISK_FREE>1185.91</DISK_FREE>
        <PERCENT_USED>61%</PERCENT_USED>
        </DiskDrive>
        <DiskDrive>
        <NAME>Drive /vmfs/volumes/Vol13 Used: 115.949 GB Total: 119.75 GB </NAME>
        <DISK_SIZE>119.75</DISK_SIZE>
        <DISK_USED>115.949</DISK_USED>
        <DISK_FREE>3.80078</DISK_FREE>
        <PERCENT_USED>97%</PERCENT_USED>
        </DiskDrive>
        <DiskDrive>
        <NAME>Drive /vmfs/volumes/vol14 Used: 2239.25 GB Total:

        3061.5 GB </NAME>
        <DISK_SIZE>3061.5</DISK_SIZE>
        <DISK_USED>2239.25</DISK_USED>
        <DISK_FREE>822.25</DISK_FREE>
        <PERCENT_USED>73%</PERCENT_USED>
        </DiskDrive>
        <DiskDrive>
        <NAME>Drive

        /vmfs/volumes/vol15 Used: 247.654 GB Total: 1023.75 GB </NAME>
        <DISK_SIZE>1023.75</DISK_SIZE>
        <DISK_USED>247.654</DISK_USED>
        <DISK_FREE>776.096</DISK_FREE>
        <PERCENT_USED>24%</PERCENT_USED>
        </DiskDrive>
        <DiskDrive>
        <NAME>Drive /vmfs/volumes/vol16 Used: 270.672 GB Total: 399.75 GB </NAME>
        <DISK_SIZE>399.75</DISK_SIZE>
        <DISK_USED>270.672</DISK_USED>
        <DISK_FREE>129.078</DISK_FREE>
        <PERCENT_USED>68%</PERCENT_USED>
        </DiskDrive>
        <DiskDrive>
        <NAME>Drive /vmfs/volumes/vol17 Used: 588.392 GB Total:

        1023.75 GB </NAME>
        <DISK_SIZE>1023.75</DISK_SIZE>
        <DISK_USED>588.392</DISK_USED>
        <DISK_FREE>435.358</DISK_FREE>
        <PERCENT_USED>57%</PERCENT_USED>
        </DiskDrive>
        <DiskDrive>
        <NAME>Drive

        /vmfs/volumes/vol18 Used: 2738.62 GB Total: 3071.75 GB </NAME>
        <DISK_SIZE>3071.75</DISK_SIZE>
        <DISK_USED>2738.62</DISK_USED>
        <DISK_FREE>333.133</DISK_FREE>
        <PERCENT_USED>89%</PERCENT_USED>
        </DiskDrive>
        <DiskDrive>
        <NAME>Drive /vmfs/volumes/vol19 Used: 1196.58 GB Total: 1535.75 GB </NAME>
        <DISK_SIZE>1535.75</DISK_SIZE>
        <DISK_USED>1196.58</DISK_USED>
        <DISK_FREE>339.165</DISK_FREE>
        <PERCENT_USED>78%</PERCENT_USED>
        </DiskDrive>
        <DiskDrive>
        <NAME>Drive /vmfs/volumes/vol20 Used: 460.874 GB Total:

        1023.75 GB </NAME>
        <DISK_SIZE>1023.75</DISK_SIZE>
        <DISK_USED>460.874</DISK_USED>
        <DISK_FREE>562.876</DISK_FREE>
        <PERCENT_USED>45%</PERCENT_USED>
        </DiskDrive>
        <DiskDrive>
        <NAME>Drive

        /vmfs/volumes/vol21 Used: 321.206 GB Total: 1023.75 GB </NAME>
        <DISK_SIZE>1023.75</DISK_SIZE>
        <DISK_USED>321.206</DISK_USED>
        <DISK_FREE>702.544</DISK_FREE>
        <PERCENT_USED>31%</PERCENT_USED>
        </DiskDrive>
        <DiskDrive>
        <NAME>Drive /vmfs/volumes/e5cb46e6-8c1eba28-2ac5-d164053e400f Used: 0.127331 GB Total: 0.24387 GB </NAME>
        <DISK_SIZE>0.24387</DISK_SIZE>
        <DISK_USED>0.127331</DISK_USED>
        <DISK_FREE>0.116539</DISK_FREE>
        <PERCENT_USED>52%</PERCENT_USED>
        </DiskDrive>
        <DiskDrive>
        <NAME>Drive

        /vmfs/volumes/e568ffef-c414c240-6512-59ed7e7705a6 Used: 0.128384 GB Total: 0.24387 GB </NAME>
        <DISK_SIZE>0.24387</DISK_SIZE>
        <DISK_USED>0.128384</DISK_USED>
        <DISK_FREE>0.115486</DISK_FREE>
        <PERCENT_USED>53%</PERCENT_USED>
        </DiskDrive>
        <DiskDrive>
        <NAME>Drive /vmfs/volumes/52164a3e-ed45aeae-fc59-90b11c1d4ebc Used: 0.203354 GB Total:

        0.279129 GB </NAME>
        <DISK_SIZE>0.279129</DISK_SIZE>
        <DISK_USED>0.203354</DISK_USED>
        <DISK_FREE>0.0757751</DISK_FREE>
        <PERCENT_USED>73%</PERCENT_USED>
        </DiskDrive>
        </DISK_DRIVES>
        <NETWORK_INTERFACES>
        <NetworkInterface>
        <NIC>vmnic0</NIC>
        <MAC>MASK</MAC>
        <IP></IP>
        <DHCP_ENABLED>Unknown</DHCP_ENABLED>
        </NetworkInterface>
        <NetworkInterface>
        <NIC>vmnic1</NIC>
        <MAC>MASK</MAC>
        <IP></IP>
        <DHCP_ENABLED>Unknown</DHCP_ENABLED>
        </NetworkInterface>
        <NetworkInterface>
        <NIC>vmnic10</NIC>
        <MAC>MASK</MAC>
        <IP></IP>
        <DHCP_ENABLED>Unknown</DHCP_ENABLED>
        </NetworkInterface>
        <NetworkInterface>
        <NIC>vmnic11</NIC>
        <MAC>MASK</MAC>
        <IP></IP>
        <DHCP_ENABLED>Unknown</DHCP_ENABLED>
        </NetworkInterface>
        <NetworkInterface>
        <NIC>vmnic12</NIC>
        <MAC>MASK</MAC>
        <IP></IP>
        <DHCP_ENABLED>Unknown</DHCP_ENABLED>
        </NetworkInterface>
        <NetworkInterface>
        <NIC>vmnic13</NIC>
        <MAC>MASK</MAC>
        <IP></IP>
        <DHCP_ENABLED>Unknown</DHCP_ENABLED>
        </NetworkInterface>
        <NetworkInterface>
        <NIC>vmnic14</NIC>
        <MAC>MASK</MAC>
        <IP></IP>
        <DHCP_ENABLED>Unknown</DHCP_ENABLED>
        </NetworkInterface>
        <NetworkInterface>
        <NIC>vmnic15</NIC>
        <MAC>MASK</MAC>
        <IP></IP>
        <DHCP_ENABLED>Unknown</DHCP_ENABLED>
        </NetworkInterface>
        <NetworkInterface>
        <NIC>vmnic2</NIC>
        <MAC>MASK</MAC>
        <IP></IP>
        <DHCP_ENABLED>Unknown</DHCP_ENABLED>
        </NetworkInterface>
        <NetworkInterface>
        <NIC>vmnic3</NIC>
        <MAC>MASK</MAC>
        <IP></IP>
        <DHCP_ENABLED>Unknown</DHCP_ENABLED>
        </NetworkInterface>
        <NetworkInterface>
        <NIC>vmnic4</NIC>
        <MAC>MASK</MAC>
        <IP></IP>
        <DHCP_ENABLED>Unknown</DHCP_ENABLED>
        </NetworkInterface>
        <NetworkInterface>
        <NIC>vmnic5</NIC>
        <MAC>MASK</MAC>
        <IP></IP>
        <DHCP_ENABLED>Unknown</DHCP_ENABLED>
        </NetworkInterface>
        <NetworkInterface>
        <NIC>vmnic6</NIC>
        <MAC>MASK</MAC>
        <IP></IP>
        <DHCP_ENABLED>Unknown</DHCP_ENABLED>
        </NetworkInterface>
        <NetworkInterface>
        <NIC>vmnic7</NIC>
        <MAC>MASK</MAC>
        <IP></IP>
        <DHCP_ENABLED>Unknown</DHCP_ENABLED>
        </NetworkInterface>
        <NetworkInterface>
        <NIC>vmnic8</NIC>
        <MAC>MASK</MAC>
        <IP></IP>
        <DHCP_ENABLED>Unknown</DHCP_ENABLED>
        </NetworkInterface>
        <NetworkInterface>
        <NIC>vmnic9</NIC>
        <MAC>MASK</MAC>
        <IP></IP>
        <DHCP_ENABLED>Unknown</DHCP_ENABLED>
        </NetworkInterface>
        </NETWORK_INTERFACES>
        <PRINTERS></PRINTERS>
        <STARTUP_PROGRAMS>
        <StartupProgram>
        <NAME>DCUI</NAME>
        </StartupProgram>
        <StartupProgram>
        <NAME>ESXShell</NAME>
        </StartupProgram>
        <StartupProgram>
        <NAME>SSH</NAME>
        </StartupProgram>
        <StartupProgram>
        <NAME>cdp</NAME>
        </StartupProgram>
        <StartupProgram>
        <NAME>dcbd</NAME>
        </StartupProgram>
        <StartupProgram>
        <NAME>hostd</NAME>
        </StartupProgram>
        <StartupProgram>
        <NAME>iked</NAME>
        </StartupProgram>
        <StartupProgram>
        <NAME>lacp</NAME>
        </StartupProgram>
        <StartupProgram>
        <NAME>lbtd</NAME>
        </StartupProgram>
        <StartupProgram>
        <NAME>lsassd</NAME>
        </StartupProgram>
        <StartupProgram>
        <NAME>lwiod</NAME>
        </StartupProgram>
        <StartupProgram>
        <NAME>memscrubd</NAME>
        </StartupProgram>
        <StartupProgram>
        <NAME>netlogond</NAME>
        </StartupProgram>
        <StartupProgram>
        <NAME>ntpd</NAME>
        </StartupProgram>
        <StartupProgram>
        <NAME>rhttpproxy</NAME>
        </StartupProgram>
        <StartupProgram>
        <NAME>sensord</NAME>
        </StartupProgram>
        <StartupProgram>
        <NAME>sfcbd</NAME>
        </StartupProgram>
        <StartupProgram>
        <NAME>sfcbd-

        watchdog</NAME>
        </StartupProgram>
        <StartupProgram>
        <NAME>slpd</NAME>
        </StartupProgram>
        <StartupProgram>
        <NAME>smartd</NAME>
        </StartupProgram>
        <StartupProgram>
        <NAME>snmpd</NAME>
        </StartupProgram>
        <StartupProgram>
        <NAME>storageRM</NAME>
        </StartupProgram>
        <StartupProgram>
        <NAME>usbarbitrator</NAME>
        </StartupProgram>
        <StartupProgram>
        <NAME>vmamqpd</NAME>
        </StartupProgram>
        <StartupProgram>
        <NAME>vobd</NAME>
        </StartupProgram>
        <StartupProgram>
        <NAME>vprobed</NAME>
        </StartupProgram>
        <StartupProgram>
        <NAME>vpxa</NAME>
        </StartupProgram>
        <StartupProgram>
        <NAME>wsman</NAME>
        </StartupProgram>
        <StartupProgram>
        <NAME>xorg</NAME>
        </StartupProgram>
        </STARTUP_PROGRAMS>
        <PROCESSES>
        <MachineProcess>
        <NAME>Name</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME></NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>awk</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>ps</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/sbin/sfcbd</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/bin/sh</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>sleep</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>-sh</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>sshd</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/sbin/sfcbd</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/sbin/sfcbd</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/sbin/sfcbd</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/sbin/sfcbd</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/sbin/sfcbd</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/sbin/dcui</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/bin/sh</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/sbin/sfcbd</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/sbin/sfcbd</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/sbin/sfcbd</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/sbin/sfcbd</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/bin/cimslp</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/sbin/openwsmand</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/bin/sh</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/bin/sh</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/usr/libexec/hostd/nssquery</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/usr/libexec/hostd/nssquery</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/usr/lib/vmware/vpxa/bin/vpxa</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/bin/sh</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/usr/sbin/net-cdp</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/bin/sh</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/usr/sbin/dcbd</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/bin/sh</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/usr/sbin/smartd</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/bin/sh</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/sbin/slpd</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/usr/lib/vmware/bin/sensord</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/bin/sh</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/sbin/storageRM</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/bin/sh</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/sbin/net-lbt</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/bin/sh</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>rhttpproxy</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/bin/sh</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>hostd</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/bin/sh</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/usr/lib/vmware/bin/vmware-usbarbitrator</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/bin/sh</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/sbin/ntpd</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/bin/sh</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/usr/sbin/vmkdevmgr</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/usr/sbin/vmkiscsid</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/usr/lib/vmware/busybox/bin/busybox</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/usr/sbin/net-lacp</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/bin/sh</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/usr/lib/vmware/busybox/bin/busybox</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/usr/lib/vmware/bin/vmkeventd</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/usr/lib/vmware/vob/bin/vobd</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/bin/sh</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/bin/python</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/bin/python</NAME>
        </MachineProcess>
        <MachineProcess>
        <NAME>/sbin/init</NAME>
        </MachineProcess>
        </PROCESSES>
        <INSTALLED_SOFTWARE>
        <Software>
        <DISPLAY_VERSION>0.3.10-3vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>ata-pata-amd</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>0.4.6-

        4vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>ata-pata-atiixp</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>0.2.5-

        3vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>ata-pata-cmd64x</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>0.3.4-

        3vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>ata-pata-hpt3x2n</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>1.0-

        3vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>ata-pata-pdc2027x</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>0.4.3-

        3vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>ata-pata-serverworks</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>0.4.8-

        3vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>ata-pata-sil680</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>0.3.3-

        2vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>ata-pata-via</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>3.6.14-

        10vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>block-cciss</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>1.0-

        3vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>ehci-ehci-hcd</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>5.1.0-

        2.23.1483097</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2014-03-31</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>esx-base</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>5.1.0-

        0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>esx-dvfilter-generic-fastpath</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>5.1.0-2.23.1483097</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2014-03-31</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>esx-tboot</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>5.1.0-1.22.1472666</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2014-03-31</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>esx-

        xlibs</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>5.1.0-1.22.1472666</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2014-03-31</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>esx-xserver</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>2.01.31-1vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>ima-qla4xxx</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>39.1-

        4vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>ipmi-ipmi-devintf</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>39.1-

        4vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>ipmi-ipmi-msghandler</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>39.1-

        4vmw.510.1.12.1065491</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>ipmi-ipmi-si-drv</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>1.1-

        1vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>misc-cnic-register</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>5.1.0-

        2.23.1483097</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2014-03-31</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>misc-drivers</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>4.1.255.11-

        1vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>net-be2net</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>2.0.15g.v50.11-

        7vmw.510.1.12.1065491</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>net-bnx2</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>1.61.15.v50.3-

        1vmw.510.0.11.1063671</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>net-bnx2x</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>1.10.2j.v50.7-

        3vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>net-cnic</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>8.0.3.1-

        2vmw.510.1.16.1157734</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2014-03-31</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>net-e1000</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>1.1.2-

        3vmw.510.2.23.1483097</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2014-03-31</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>net-e1000e</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>1.4.2.15a-

        1vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>net-enic</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>0.61-

        2vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>net-forcedeth</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>2.1.11.1-

        3vmw.510.1.12.1065491</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>net-igb</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>3.7.13.6iov-

        10vmw.510.1.20.1312873</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2014-03-31</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>net-ixgbe</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>4.0.558-

        3vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>net-nx-nic</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>8.013.00-

        3vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>net-r8168</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>6.011.00-

        2vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>net-r8169</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>2.1.4.13427-

        3vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>net-s2io</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>1.20-

        2vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>net-sky2</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>3.123b.v50.1-

        1vmw.510.2.23.1483097</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2014-03-31</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>net-tg3</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>1.1.3.0-

        3vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>net-vmxnet3</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>1.0-

        3vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>ohci-usb-ohci</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>3.0-

        15vmw.510.2.23.1483097</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2014-03-31</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>sata-ahci</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>2.12-

        7vmw.510.2.23.1483097</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2014-03-31</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>sata-ata-piix</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>3.5-

        4vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>sata-sata-nv</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>2.12-

        3vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>sata-sata-promise</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>1.1-

        1vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>sata-sata-sil24</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>2.3-

        4vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>sata-sata-sil</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>2.3-

        3vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>sata-sata-svw</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>1.1.5.1-

        9vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>scsi-aacraid</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>1.0.8.12-

        6vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>scsi-adp94xx</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>3.1-

        5vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>scsi-aic79xx</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>1.9.1d.v50.1-

        5vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>scsi-bnx2i</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>1.5.0.3-

        1vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>scsi-fnic</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>5.0.0-

        21vmw.510.1.16.1157734</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2014-03-31</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>scsi-hpsa</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>7.12.05-

        4vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>scsi-ips</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>8.2.3.1-

        127vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>scsi-lpfc820</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>2.20.5.1-

        6vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>scsi-megaraid-mbox</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>5.34-

        4vmw.510.1.12.1065491</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>scsi-megaraid-sas</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>2.00.4-

        9vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>scsi-megaraid2</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>10.00.00.00-

        5vmw.510.2.23.1483097</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2014-03-31</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>scsi-mpt2sas</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>4.23.01.00-

        6vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>scsi-mptsas</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>4.23.01.00-

        6vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>scsi-mptspi</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>902.k1.1-

        9vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>scsi-qla2xxx</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>5.01.03.2-

        4vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>scsi-qla4xxx</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>2.0.2.0088-

        1vmw.510.2.23.1483097</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2014-03-31</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>scsi-rste</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>1.0-

        3vmw.510.0.0.799733</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2013-08-22</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>uhci-usb-uhci</DISPLAY_NAME>
        </Software>
        <Software>
        <DISPLAY_VERSION>5.1.0-

        2.23.1483097</DISPLAY_VERSION>
        <HELP_LINK></HELP_LINK>
        <README></README>
        <INSTALL_DATE>2014-03-31</INSTALL_DATE>
        <PUBLISHER>VMware</PUBLISHER>
        <UNINSTALL_STRING></UNINSTALL_STRING>
        <URLINFO_ABOUT></URLINFO_ABOUT>
        <DISPLAY_NAME>tools-light</DISPLAY_NAME>
        </Software>
        </INSTALLED_SOFTWARE>
        </MachineStruct> - See more at:

        http://www.itninja.com/blog/view/uploading-inventory-data-for-esxi-5-machines#sthash.upCNtmk9.dpu - gcoolong 9 years ago
  • I was able to successfully import this xml from the server console (Inventory->Computers) page on a 5.5 server. How are you uploading this xml? - AbhayR 9 years ago
  • Anyone know if this works with ESXi 5.5 and KACE 6.2? I could just try I'm sure, but I also don't want to screw up my KACE VM somehow. - it_matt 9 years ago
This post is locked
 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ