博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# Win OS Resource
阅读量:5102 次
发布时间:2019-06-13

本文共 1353 字,大约阅读时间需要 4 分钟。

//To get that info you must use the  WQL sentence to create a link between the ->  ->  classes.  1         static void Main(string[] args) 2         { 3             foreach (ManagementObject Memory in new ManagementObjectSearcher( 4                "select * from Win32_DeviceMemoryAddress").Get()) 5             { 6  7                 Console.WriteLine("Address=" + Memory["Name"]); 8                 // associate Memory addresses  with Pnp Devices 9                 foreach (ManagementObject Pnp in new ManagementObjectSearcher(10                     "ASSOCIATORS OF {Win32_DeviceMemoryAddress.StartingAddress='" + Memory["StartingAddress"] + "'} WHERE RESULTCLASS  = Win32_PnPEntity").Get())11                 {12                     Console.WriteLine("  Pnp Device =" + Pnp["Caption"]);13 14                     // associate Pnp Devices with IRQ15                     foreach (ManagementObject IRQ in new ManagementObjectSearcher(16                         "ASSOCIATORS OF {Win32_PnPEntity.DeviceID='" + Pnp["PNPDeviceID"] + "'} WHERE RESULTCLASS  = Win32_IRQResource").Get())17                     {18                         Console.WriteLine("    IRQ=" + IRQ["Name"]);19                     }20                 }21 22             }23             Console.ReadLine();24 25         }

 

转载于:https://www.cnblogs.com/netact/archive/2013/01/10/2855396.html

你可能感兴趣的文章
ionic2+ 基础
查看>>
[leetcode]Minimum Path Sum
查看>>
Aizu - 1378 Secret of Chocolate Poles (DP)
查看>>
csv HTTP简单表服务器
查看>>
IO流写出到本地 D盘demoIO.txt 文本中
查看>>
Screening technology proved cost effective deal
查看>>
mysql8.0.13下载与安装图文教程
查看>>
Thrift Expected protocol id ffffff82 but got 0
查看>>
【2.2】创建博客文章模型
查看>>
Kotlin动态图
查看>>
从零开始系列之vue全家桶(1)安装前期准备nodejs+cnpm+webpack+vue-cli+vue-router
查看>>
Jsp抓取页面内容
查看>>
大三上学期软件工程作业之点餐系统(网页版)的一些心得
查看>>
可选参数的函数还可以这样设计!
查看>>
[你必须知道的.NET]第二十一回:认识全面的null
查看>>
Java语言概述
查看>>
关于BOM知识的整理
查看>>
使用word发布博客
查看>>
面向对象的小demo
查看>>
微服务之初了解(一)
查看>>