...
One way to find out your hard drive serial number information is if you open to open a terminal and run: sudo lsblk --raw -o name, type, serial
. Further instructions for VMWare ESXi are included below.
Solution on a VMWare ESXi Guest OS:
When VMWare ESXI creates a virtual machine hard drive, it does not always enable the setting to pass the hard drive serial number through to the guest OS. This prevents Nalpeiron from being able to identify the computer and the -3087 error code is returned.
How to check if the hard drive serial number is not available:
Linux
Open a terminal window
Run
udevadm info --query=all --name=/dev/sda | grep ID_SERIAL
If nothing is returned, then the guest OS does not have a hard drive serial number
Windows
Open a command window
Run
wmic diskdrive get SerialNumber
If the the SerialNumber is empty, the guest OS does not have a hard drive serial number
How to enable the hard drive serial number
...
:
Shutdown the guest OS (the virtual machine)
Login to the local instance of VMWare ESXi
Go to the page for the virtual machine and click 'Edit'
In the dialog that appears go to the
VM Options
tab, then expand theAdvanced
tree node and in theConfiguration Parameters
section, click theEdit Configuration ...
button.In the dialog that appears, click Add and add a parameter named
disk.EnableUUID
with a value ofTRUE
.Save the changes.
Start the guest OS/virtual machine.
Check if the hard drive serial number is now available in the guest OS
...