设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 176|回复: 4
打印 上一主题 下一主题

.Net基础:使用WMI获得硬盘的信息

[复制链接]
跳转到指定楼层
1#
发表于 2009-3-16 15:47:29 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
首先,什么是WMI?
     WMI(Windows管理架构:Windows Management Instrumentation)是Microsoft基于Web的企业管理(WBEM)和 Desktop Management Task Force(DMTF)工业标准的实现. 就是一种基于标准的系统管理的开发接口,这组接口用来控制管理计算机. 它提供了一种简单的方法来管理和控制系统资源.
    如果你想深入了解他,可以参考Micorosft Platform SDK . 在这我们只是通过它实现一个简单的功能,  得到我们系统中硬盘的相关信息.
    我们需要使用.net Framwork里面System.Management名字空间下提供的类来实现.
  using System;
  using System.Management;
  using System.Collections;
  using System.Collections.Specialized;
  namespace ACE_Console
  {
       class ACE_Console
   {
          [STAThread]
          static void Main(string[] args)
           {
          StringCollection propNames = new StringCollection();
         ManagementClass driveClass = new ManagementClass("Win32_DiskDrive");
         PropertyDataCollection  props = driveClass.Properties;
          foreach (PropertyData driveProperty in props)
           {
        propNames.Add(driveProperty.Name);
                     }
      int idx = 0;
       ManagementObjectCollection drives = driveClass.GetInstances();
        foreach (ManagementObject drv in drives)
        {
        Console.WriteLine(" Drive({0}) Properties ", idx+1);

          foreach (string strProp in propNames)
          {
           Console.WriteLine("Property: {0}, Value: {1}", strProp, drv[strProp]);
                            }
                     }
              }
       }
  }
2#
发表于 2010-3-20 04:05:08 | 只看该作者
本来我决定不在社区回任何帖子了,但是看了你的帖子,我告诉自己这个帖子是一定要回的
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-19 16:44 , Processed in 0.099150 second(s), 11 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表