vote up 2 vote down star
2

I want to get the VB.NET or VB code to access the hard disk serial no when starting the program. It's to help me to protect my own software from people who try to pirate copies.

flag
This is a help site, not a "write my program for me" site. – Charles Duffy Nov 26 '08 at 1:41
Too harsh, Charles? I took this as asking for help in finding the OS calls to fetch this information. – Oddthinking Nov 26 '08 at 1:43

4 Answers

vote up 6 vote down

In c#, but you get the idea. You'll want to use System.Management for this:

string driveLetter = Environment.SystemDirectory.Substring(0, 2);
string sn = new System.Management.ManagementObject("Win32_LogicalDisk.DeviceID=\"" + driveLetter + "\"").GetPropertyValue("VolumeSerialNumber").ToString();

As others have pointed out, this might not be the best way to handle this. However, that's your business.

link|flag
vote up 2 vote down

This question is almost the same.

link|flag
vote up 3 vote down

I can't offer you the code, sorry, but instead I provide a warning based on my previous experience in the area.

The "Hard Disk Serial No" that was used by a number of licensing systems is actually a soft number that is written on the disk, not hardwired into the hardware.

Enterprises that used "ghosting" software to quickly churn out many desktop machines, or virtualisation software to quickly churn out many servers often had identical Hard Drive identification.

So beware if your goal is to prevent enterprises from buying one copy and using it (perhaps unintentionally) on many machines.

link|flag
vote up 2 vote down

People often need to upgrade/replace their hard disk. Better to use the serial number from the DMI.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.