如何獲取有關係統設備驅動程序的信息。 像Manufacturer,hardwareID,DriverAssembly Version of that device
在.NET編程如何獲取有關設備驅動器的信息
2
A
回答
2
我相信這個問題Get PC System Information on Windows Machine,特別是回答處理WMI和How To Almost Everything IN WMI - Part 3: Hardware得到你所需要的。
+0
另外System.Management答案[獲取有關計算機在域中的信息](http://stackoverflow.com/questions/971321/c-get-information- about-computer-in-domain)可能會有所幫助。 – 2012-04-23 13:40:14
0
爲了達到上述目的,C#中的ManagementObjectSearcher足夠好。您只需要使用System.Management包含
;
使用波紋管代碼 -
ManagementObjectSearcher mos =
new ManagementObjectSearcher(@"\root\cimv2", @"Select * From Win32_PnPEntity WHERE ClassGuid = '"+deviceGuid+"'");
相關問題
- 1. 如何從XAudio2獲取有關特定pnp揚聲器的驅動程序信息設備詳細信息
- 2. 如何獲取有關無線網絡設備的信息
- 3. Python獲取硬盤驅動器信息
- 4. 如何從WM_DEVICECHANGE獲取設備信息?
- 5. 獲取有關Android設備連接的計算機的信息
- 6. 獲取有關/ dev/usb/lp *設備的信息
- 7. 獲取有關USB設備(OSX,C++)的信息,IOCreatePlugInInterfaceForService失敗
- 8. 如何在我的移動設備上獲取WLAN信息?
- 9. 如何獲取USB設備的驅動器號?
- 10. 如何獲取有關Android的連接藍牙設備的信息?
- 11. 如何通過卷ID獲取驅動器信息
- 12. 如何從IBM Bluemix獲取有關Android應用程序的設備信息
- 13. 如何通過java獲取移動設備信息?
- 14. 如何從設備管理器獲取信息?
- 15. 有關設備,平臺等的信息
- 16. 如何獲取lac,cellID和所有這些設備信息?
- 17. Cocoa touch - 獲取設備信息
- 18. 通過pymodbus獲取設備信息
- 19. Ionic 2:獲取設備信息
- 20. 獲取設備信息編程在WP7
- 21. 在iOS中獲取設備信息?
- 22. 錯誤獲取設備信息OS
- 23. 從C#獲取設備信息IntPtr
- 24. 從設備路徑獲取信息
- 25. 獲取特定設備信息
- 26. 使用ionic.Platform獲取設備信息
- 27. 關於Linux設備驅動
- 28. UIProgressView如何獲取有關動畫持續時間的信息?
- 29. 如何獲取有關iOS上傳感器的信息?
- 30. 如何獲取有關最近獲取的信息?
的[Windows機器上獲取PC(系統)信息 - C#腳本]可能重複(http://stackoverflow.com/questions/4742389/get-pc-system -information-on-windows-machine -c-sharp-script) – MSalters 2012-04-23 14:27:59