Click here to Skip to main content
6,630,586 members and growing! (17,331 online)
Email Password   helpLost your password?
Languages » C++ / CLI » General     Intermediate License: The Code Project Open License (CPOL)

Get Physical HDD Serial Number without WMI

By dmihailescu

Retrieve the physical Hard drive ID and other info using low level APIs like DeviceIOControl
C++ (VC8.0), C++/CLI, C# 2.0, Windows, .NET (.NET 2.0)VS2005, Dev
Version:2 (See All)
Posted:29 Dec 2006
Updated:6 May 2008
Views:151,645
Bookmarked:87 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
21 votes for this article.
Popularity: 5.86 Rating: 4.43 out of 5
2 votes, 9.5%
1
1 vote, 4.8%
2

3
1 vote, 4.8%
4
17 votes, 81.0%
5

Sample Image - DriveInfo.png

Introduction

Many people looking for a schema to protect their work need to get some information that is hardware specific like the Mac Address or some hard drive serial number.

Background

If you tried other solutions like like this one, it probably did not work for you because it's using the WMI services. I was able to find a solution that worked reasonably well here. It made low level calls to the disk using commands sent by the DeviceIoControl API. The code was not very reusable unless you used native C++. Therefore I brushed it a bit and made it look more Object Oriented. Most importantly, I exposed the drive information through a .NET collection.

Using the Code

Since the collection is written in MC++, I've included some Microsoft DLLs from the redistributable pack in the demo zip. Also it's mandatory to use .NET 2.0 since the collection is generic.

The code is very easy to use from any .NET language, like C# for instance:

 m_list = new DriveListEx();
 m_list.Load();
 //bind to a a grid view
 m_dataGridView.DataSource = m_list;

Points of Interest

The information about the internal drives is gathered in DiskInfo::LoadDiskInfo();

DiskInfo is a native singleton class that wraps the calls to ReadPhysicalDriveInNTWithAdminRights() and ReadIdeDriveAsScsiDriveInNT(). I ignored the ReadPhysicalDriveInNTWithZeroRights() that did not seem to work anyways.

Both functions will call AddIfNew() if they can retrieve the information.

Internally there is a list that holds the raw information about the drives and that is updated when a new drive information was found.

BOOL DiskInfo::AddIfNew(USHORT *pIdSector)
{
  BOOL bAdd = TRUE;
  for(UINT i =0; i< m_list.size();i++)
  {
    if(memcmp(pIdSector,m_list[i],256 * sizeof(WORD)) == 0)
    {
       bAdd = false;
       break;
    }
  }
   if(bAdd)
   {
      WORD* diskdata = new WORD[256];
      ::memcpy(diskdata,pIdSector,256*sizeof(WORD));
      m_list.push_back(diskdata);
   }
  return bAdd;
}

If you are stuck with a non .NET compiler, you could still use the source code from UnmanagedCode.cpp, just uncomment the #define NATIVE_CODE line.
This build is for Windows XP 32 bit systems. If you need it for Vista or 64 bit systems, you should select the right include and lib folders when building and should not use the additional DLLs from the release.zip archive, since they are 32 bit for Windows XP.

History

  • Version 1.1: Added ReadPhysicalDriveInNTUsingSmart for reading the HDD info.
    P.S. I did not get a chance to test it for Windows 95 and alike.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

dmihailescu


Member
Decebal Mihailescu is a software engineer with interest in .Net, C# and C++.
Occupation: Web Developer
Location: United States United States

Other popular C++ / CLI articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 121 (Total in Forum: 121) (Refresh)FirstPrevNext
QuestionGreate Pinmemberkhaniya suni2:44 18 Nov '09  
AnswerRe: Greate Pinmemberdmihailescu13:52 18 Nov '09  
QuestionHDD manufacturer serial no without admin rights for web applications? Pinmemberchristopherangler0:17 9 Oct '09  
QuestionDriveInfoEx.dll supports Windows Server 2008? Pinmemberchristopherangler18:14 7 Oct '09  
AnswerRe: DriveInfoEx.dll supports Windows Server 2008? Pinmemberdmihailescu13:42 8 Oct '09  
QuestionDriveInfoEx.dll supports Microsoft Win 64 bit machines? Pinmemberchristopherangler18:13 7 Oct '09  
AnswerRe: DriveInfoEx.dll supports Microsoft Win 64 bit machines? Pinmemberdmihailescu13:44 8 Oct '09  
QuestionRe: DriveInfoEx.dll supports Microsoft Win 64 bit machines? Pinmemberrazvar3:10 15 Oct '09  
AnswerRe: DriveInfoEx.dll supports Microsoft Win 64 bit machines? Pinmemberdmihailescu13:52 15 Oct '09  
GeneralRe: DriveInfoEx.dll supports Microsoft Win 64 bit machines? Pinmemberrazvar22:04 15 Oct '09  
QuestionInterface types compatibility with DriveInfoEx.dll Pinmemberchristopherangler18:09 7 Oct '09  
AnswerRe: Interface types compatibility with DriveInfoEx.dll Pinmemberdmihailescu13:45 8 Oct '09  
QuestionHard Disk Manufacturers compatibilty Pinmemberchristopherangler18:05 7 Oct '09  
AnswerRe: Hard Disk Manufacturers compatibilty Pinmemberdmihailescu13:48 8 Oct '09  
QuestionAdministrator rights for IIS in windows server 2003 & vista business edition Pinmemberchristopherangler1:38 6 Oct '09  
GeneralSame for VS2008... Pinmembersoftwaretry1:42 22 Sep '09  
GeneralRequires Visual C++ 2008 runtimes PinmemberPeter Souza4:26 1 Sep '09  
GeneralRe: Requires Visual C++ 2008 runtimes Pinmemberdmihailescu14:18 1 Sep '09  
GeneralGreat work, thanks! PinmemberPeter Souza9:47 26 Aug '09  
Generalerror loading driveinfoex.dll Pinmembermano_meee23:58 17 Aug '09  
GeneralRe: error loading driveinfoex.dll Pinmemberdmihailescu14:55 18 Aug '09  
GeneralRe: error loading driveinfoex.dll PinmemberPeter Souza4:59 1 Sep '09  
Generalit worked on vista for me. PinmemberWendel Renner5:01 18 Jun '09  
Questionvista problem PinmemberMember 148265322:10 29 May '09  
AnswerRe: vista problem Pinmemberrazvar3:08 15 Oct '09  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 6 May 2008
Editor: Deeksha Shenoy
Copyright 2006 by dmihailescu
Everything else Copyright © CodeProject, 1999-2009
Web17 | Advertise on the Code Project