0

I want to retrieve the Rollback driver node strong name device property from device manager .

Attached image for reference .

How can i do that programmatically ?

enter image jhere

Badda
  • 1,329
  • 2
  • 15
  • 40
  • done :) can u help me or suggest something – Sneh Shikhar May 24 '17 at 07:54
  • [\[MSDN\]: SetupAPI Functions](https://msdn.microsoft.com/en-us/library/windows/desktop/aa376947(v=vs.85).aspx) could be a starting point. I remember that in the past I did something similar (I'm not sure about this exact property), but I don't have the code right now. Would it make sense to take a look? Note that it might require a hybrid approach between _SetupAPI_ and reading from the driver _.inf_ file. – CristiFati May 24 '17 at 15:48
  • yes you are right , setupDi can be used but i am not able to access this particular property using that @CristiFati – Sneh Shikhar May 25 '17 at 05:07

1 Answers1

0

Windows information can be retrieve using registry or WMI. I would suggest you to retrieve driver information from registry.

HKLM\SYSTEM\DriverDatabase

Another way to read system information is using WMI.

Hope this will help.

Santosh Dhanawade
  • 1,756
  • 14
  • 29