tags:

views:

51

answers:

1

I need to retrieve the "Physical Device Object name" of a disk device from a user mode application on Windows. To be specific what I mean by that - this is a screenshot how you can see it through the Window Device Manager: alt text

I have a solution now that involves a kernel driver that gets loaded and interrogated through IOCTLs. Once in kernel land, I have no trouble getting to that name. If possible, I would like to avoid using a kernel module.

Any ideas?

A: 

You can get this using the Setup API functions. Specifically I believe you can get this via SetupDiGetDeviceRegistryProperty and SPDRP_PHYSICAL_DEVICE_OBJECT_NAME.

Luke
Thank you sir, you saved me a lot of reading :)
KIV