How to get software & hardware information from windows (like dxdiag)?

前端 未结 3 379
后悔当初
后悔当初 2021-01-15 16:04

I need to get hardware and software information of Windows like the information we got from dxdiag

  • Computer module : TOSHIBA l775
  • Processor
  • 相关标签:
    3条回答
    • 2021-01-15 16:49

      Just want to add a little bit to the answer by las. What you want you use is something called Windows Management Instrumentation. Full details of the implementation is located here.

      Basically WMI is an SQL like query language that allows you to query various aspects of the computers infrastructure. The link provided by las appears to provide a decent example.

      Here is a link to a sample bit of code that allows you to browse through all the schemas provided in WMI.

      0 讨论(0)
    • 2021-01-15 16:49

      It is simple, you can easily get such information from the registry, or using the System.Management library. It depends greatly on what information you are willing to get. I made a detailed post which explains how you can accomplish this Here it is

      0 讨论(0)
    • 2021-01-15 17:08

      I think this will help you more,I dont want to explain Try this http://www.codeproject.com/Articles/17973/How-To-Get-Hardware-Information-CPU-ID-MainBoard-I

      0 讨论(0)
    提交回复
    热议问题