Click here to Skip to main content
Click here to Skip to main content

Enumerate Properties of an Installed Device

By , 26 Apr 2004
 

Sample Image - EnumDeviceProperties.jpg

Introduction

In the previous article, I showed you how you can enumerate installed devices. In this article, we want to enumerate properties of an installed device. For this purpose, we use Setup API. You must have the latest platform SDK and also DDK to compile the demo application.

Setup API

The Setup application programming interface (API) provides a set of functions that your setup application can call to perform installation operations or get several information about installed devices, their class, properties and also their GUID (a unique identifier for every device).

The application requires the following APIs (description of these APIs was taken from MSDN):

CMAPI CONFIGRET WINAPI CM_Get_Device_ID_Ex(DEVINST  dnDevInst, PTCHAR Buffer, 
    ULONG BufferLen, ULONG ulFlags, HMACHINE Machine);

The CM_Get_Device_ID_Ex function retrieves the device instance ID for a specified device instance, on a local or remote machine.

CMAPI CONFIGRET WINAPI CM_Get_DevNode_Status_Ex(PULONG  pulStatus, 
    PULONG  pulProblemNumber, DEVINST  dnDevInst, 
    ULONG  ulFlags, HMACHINE hMachine);

The CM_Get_DevNode_Status_Ex function obtains the status of a device instance from its device node, on a local or a remote machine's device tree.

DWORD CM_Get_DevNode_Registry_Property_Ex(DEVINST dnDevInst, ULONG ulProperty, 
    PULONG pulRegDataType, PVOID Buffer, PULONG pulLength, 
    LONG ulFlags, HMACHINE hMachine);

The CM_Get_DevNode_Registry_Property_Ex function retrieves a specified device property from the registry.

Solution

Enumerating properties of an installed device is done by only two functions. The first one specifies the property and then calls the second function. The second function calls CM_Get_DevNode_Registry_Property_Ex function to retrieve property from registry and format it in a good manner.

Here are the two functions:

void EnumDeviceProperties(DEVNODE dn)
{
    int BufferSize = MAX_PATH + MAX_DEVICE_ID_LEN;
    TCHAR Buffer[MAX_PATH + MAX_DEVICE_ID_LEN];
    CString Temp;
    
    DeviceProperties Properties[26]=
    {
        ID_DEVICEID,            _T("Device ID: "), _T(""),
        ID_STATUS,              _T("Status: "), _T(""),
        ID_PROBLEM,             _T("Problem: "), _T(""),
        ID_SERVICE,             _T("Service: "), _T(""),
        ...
    };

    if (CM_Get_Device_ID_Ex(dn, Buffer, BufferSize, 0, m_hMachine) 
            == CR_SUCCESS)
    {
        Temp=Buffer;
    }
    else
    {
        Temp=_T("Fail to retrieve Device ID");
    }

    ULONG Status, Problem;

    if (CM_Get_DevNode_Status_Ex(&Status, &Problem, dn, 0, m_hMachine) 
            == CR_SUCCESS)
    {
        Temp.Format(_T("0x%08x"), Status);
        Temp.Format(_T("0x%08x"), Problem);
    }
    else
    {
        Temp=_T("Fail to retrieve Device Status/Problem");
    }


    Temp=GetProperty(dn, CM_DRP_SERVICE);
    
    Temp=GetProperty(dn, CM_DRP_CAPABILITIES);
    
    ...
}


CString GetProperty(DEVNODE dn, ULONG Property)
{
    CString Temp;
    
    TCHAR Buffer[REGSTR_VAL_MAX_HCID_LEN]=_T("");    
    ULONG Type;
    ULONG Size = sizeof(Buffer);
    
    if (CM_Get_DevNode_Registry_Property_Ex(dn, Property,
                        &Type,
                        Buffer,
                        &Size,
                        0, m_hMachine) == CR_SUCCESS)
    {
        if (Type == REG_DWORD || 
            Type == REG_MULTI_SZ || 
            Type == REG_SZ )
        {
            if (Type == REG_DWORD)
            {
                DWORD Data = *((DWORD*)Buffer);
                wsprintf(Buffer, _T("0x%08x"), *((DWORD*) Buffer) );
            }
            else if (Type == REG_MULTI_SZ)
            {
                LPTSTR p = Buffer;
                while (_T('\0') != *p)
                {
                    p += lstrlen(p);
                    if (_T('\0') != *p)
                    *p++ = _T(',');
                }
            }
        }
    }

    Temp=Buffer;
    return Temp;
}

Enjoy!

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

A. Riazi
Iran (Islamic Republic Of) Iran (Islamic Republic Of)
Member
I was born in Shiraz, a very beautiful famous city in Iran. I started programming when I was 12 years old with GWBASIC. Since now, I worked with various programming languages from Basic, Foxpro, C/C++, Visual Basic, Pascal to MATLAB and now Visual C++.
I graduated from Iran University of Science & Technology in Communication Eng., and now work as a system programmer for a telecommunication industry.
I wrote several programs and drivers for Synthesizers, Power Amplifiers, GPIB, GPS devices, Radio cards, Data Acqusition cards and so many related devices.
I'm author of several books like Learning C (primary and advanced), Learning Visual Basic, API application for VB, Teach Yourself Object Oriented Programming (OOP) and etc.
I'm winner of January, May, August 2003 and April 2005 best article of month competetion, my articles are:

You can see list of my articles, by clicking here


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionGooooood~!membersaneh8 Oct '12 - 20:07 
GeneralMy vote of 5membermanoj kumar choubey26 Feb '12 - 19:55 
GeneralGet the USB Device IDmemberbigfatcow1330 Jul '08 - 20:13 
Generalget a drive letter from Physical device name (USB)memberranu_hai5 Nov '07 - 0:55 
Questionreleased .exememberMember #383967427 Feb '07 - 15:19 
AnswerRe: released .exememberA. Riazi28 Feb '07 - 21:56 
GeneralRe: released .exememberlistyanto1 Mar '07 - 11:24 
GeneralFirmware revision numbermemberGreatestMaverick22 Apr '06 - 22:32 
AnswerRe: Firmware revision numbermemberA. Riazi23 Apr '06 - 3:00 
QuestionWin9xmemberMorteza Ghasemi22 Apr '06 - 20:45 
AnswerRe: Win9xmemberhojjat_rele22 Apr '06 - 20:48 
AnswerRe: Win9xmemberA. Riazi23 Apr '06 - 3:08 
GeneralDrivers's physical pathmembermacbub15 Sep '05 - 3:48 
AnswerRe: Drivers's physical pathmemberA. Riazi15 Sep '05 - 22:13 
GeneralRemove DevicememberPeter Prescher4 Sep '05 - 17:29 
AnswerRe: Remove DevicememberA. Riazi5 Sep '05 - 18:51 
GeneralRead properties of a device that is connected through Bluetooth Serial Communications portmemberddas7729 Apr '05 - 3:03 
GeneralRe: Read properties of a device that is connected through Bluetooth Serial Communications portmemberA. Riazi29 Apr '05 - 3:25 
AnswerRe: Read properties of a device that is connected through Bluetooth Serial Communications portmemberddas779 Nov '06 - 5:07 
GeneralVB examplesussadifwww21 Feb '05 - 10:06 
GeneralRe: VB example [modified]membertitusbest8 Aug '06 - 3:05 
GeneralRe: VB examplememberDavid Carta16 Jul '07 - 13:08 
GeneralRe: VB examplememberMichaelino14 Sep '07 - 6:18 
Questionexcellent article- how to get drive letter for USB device?membersubash110711 Oct '04 - 5:13 
AnswerRe: excellent article- how to get drive letter for USB device?memberA. Riazi11 Oct '04 - 7:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 27 Apr 2004
Article Copyright 2004 by A. Riazi
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid