Click here to Skip to main content
15,881,600 members
Articles / Programming Languages / C++
Article

Enumerate Installed Devices Using Setup API

Rate me:
Please Sign up or sign in to vote.
4.89/5 (38 votes)
16 Mar 20043 min read 328.4K   7.8K   102   72
Enumerate installed devices on a local or remote computer.

Sample Image - EnumDevices.jpg

Introduction

Windows has a rich collection of APIs to get useful information about installed devices. In this article, I will show how you can enumerate devices on a machine using Setup API.

The program has a simple GUI: only a list control that shows all of the installed devices. All the information about a device (such as name and its icon) is grabbed from Windows Setup API.

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 and also their GUID (a unique identifier for every device).

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

WINSETUPAPI BOOL WINAPI SetupDiGetClassImageList(
        OUT CLASSIMAGELIST_DATA ClassImageListData);

The SetupDiGetClassImageList function builds an image list that contains bitmaps for every installed class and returns the list in a data structure.

WINSETUPAPI BOOL WINAPI SetupDiDestroyClassImageList(
        IN PSP_CLASSIMAGELIST_DATA ClassImageListData);

The SetupDiDestroyClassImageList function destroys a class image list that was built by a call to SetupDiGetClassImageList.

WINSETUPAPI BOOL WINAPI SetupDiGetClassImageIndex(
        IN PSP_CLASSIMAGELIST_DATA ClassImageListData, 
        IN LPGUID ClassGuid, 
        OUT PINT ImageIndex);

The SetupDiGetClassImageIndex function retrieves the index within the class image list of a specified class.

CMAPI CONFIGRET WINAPI CM_Connect_Machine(
            IN PCTSTR  UNCServerName,
            OUT PHMACHINE  phMachine);

CMAPI CONFIGRET WINAPI CM_Disconnect_Machine(
            IN HMACHINE  hMachine);

The CM_Connect_Machine function creates a connection to a local or remote machine. The CM_Disconnect_Machine function removes a connection to a local or remote machine.

CMAPI CONFIGRET WINAPI CM_Locate_DevNode_Ex(
        OUT PDEVINST  pdnDevInst,
        IN DEVINSTID  pDeviceID,  OPTIONAL
        IN ULONG  ulFlags,
        IN HMACHINE  hMachine);

The CM_Locate_DevNode_Ex function obtains a device instance handle to the device node that is associated with a specified device instance identifier, on a local or a remote machine.

pDeviceID represents a device instance identifier. If this value is NULL, or if it points to a zero-length string, the function supplies a device instance handle to the device node at the top of the device tree. The PnP Manager maintains a device tree that keeps track of the devices in the system. The following figure shows the device tree for a sample system configuration. The device tree contains information about the devices present on the system. The PnP Manager builds this tree when the machine boots, using information from drivers and other components, and updates the tree as devices are added or removed. Each node of the device tree is called a device node, or devnode. A devnode consists of the device objects for the device's drivers, plus internal information maintained by the system. Therefore, there is a devnode for each device stack.

Device Tree

CMAPI CONFIGRET WINAPI CM_Get_Child_Ex(
        OUT PDEVINST  pdnDevInst,
        IN DEVINST  dnDevInst,
        IN ULONG  ulFlags,
        IN HMACHINE  hMachine);

The CM_Get_Child_Ex function is used to retrieve a device instance handle to the first child node of a specified device node, in a local or a remote machine's device tree.

CMAPI CONFIGRET WINAPI CM_Get_Sibling_Ex(
        OUT PDEVINST  pdnDevInst,
        IN DEVINST  DevInst,
        IN ULONG  ulFlags,
        IN HMACHINE  hMachine);

The CM_Get_Sibling_Ex function obtains a device instance handle to the next sibling node of a specified device node, in a local or a remote machine's device tree.

Solution

According to the above functions, we should first establish a connection to our computer (local or remote), then get the top node of the device tree (Root device). After this, we should enumerate the installed devices by a simple loop. The application uses three function: EnumDevices(), RetrieveSubNodes() and GetDeviceName(). Following is the source of them:

void EnumDevices()
{
    TCHAR LocalComputer[MAX_PATH];
    DWORD Size = MAX_PATH - 2;
    
    GetComputerName(LocalComputer + 2, &Size);
    LocalComputer[0] = _T('\\');
    LocalComputer[1] = _T('\\');
    
    CONFIGRET cr;
    cr = CM_Connect_Machine(LocalComputer, &m_hMachine);
    
    if (cr != CR_SUCCESS)
    {
        TCHAR Text[MAX_PATH];
        wsprintf(Text, _T("Machine Connection failed, cr= %lx(hex)\n"), cr);
    ::MessageBox(m_hWnd, Text, _T("Error"), MB_ICONSTOP | MB_OK);
        return;
    }    
    
    //Set Image List 
    m_ImageListData.cbSize = sizeof(m_ImageListData);
    SetupDiGetClassImageList(&m_ImageListData);

    m_ImageList.Attach(m_ImageListData.ImageList);
    m_Devices.SetImageList(&m_ImageList, LVSIL_SMALL);
    m_Devices.SetImageList(&m_ImageList, LVSIL_NORMAL);

    DEVNODE dnRoot;
    CM_Locate_DevNode_Ex(&dnRoot, NULL, 0, m_hMachine);
    
    DEVNODE dnFirst;
    CM_Get_Child_Ex(&dnFirst, dnRoot, 0, m_hMachine);    

    RetrieveSubNodes(dnRoot, NULL, dnFirst);

    CM_Disconnect_Machine(m_hMachine);
}

void RetrieveSubNodes(DEVINST parent, DEVINST sibling, DEVNODE dn)
{
    DEVNODE dnSibling, dnChild;
    
    do
    {
        CONFIGRET cr = CM_Get_Sibling_Ex(&dnSibling, dn, 0, m_hMachine);
        
        if (cr != CR_SUCCESS)
        dnSibling = NULL;
        
    TCHAR GuidString[MAX_GUID_STRING_LEN];
    ULONG Size = sizeof(GuidString);
        
    cr = CM_Get_DevNode_Registry_Property_Ex(dn, CM_DRP_CLASSGUID, NULL,
        GuidString, &Size, 0,  m_hMachine);
        
    if (cr == CR_SUCCESS)
    {
        GUID Guid;
        GuidString[MAX_GUID_STRING_LEN - 2] = _T('\0');
        UuidFromString(&GuidString[1], &Guid);
        int Index;
        if (SetupDiGetClassImageIndex(&m_ImageListData, &Guid, &Index))
        {
                CString DeviceName=GetDeviceName(dn);
        m_Devices.InsertItem(m_Devices.GetItemCount(), DeviceName, Index);
        }
    }
        
    cr = CM_Get_Child_Ex(&dnChild, dn, 0, m_hMachine);
    if (cr == CR_SUCCESS)
    {
        RetrieveSubNodes(dn, NULL, dnChild);
    }
        
    dn = dnSibling;
        
    } while (dn != NULL);
}

CString GetDeviceName(DEVNODE DevNode)
{
    CString    strType;
    CString    strValue;
    CString DisplayName;
    LPTSTR    Buffer;
    
    int  BufferSize = MAX_PATH + MAX_DEVICE_ID_LEN;
    ULONG  BufferLen = BufferSize * sizeof(TCHAR);
    
    Buffer  = strValue.GetBuffer(BufferSize);
    if (CR_SUCCESS == CM_Get_DevNode_Registry_Property_Ex(DevNode,
        CM_DRP_FRIENDLYNAME, NULL,
        Buffer, &BufferLen, 0, m_hMachine))
    {
    DisplayName = Buffer;
    }
    else
    {
    BufferLen = BufferSize * sizeof(TCHAR);
        
    if (CR_SUCCESS == CM_Get_DevNode_Registry_Property_Ex(DevNode,
        CM_DRP_DEVICEDESC, NULL,
        Buffer, &BufferLen, 0, m_hMachine))
    {
        DisplayName = Buffer;
    }
    else
    {
        DisplayName=_T("Unknown Device");
    }
    }
    
    return DisplayName;
}

m_Devices is a list control, m_ImageList is an image list of device icons and m_hMachine is a handle of the connected machine.

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


Written By
CEO Solaris Electronics LLC
United Arab Emirates United Arab Emirates
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 Acquisition 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 competition, my articles are:


You can see list of my articles, by clicking here


Comments and Discussions

 
GeneralRe: Error compiling !!! Pin
Christian Graus14-Aug-05 16:54
protectorChristian Graus14-Aug-05 16:54 
GeneralRe: Error compiling !!! Pin
Abbas_Riazi14-Aug-05 23:00
professionalAbbas_Riazi14-Aug-05 23:00 
GeneralRe: Error compiling !!! Pin
oliverfg15-Aug-05 12:37
oliverfg15-Aug-05 12:37 
GeneralRe: Error compiling !!! Pin
oliverfg15-Aug-05 12:44
oliverfg15-Aug-05 12:44 
GeneralRe: Error compiling !!! Pin
oliverfg16-Aug-05 13:21
oliverfg16-Aug-05 13:21 
GeneralRe: Error compiling !!! Pin
j.saer26-Sep-05 2:02
j.saer26-Sep-05 2:02 
AnswerRe: Error compiling !!! Pin
Dragan Knežević28-May-06 23:52
Dragan Knežević28-May-06 23:52 
GeneralRe: Error compiling !!! Pin
Rabin Lin17-Dec-06 21:48
Rabin Lin17-Dec-06 21:48 
Hi,
I have this problem, too.
Did you solve this problem ?
I don't have any idea for this problem.
I added cfgmgr32.lib into my project folder, it still have errors.
Could you please give me some hit ?

Thanks,
Rabin
GeneralRe: Error compiling !!! Pin
Dragan Knežević28-Jan-07 11:23
Dragan Knežević28-Jan-07 11:23 
GeneralRe: Error compiling !!! Pin
feeling1-Jul-06 17:02
feeling1-Jul-06 17:02 
GeneralRe: Error compiling !!! [modified] Pin
Andy Byron5-Apr-07 19:54
Andy Byron5-Apr-07 19:54 
GeneralGet username of remote computer Pin
Tailana13-Jun-05 22:05
Tailana13-Jun-05 22:05 
GeneralRe: Get username of remote computer Pin
Abbas_Riazi13-Jun-05 22:25
professionalAbbas_Riazi13-Jun-05 22:25 
GeneralRead the properties of a device that is connected through Bluetooth Serial Communications port Pin
ddas-edEn29-Apr-05 3:13
ddas-edEn29-Apr-05 3:13 
Questioncan be running on WinME and Win98? Pin
khlins20-Feb-05 14:23
khlins20-Feb-05 14:23 
GeneralNeed some information Pin
neelimakrishna21-Nov-04 18:28
neelimakrishna21-Nov-04 18:28 
GeneralRe: Need some information Pin
Abbas_Riazi22-Nov-04 5:11
professionalAbbas_Riazi22-Nov-04 5:11 
Generalplease help Pin
bondofuk10-Jun-04 18:54
bondofuk10-Jun-04 18:54 
GeneralDisable/enable device in windows 2000 and 98 using visual basic 6 Pin
bondofuk5-Jun-04 19:25
bondofuk5-Jun-04 19:25 
GeneralCompiling the code Pin
4-Jun-04 7:02
suss4-Jun-04 7:02 
GeneralRe: Compiling the code Pin
Shaharb7-Jul-04 3:40
Shaharb7-Jul-04 3:40 
GeneralDisable/Enable a device Pin
atlantix28-Mar-04 15:42
atlantix28-Mar-04 15:42 
GeneralRe: Disable/Enable a device Pin
Abbas_Riazi1-Apr-04 20:52
professionalAbbas_Riazi1-Apr-04 20:52 
GeneralRe: Disable/Enable a device Pin
atlantix4-Apr-04 13:21
atlantix4-Apr-04 13:21 
GeneralRe: Disable/Enable a device Pin
pedjas15-Nov-04 21:36
pedjas15-Nov-04 21:36 

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.