c#與WMI提示集第1/2頁

來源:互聯網
上載者:User

1、 什麼是WMI
WMI是英文Windows Management Instrumentation的簡寫,它的功能主要是:訪問本地主機的一些資訊和服務,可以管理遠端電腦(當然你必須要擁有足夠的許可權),比如:重啟,關機,關閉進程,建立進程等。
2、 如何用WMI獲得本地磁碟的資訊?
首先要在VS.NET中建立一個項目,然後在添加引用中引用一個.net的裝配件:System.Management.dll,這樣你的項目才能使用WMI。代碼如下:
using System;
using System.Management;

class Sample_ManagementObject
{
public static int Main(string[] args)
{
SelectQuery query=new SelectQuery("Select * From Win32_LogicalDisk");
ManagementObjectSearcher searcher=new ManagementObjectSearcher(query);
foreach(ManagementBaseObject disk in searcher.Get())
{
Console.WriteLine("\r\n"+disk["Name"] +" "+disk["DriveType"] + " " + disk["VolumeName"]);
}

Console.ReadLine();

return 0;

}

}

disk["DriveType"] 的傳回值意義如下:

1 No type
2 Floppy disk
3 Hard disk
4 Removable drive or network drive
5 CD-ROM
6 RAM disk

3、如何用WMI獲得指定磁碟的容量?
using System;
using System.Management;

// This example demonstrates reading a property of a ManagementObject.
class Sample_ManagementObject
{
public static int Main(string[] args)
{
ManagementObject disk = new ManagementObject(
"win32_logicaldisk.deviceid=\"c:\"");
disk.Get();
Console.WriteLine("Logical Disk Size = " + disk["Size"] + " bytes");
Console.ReadLine();
return 0;
}
}

4、 如何列出機器中所有的共用資源?
using System;
using System.Management;

class TestApp {
[STAThread]
static void Main()
{
ManagementObjectSearcher searcher = new ManagementObjectSearcher(
"SELECT * FROM Win32_share");
foreach (ManagementObject share in searcher.Get())
{
Console.WriteLine(share.GetText(TextFormat.Mof));
}
}

}
別忘記在引用中把System.Management添加進來。

5、 怎樣寫程式控制制讓系統中的某個檔案夾共用或不共用.?
首先,這需要以有相應許可權的使用者登入系統才行。然後,試試下面的代碼:
using System;
using System.Management;

class CreateShare
{
public static void Main(string[] args)
{
ManagementClass _class = new ManagementClass(new ManagementPath("Win32_Share"));

object[] obj = {"C:\\Temp","我的共用",0,10,"Dot Net 實現的共用",""};

_class.InvokeMethod("create",obj);
}
}

object[] obj = {"C:\\Temp","我的共用",0,10,"Dot Net 實現的共用",""};
改為
object[] obj = {"C:\\Temp","我的共用",0,null,"Dot Net 實現的共用",""};
就可以實現授權給最多使用者了。

6、 如何獲得系統服務的運行狀態?
private void getServices()
{
ManagementObjectCollection queryCollection;
string[] lvData = new string[4];

try
{
queryCollection = getServiceCollection("SELECT * FROM Win32_Service");
foreach ( ManagementObject mo in queryCollection)
{
//create child node for operating system
lvData[0] = mo["Name"].ToString();
lvData[1] = mo["StartMode"].ToString();
if (mo["Started"].Equals(true))
lvData[2] = "Started";
else
lvData[2] = "Stop";
lvData[3] = mo["StartName"].ToString();

//create list item
ListViewItem lvItem = new ListViewItem(lvData,0);
listViewServices.Items.Add(lvItem);
}
}
catch (Exception e)
{
MessageBox.Show("Error: " + e);
}
}

7、 通過WMI修改IP,而實現不用重新啟動?
using System;
using System.Management;
using System.Threading;

namespace WmiIpChanger
{
class IpChanger
{
[MTAThread]
static void Main(string[] args)
{
ReportIP();
// SwitchToDHCP();
SwitchToStatic();
Thread.Sleep( 5000 );
ReportIP();
Console.WriteLine( "end." );
}

static void SwitchToDHCP()
{
ManagementBaseObject inPar = null;
ManagementBaseObject outPar = null;
ManagementClass mc = new ManagementClass("Win32_NetworkAdapterConfiguration");
ManagementObjectCollection moc = mc.GetInstances();
foreach( ManagementObject mo in moc )
{
if( ! (bool) mo["IPEnabled"] )
continue;

inPar = mo.GetMethodParameters("EnableDHCP");
outPar = mo.InvokeMethod( "EnableDHCP", inPar, null );
break;
}
}

static void SwitchToStatic()
{
ManagementBaseObject inPar = null;
ManagementBaseObject outPar = null;
ManagementClass mc = new ManagementClass("Win32_NetworkAdapterConfiguration");
ManagementObjectCollection moc = mc.GetInstances();
foreach( ManagementObject mo in moc )
{
if( ! (bool) mo[ "IPEnabled" ] )
continue;

inPar = mo.GetMethodParameters( "EnableStatic" );
inPar["IPAddress"] = new string[] { "192.168.1.1" };
inPar["SubnetMask"] = new string[] { "255.255.255.0" };
outPar = mo.InvokeMethod( "EnableStatic", inPar, null );
break;
}
}

static void ReportIP()
{
Console.WriteLine( "****** Current IP addresses:" );
ManagementClass mc = new ManagementClass("Win32_NetworkAdapterConfiguration");
ManagementObjectCollection moc = mc.GetInstances();
foreach( ManagementObject mo in moc )
{
if( ! (bool) mo[ "IPEnabled" ] )
continue;

Console.WriteLine( "{0}\n SVC: '{1}' MAC: [{2}]", (string) mo["Caption"],
(string) mo["ServiceName"], (string) mo["MACAddress"] );

string[] addresses = (string[]) mo[ "IPAddress" ];
string[] subnets = (string[]) mo[ "IPSubnet" ];

Console.WriteLine( " Addresses :" );
foreach(string sad in addresses)
Console.WriteLine( "\t'{0}'", sad );

Console.WriteLine( " Subnets :" );
foreach(string sub in subnets )
Console.WriteLine( "\t'{0}'", sub );
}
}
}
}

8、 如何利用WMI遠程重啟遠端電腦?
using System;
using System.Management;
namespace WMI3
{
/// <summary>
/// Summary description for Class1.
/// </summary>
class Class1
{
static void Main(string[] args)
{
Console.WriteLine("Computer details retrieved using Windows Management Instrumentation (WMI)");
Console.WriteLine("mailto:Written%2002/01/02%20By%20John%20O'Donnell%20-%20csharpconsulting@hotmail.com");
Console.WriteLine("========================================
=================================");
//串連遠端電腦
ConnectionOptions co = new ConnectionOptions();
co.Username = "john";
co.Password = "john";
System.Management.ManagementScope ms = new System.Management.ManagementScope("\\\\192.168.1.2\\root\\cimv2", co);
//查詢遠端電腦
System.Management.ObjectQuery oq = new System.Management.ObjectQuery("SELECT * FROM Win32_OperatingSystem");

ManagementObjectSearcher query1 = new ManagementObjectSearcher(ms,oq);
ManagementObjectCollection queryCollection1 = query1.Get();
foreach( ManagementObject mo in queryCollection1 )
{
string[] ss={""};
mo.InvokeMethod("Reboot",ss);
Console.WriteLine(mo.ToString());
}
}
}
}

9、 利用WMI建立一個新的進程?
using System;
using System.Management;

// This sample demonstrates invoking a WMI method using parameter objects
public class InvokeMethod
{
public static void Main()
{

//Get the object on which the method will be invoked
ManagementClass processClass = new ManagementClass("Win32_Process");

//Get an input parameters object for this method
ManagementBaseObject inParams = processClass.GetMethodParameters("Create");

//Fill in input parameter values
inParams["CommandLine"] = "calc.exe";

//Execute the method
ManagementBaseObject outParams = processClass.InvokeMethod ("Create", inParams, null);

//Display results
//Note: The return code of the method is provided in the "returnvalue" property of the outParams object
Console.WriteLine("Creation of calculator process returned: " + outParams["returnvalue"]);
Console.WriteLine("Process ID: " + outParams["processId"]);
}
}

10、 如何通過WMI終止一個進程?
using System;
using System.Management;

// This example demonstrates how to stop a system service.
class Sample_InvokeMethodOptions
{
public static int Main(string[] args) {
ManagementObject service =
new ManagementObject("win32_service=\"winmgmt\"");
InvokeMethodOptions options = new InvokeMethodOptions();
options.Timeout = new TimeSpan(0,0,0,5);

ManagementBaseObject outParams = service.InvokeMethod("StopService", null, options);

Console.WriteLine("Return Status = " + outParams["Returnvalue"]);

return 0;
}
}

11、 如何用WMI 來擷取遠程機器的目錄以及檔案.比如如何列出一個目錄下的所有檔案,或者所有子目錄;如何刪除,舔加,變更檔?
using System;

using System.Management;

// This example demonstrates reading a property of a ManagementObject.

class Sample_ManagementObject

{

public static int Main(string[] args) {

ManagementObject disk = new ManagementObject(

"win32_logicaldisk.deviceid=\"c:\"");

disk.Get();

Console.WriteLine("Logical Disk Size = " + disk["Size"] + " bytes");

return 0;

}

}

13、 一些技巧
我使用WMI可以取出網卡的MAC地址,CPU的系列號,主板的系列號,其中主板的系列號已經核對過沒有錯的,其餘的有待於驗證,因為我使用的是筆記本,筆記本背面有一個主板的系列號,所以可以肯定主板系列號沒有問題

網卡的MAC地址

SELECT MACAddress FROM Win32_NetworkAdapter WHERE ((MACAddress Is Not NULL) AND (Manufacturer <> 'Microsoft'))

結果:08:00:46:63:FF:8C

CPU的系列號

Select ProcessorId From Win32_Processor

結果:3FEBF9FF00000F24

主板的系列號

Select SerialNumber From Win32_BIOS

結果:28362630-3700521
擷取硬碟ID
String HDid;
ManagementClass cimobject = new ManagementClass("Win32_DiskDrive");
ManagementObjectCollection moc = cimobject.GetInstances();
foreach(ManagementObject mo in moc)
{
HDid = (string)mo.Properties["Model"].value;

MessageBox.Show(HDid );
}

14、 一個使用WMI後的異常處理的問題
下面是我整理的一段代碼.

ManagementObjectCollection queryCollection1;
ConnectionOptions co = new ConnectionOptions();
co.Username = "administrator";
co.Password = "111";
try
{
System.Management.ManagementScope ms = new System.Management.ManagementScope(@"\\csnt3\root\cimv2", co);
System.Management.ObjectQuery oq = new System.Management.ObjectQuery("SELECT * FROM Win32_OperatingSystem");
ManagementObjectSearcher query1 = new ManagementObjectSearcher(ms,oq);

queryCollection1 = query1.Get();
foreach( ManagementObject mo in queryCollection1 )
{
string[] ss={""};
mo.InvokeMethod("Reboot",ss);
Console.WriteLine(mo.ToString());
}
}
catch(Exception ee)
{

Console.WriteLine("error");

}

15、Windows 管理規範 (WMI) 是可伸縮的系統管理結構,它採用一個統一的、基於標準的、可擴充的物件導向介面。WMI 為您提供與系統管理資訊和基礎 WMI API 互動的標準方法。WMI 主要由系統管理應用程式開發人員和管理員用來訪問和作業系統管理資訊。
WMI 可用於產生組織和管理系統資訊的工具,使管理員或系統管理人員能夠更密切地監視系統活動。例如,可以使用 WMI 開發一個應用程式,用於在 Web 服務器崩潰時呼叫管理員。
將 WMI 與 .NET 架構一起使用
WMI 提供了大量的規範以便為許多高端應用程式(例如,Microsoft Exchange、Microsoft SQL Server 和 Microsoft Internet 資訊服務 (IIS))實現幾乎任何管理工作。管理員可以執行下列任務:
? 監視應用程式的健全狀態。
? 檢測瓶頸或故障。
? 管理和配置應用程式。
? 查詢應用程式資料(使用對象關係的遍曆和查詢)。
? 執行無縫的本地或遠端管理操作。
WMI 結構由以下三層組成:
? 用戶端
使用 WMI 執行操作(例如,讀取管理詳細資料、配置系統和預訂事件)的軟體組件。
? 對象管理器
提供者與用戶端之間的中間裝置,它提供一些關鍵服務,如標準事件發布和預訂、事件篩選、查詢引擎等。
? 提供者
軟體組件,它們捕獲即時資料並將其返回到用戶端應用程式,處理來自用戶端的方法調用並將用戶端連結到所管理的基礎結構。
通過定義完善的架構向用戶端和應用程式無縫地提供了資料和事件以及配置系統的能力。在 .NET 架構中,System.Management 命名空間提供了用於遍曆 WMI 架構的公用類。
除了 .NET 架構,還需要在電腦上安裝 WMI 才能使用該命名空間中的管理功能。如果使用的是 Windows Millennium Edition、Windows 2000 或 Windows XP,那麼已經安裝了 WMI。否則,將需要從 MSDN 下載 WMI。
用 System.Management 訪問管理資訊
System.Management 命名空間是 .NET 架構中的 WMI 命名空間。此命名空間包括下列支援 WMI 操作的第一級類對象:
? ManagementObject 或 ManagementClass:分別為單個管理對象或類。
? ManagementObjectSearcher:用於根據指定的查詢或枚舉檢索 ManagementObject 或 ManagementClass 對象的集合。
? ManagementEventWatcher:用於預訂來自 WMI 的事件通知。
? ManagementQuery:用作所有查詢類的基礎。
System.Management 類的使用編碼範例對 .NET 架構環境很適合,並且 WMI 在任何適當的時候均使用標準基架構。例如,WMI 廣泛利用 .NET 集合類並使用推薦的編碼模式,如 .NET 非同步作業的“委託”模式。因此,使用 .NET 架構的開發人員可以使用他們的當前技能訪問有關電腦或應用程式的管理資訊。
請參見
使用 WMI 管理應用程式 | 檢索管理對象的集合 | 查詢管理資訊 | 預訂和使用管理事件 | 執行管理對象的方法 | 遠端和串連選項 | 使用強型別對象

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.