Click here to Skip to main content
15,883,883 members
Articles / Programming Languages / C

Device Property Sheet Dialog

Rate me:
Please Sign up or sign in to vote.
4.82/5 (23 votes)
12 Aug 2004CPOL3 min read 134K   1.5K   33   33
Showing property sheet dialog of a specific device.

Sample Image - DevicePropertySheet.jpg

Introduction

In my last article (Enumerate Properties of an Installed Device), I used Setup APIs to enumerate all of the properties of an installed device. But these properties are common for all devices and there were no specific properties that differ with other devices' properties. For example, a sound card has some properties that are different with properties of a network adapter.

Also, during these months, several developers asked me for device specific properties and how can one change them programmatically. I searched over the net but I could not find any related article. Now, this article is my effort to solving the problem.

Reverse Engineering The Device Manager

The first step is searching the MSDN. I searched the MSDN to find any API related to Device Manager; for example, an API that gets some information about a device (e.g., DevNode, Device GUID or etc.) and shows a dialog (may be Device Property Sheet) of properties. But there is no such API. At least, I can't find any, if anyone knows such an API, I would be glad to be informed.

The second step is to study more about the Device Manager. The Device Manager is a DLL (DevMgr.dll) that is used in MMC as a snap-in. Figure 2 shows it:

Device Manager

I used PE File Explorer (a free utility with source code) for exploring PE (Portable Executable) files like *.exe, *.dll, *.ocx, and etc.

With this utility, I found exported functions. That made an idea for me. How can other programs call these exported (and also undocumented) functions to show device property sheets?

Figure 3 shows PEFileExplorer that opens DevMgr.dll.

Sample screenshot

A big step was done with PEFileExplorer. Now I know which functions are exported by the DLL, and this makes me to search about exported functions.

From MSDN, I found that Rundll.exe and Rundll32.exe allow to invoke a function exported from a DLL. However, Rundll and Rundll32 programs do not allow you to call any exported function from any DLL. For example, you can not use these utility programs to call the Win32 API (Application Programming Interface) calls exported from the system DLLs. The programs only allow you to call functions from a DLL that are explicitly written to be called by them.

The command line for Rundll32.exe is as follows:

Rundll32.exe <name of dll> 
       <entry point function> <arguments>

With a deep look on the list of exported functions, everyone can understand that the entry point of DevMgr.dll is DeviceProperties_RunDLLA (ANSI version) and DeviceProperties_RunDLLW (UNICODE version). As Microsoft Knowledge Base Article - 164787 suggests, Rundll32.exe can handle the entry point function without using A or W. In other words, we are required to call the entry point as follows:

Rundll32.exe devmgr.dll DeviceProperties_RunDLL /DeviceID 
                                            root\system\0000

The above syntax means Rundll32.exe should call DeviceProperties_RunDll (as an entry point of DevMgr.dll) and pass /DeviceID root\system\0000 as argument of the function.

Solution

In the previous article, I showed you how we can obtain DeviceID of an installed device. Then by calling Rundll32.exe with proper arguments, the property sheet of an installed device will appear.

The following code shows an example:

void CDevicePropertySheetDialogDlg::OnDeviceProperty() 
{
    DEVNODE dn;
    
    for (int i=0; i<m_Devices.GetItemCount(); i++)
    {
        if (m_Devices.GetItemState(i, LVIS_SELECTED)) //item was selected
        {
            dn=(DEVNODE) m_Devices.GetItemData(i);
            break;
        }
    }
    
    CString CommandLine;

    //Enumerate properties
    for (int j=0; j<DeviceProperty.size(); j++)
    {
        if (DeviceProperty[j].dn==dn)
        {
            CommandLine.Format(_T("DevMgr.dll 
                  DeviceProperties_RunDLL /DeviceID \"%s\""),
                  DeviceProperty[j].Properties[ID_DEVICEID].PropertyValue);
            break;
        }
    }
    
    ShellExecute(m_hWnd, _T("open"), _T("Rundll32.exe"), 
                                CommandLine, NULL, SW_SHOW);
}

I assume that all of the devices listed in a list view control (m_Devices) and properties of the device (including DeviceID) are saved in DevicePropert vector.

Alternative Way

An alternative way is to load DevMgr.dll dynamically with LoadLibrary API. Here is the changed code to load the device property sheet with LoadLibrary API:

void CDevicePropertySheetDialogDlg::OnDeviceProperty() 
{
    DEVNODE dn;

    for (int i=0; i<m_Devices.GetItemCount(); i++)
    {
        if (m_Devices.GetItemState(i, LVIS_SELECTED)) //item was selected
        {
            //AfxMessageBox(m_Devices.GetItemText(i, 0));
            dn=(DEVNODE) m_Devices.GetItemData(i);
            break;
        }
    }

    CString CommandLine;

    //Enumerate properties
    for (int j=0; j<DeviceProperty.size(); j++)
    {
        if (DeviceProperty[j].dn==dn)
        {
            CommandLine.Format(_T("/MachineName \"\" /DeviceID %s"),
                        DeviceProperty[j].Properties[ID_DEVICEID].PropertyValue);

            break;
        }
    }

    PDEVICEPROPERTIES pDeviceProperties;
    HINSTANCE hInst=AfxGetInstanceHandle();
    HINSTANCE  hDevMgr = LoadLibrary(_TEXT("devmgr.dll"));
    if (hDevMgr) 
    {
        pDeviceProperties = (PDEVICEPROPERTIES) GetProcAddress((HMODULE) hDevMgr, 
            DeviceProperties_RunDLL);
    }

    if (pDeviceProperties)
    {
        pDeviceProperties(m_hWnd, hInst, CommandLine.GetBuffer(0), SW_SHOW);
    }

}

It should be noticed that DeviceProperties_RunDLL is defined as below:

#ifdef _UNICODE 
#define DeviceProperties_RunDLL  "DeviceProperties_RunDLLW"
typedef void (_stdcall *PDEVICEPROPERTIES)(
                   HWND hwndStub,
                   HINSTANCE hAppInstance,
                   LPWSTR lpCmdLine,
                   int    nCmdShow
                   );

#else
#define DeviceProperties_RunDLL  "DeviceProperties_RunDLLA"
typedef void (_stdcall *PDEVICEPROPERTIES)(
                   HWND hwndStub,
                   HINSTANCE hAppInstance,
                   LPSTR lpCmdLine,
                   int    nCmdShow
                   );
#endif

Thanks to Martin Rubas for his comment.

Enjoy!

License

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


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

 
Generalit is still working Pin
Southmountain29-Feb-20 15:13
Southmountain29-Feb-20 15:13 
GeneralMy vote of 5 Pin
Amir Mohammad Nasrollahi9-Aug-13 20:32
professionalAmir Mohammad Nasrollahi9-Aug-13 20:32 
GeneralMy vote of 5 Pin
Manoj Kumar Choubey26-Feb-12 19:56
professionalManoj Kumar Choubey26-Feb-12 19:56 
GeneralAdd an extra device property tab into device Properties Pin
User 60869398-Jul-09 10:57
User 60869398-Jul-09 10:57 
GeneralMoshkel dar tashkhiseh Cart Seda (Sound Cards) Pin
Kourosh Nosrati4-Jan-07 7:27
professionalKourosh Nosrati4-Jan-07 7:27 
QuestionUninstall device from the Device Manager Pin
araravikar27-Apr-06 9:32
araravikar27-Apr-06 9:32 
AnswerRe: Uninstall device from the Device Manager Pin
Abbas_Riazi28-Apr-06 0:59
professionalAbbas_Riazi28-Apr-06 0:59 
GeneralRe: Uninstall device from the Device Manager Pin
araravikar28-Apr-06 11:46
araravikar28-Apr-06 11:46 
AnswerRe: Uninstall device from the Device Manager Pin
Abbas_Riazi28-Apr-06 14:48
professionalAbbas_Riazi28-Apr-06 14:48 
QuestionHow to open COM Port Advanced Settings Pin
quantum197615-Feb-06 19:32
quantum197615-Feb-06 19:32 
GeneralRetrieve USB Info Pin
LiYS28-Oct-05 6:18
LiYS28-Oct-05 6:18 
Hey Riazi
Greet article again!
Can I call One of the exported funtion in devmgr.dll
through which I can get the USB drive's Vender IDentifier(I do it this way because I want to make it both workable on Win98 and Windows NT). In addition, Can I receive something from
calling the devmgr.dll's function? Like a string represents USB VID it returns.



GeneralRe: Retrieve USB Info Pin
Abbas_Riazi28-Oct-05 21:23
professionalAbbas_Riazi28-Oct-05 21:23 
GeneralRe: Retrieve USB Info Pin
LiYS29-Oct-05 5:10
LiYS29-Oct-05 5:10 
GeneralRe: Retrieve USB Info Pin
Abbas_Riazi30-Oct-05 2:18
professionalAbbas_Riazi30-Oct-05 2:18 
GeneralRe: Retrieve USB Info Pin
LiYS30-Oct-05 14:48
LiYS30-Oct-05 14:48 
GeneralCapture device signal detection Pin
tony070731-Aug-05 10:48
tony070731-Aug-05 10:48 
GeneralEnable / Disable network card device Pin
nikouhl31-May-05 5:20
nikouhl31-May-05 5:20 
GeneralExported Functions... Pin
daDude26-Oct-04 22:28
daDude26-Oct-04 22:28 
GeneralRe: Exported Functions... Pin
Abbas_Riazi27-Oct-04 0:11
professionalAbbas_Riazi27-Oct-04 0:11 
GeneralNice work, but look at MS KB 815320 Pin
Martin Rubas8-Aug-04 22:40
Martin Rubas8-Aug-04 22:40 
GeneralDLL Application Pin
Ernest Laurentin2-Aug-04 5:45
Ernest Laurentin2-Aug-04 5:45 
GeneralRe: DLL Application Pin
Abbas_Riazi2-Aug-04 7:17
professionalAbbas_Riazi2-Aug-04 7:17 
GeneralRe: DLL Application Pin
Ernest Laurentin2-Aug-04 13:46
Ernest Laurentin2-Aug-04 13:46 
GeneralGood Pin
NormDroid1-Aug-04 21:17
professionalNormDroid1-Aug-04 21:17 
GeneralRe: Good Pin
Abbas_Riazi1-Aug-04 21:57
professionalAbbas_Riazi1-Aug-04 21:57 

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.