正在阅读:.Net基础:使用WMI获得硬盘的信息.Net基础:使用WMI获得硬盘的信息

2004-02-14 09:34 出处:CSDN 作者:acewang 责任编辑:linjixiong

  首先,什么是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);
                     }

察看评论详细内容 我要发表评论
作者笔名简短内容 发表时间
:

键盘也能翻页,试试“← →”键

关注我们

最新资讯离线随时看 聊天吐槽赢奖品