c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html

c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html(转)c#与WMI使用技巧集1、什么是WMI WMI是英文WindowsManagementInstrumentation的简写,它的功能主要是:访问本地主机的一些信息和服务,可以管理远程计算机(当然你必须要拥有足够的权限),比如:重启,关机,关闭进程,创建进程等。 2、如何用WMI获得本地磁盘的信息? 首先要在VS.NET中创建一个项目,然后在添加引用中引用一个.

(转)c#与WMI使用技巧集

1、 什么是WMI 
WMI是英文Windows Management Instrumentation的简写,它的功能主要是:访问本地主机的一些信息和服务,可以管理远程计算机(当然你必须要拥有足够的权限),比如:重启,关机,关闭进程,创建进程等。 
2、 如何用WMI获得本地磁盘的信息? 
首先要在VS.NET中创建一个项目,然后在添加引用中引用一个.net的装配件:System.Management.dll,这样你的项目才能使用WMI。代码如下:

复制代码

 1
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
using
 System; 

 2
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
using
 System.Management; 

 3
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html

 4
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
class
 Sample_ManagementObject 

 5
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html

 6c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlpublic static int Main(string[] args) 
 7c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
 8c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlSelectQuery query=new SelectQuery(Select * From Win32_LogicalDisk); 
 9c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlManagementObjectSearcher searcher=new ManagementObjectSearcher(query); 
10c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlforeach(ManagementBaseObject disk in searcher.Get()) 
11c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
12c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlConsole.WriteLine(\r\n+disk[Name+ +disk[DriveType+   + disk[VolumeName]); 
13c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}
 
14c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
15c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlConsole.ReadLine(); 
16c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlreturn 0
17c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}
 
18c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}

 

19
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html

20
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
//
disk[“DriveType”] 的返回值意义如下: 


21
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html


22
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
1
 No type 

23
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
2
 Floppy disk 

24
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
3
 Hard disk 

25
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
4
 Removable drive or network drive 

26
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
5
 CD

ROM 

27
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
6
 RAM disk 

28
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html

复制代码

3、如何用WMI获得指定磁盘的容量?

复制代码

 1
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
using
 System; 

 2
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
using
 System.Management; 

 3
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
//
 This example demonstrates reading a property of a ManagementObject. 


 4
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
class
 Sample_ManagementObject 

 5
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html

 6c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlpublic static int Main(string[] args) 
 7c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
 8c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlManagementObject disk = new ManagementObject( 
 9c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlwin32_logicaldisk.deviceid=\c:\“”); 
10c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmldisk.Get(); 
11c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlConsole.WriteLine(Logical Disk Size =  + disk[Size+  bytes); 
12c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlConsole.ReadLine(); 
13c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlreturn 0
14c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}
 
15c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}

 

复制代码

4、 如何列出机器中所有的共享资源?

复制代码

 1
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
using
 System; 

 2
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
using
 System.Management; 

 3
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
class
 TestApp 

 4c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html[STAThread] 
 5c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlstatic void Main() 
 6c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
 7c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlManagementObjectSearcher searcher = new ManagementObjectSearcher( 
 8c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlSELECT * FROM Win32_share); 
 9c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlforeach (ManagementObject share in searcher.Get()) 
10c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
11c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlConsole.WriteLine(share.GetText(TextFormat.Mof)); 
12c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}
 
13c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}
 
14c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
15c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}

 

16
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html

17
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html

复制代码

别忘记在引用中把System.Management添加进来。

5、 怎样写程控制让系统中的某个文件夹共享或取消共享.? 
首先,这需要以有相应权限的用户登录系统才行。然后,试试下面的代码:

复制代码

 1
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
using
 System; 

 2
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
using
 System.Management; 

 3
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
class
 CreateShare 

 4
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html

 5c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlpublic static void Main(string[] args) 
 6c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
 7c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlManagementClass _class = new ManagementClass(new ManagementPath(Win32_Share)); 
 8c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlobject[] obj = {
C:\\Temp,我的共享,0,10,Dot Net 实现的共享,“”}

 9c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html_class.InvokeMethod(create,obj); 
10c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}
 
11c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}

 

复制代码

1
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
object
[] obj 
=
 
{
C:\\Temp,我的共享,0,10,Dot Net 实现的共享,“”}

改为

1
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
object
[] obj 
=
 
{
C:\\Temp,我的共享,0,null,Dot Net 实现的共享,“”}

就可以实现授权给最多用户了。

6、 如何获得系统服务的运行状态?

复制代码

 1
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
private
 
void
 getServices() 

 2
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html

 3c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlManagementObjectCollection queryCollection; 
 4c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlstring[] lvData = new string[4]; 
 5c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmltry 
 6c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
 7c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlqueryCollection = getServiceCollection(SELECT * FROM Win32_Service); 
 8c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlforeach ( ManagementObject mo in queryCollection) 
 9c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
10c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html//create child node for operating system 
11c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmllvData[0= mo[Name].ToString(); 
12c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmllvData[1= mo[StartMode].ToString(); 
13c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlif (mo[Started].Equals(true)) 
14c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmllvData[2= Started
15c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlelse 
16c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmllvData[2= Stop
17c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmllvData[3= mo[StartName].ToString(); 
18c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html//create list item 
19c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlListViewItem lvItem = new ListViewItem(lvData,0); 
20c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmllistViewServices.Items.Add(lvItem); 
21c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}
 
22c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}
 
23c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlcatch (Exception e) 
24c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
25c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlMessageBox.Show(Error:  + e); 
26c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}
 
27c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}

 

复制代码

7、 通过WMI修改IP,而实现不用重新启动? 

 

复制代码

 1
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
using
 System; 

 2
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
using
 System.Management; 

 3
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
using
 System.Threading; 

 4
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
namespace
 WmiIpChanger 

 5
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html

 6c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlclass IpChanger 
 7c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
 8c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html[MTAThread] 
 9c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlstatic void Main(string[] args) 
10c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
11c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlReportIP(); 
12c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html// SwitchToDHCP(); 
13c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlSwitchToStatic(); 
14c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlThread.Sleep( 5000 ); 
15c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlReportIP(); 
16c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlConsole.WriteLine( end. ); 
17c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}
 
18c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlstatic void SwitchToDHCP() 
19c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
20c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlManagementBaseObject inPar = null
21c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlManagementBaseObject outPar = null
22c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlManagementClass mc = new ManagementClass(Win32_NetworkAdapterConfiguration); 
23c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlManagementObjectCollection moc = mc.GetInstances(); 
24c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlforeach( ManagementObject mo in moc ) 
25c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
26c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlif! (bool) mo[IPEnabled] ) 
27c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlcontinue
28c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlinPar = mo.GetMethodParameters(EnableDHCP); 
29c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmloutPar = mo.InvokeMethod( EnableDHCP, inPar, null ); 
30c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlbreak
31c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}
 
32c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}
 
33c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlstatic void SwitchToStatic() 
34c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
35c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlManagementBaseObject inPar = null
36c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlManagementBaseObject outPar = null
37c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlManagementClass mc = new ManagementClass(Win32_NetworkAdapterConfiguration); 
38c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlManagementObjectCollection moc = mc.GetInstances(); 
39c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlforeach( ManagementObject mo in moc ) 
40c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
41c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlif! (bool) mo[ IPEnabled ] ) 
42c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlcontinue
43c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlinPar = mo.GetMethodParameters( EnableStatic ); 
44c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlinPar[IPAddress= new string[] 192.168.1.1 }
45c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlinPar[SubnetMask= new string[] 255.255.255.0 }
46c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmloutPar = mo.InvokeMethod( EnableStatic, inPar, null ); 
47c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlbreak
48c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}
 
49c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}
 
50c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlstatic void ReportIP() 
51c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
52c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlConsole.WriteLine( ****** Current IP addresses: ); 
53c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlManagementClass mc = new ManagementClass(Win32_NetworkAdapterConfiguration); 
54c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlManagementObjectCollection moc = mc.GetInstances(); 
55c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlforeach( ManagementObject mo in moc ) 
56c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
57c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlif! (bool) mo[ IPEnabled ] ) 
58c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlcontinue
59c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlConsole.WriteLine( {0}\n SVC: ‘{1}’ MAC: [{2}], (string) mo[Caption], 
60c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html(string) mo[ServiceName], (string) mo[MACAddress] ); 
61c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlstring[] addresses = (string[]) mo[ IPAddress ]; 
62c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlstring[] subnets = (string[]) mo[ IPSubnet ]; 
63c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlConsole.WriteLine(  Addresses : ); 
64c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlforeach(string sad in addresses) 
65c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlConsole.WriteLine( \t'{0}’, sad ); 
66c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlConsole.WriteLine(  Subnets : ); 
67c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlforeach(string sub in subnets ) 
68c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlConsole.WriteLine( \t'{0}’, sub ); 
69c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}
 
70c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}
 
71c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}
 
72c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}

 

复制代码

8、 如何利用WMI远程重启远程计算机?

 

 

复制代码

 1
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
using
 System; 

 2
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
using
 System.Management; 

 3
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
namespace
 WMI3 

 4
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html

 5c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html/// <summary> 
 6c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html/// Summary description for Class1. 
 7c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html/// </summary> 

 8c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlclass Class1 
 9c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
10c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlstatic void Main(string[] args) 
11c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
12c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlConsole.WriteLine(Computer details retrieved using Windows Management Instrumentation (WMI)); 
13c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlConsole.WriteLine(mailto:Written%2002/01/02%20By%20John%20O’Donnell%20-%20csharpconsulting@hotmail.com); 
14c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlConsole.WriteLine(======================================== 
15c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html=================================); 
16c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html//连接远程计算机 
17c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlConnectionOptions co = new ConnectionOptions(); 
18c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlco.Username = john
19c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlco.Password = john
20c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlSystem.Management.ManagementScope ms = new System.Management.ManagementScope(\\\\192.168.1.2\\root\\cimv2, co); 
21c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html//查询远程计算机 
22c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlSystem.Management.ObjectQuery oq = new System.Management.ObjectQuery(SELECT * FROM Win32_OperatingSystem); 
23c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlManagementObjectSearcher query1 = new ManagementObjectSearcher(ms,oq); 
24c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlManagementObjectCollection queryCollection1 = query1.Get(); 
25c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlforeach( ManagementObject mo in queryCollection1 ) 
26c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
27c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlstring[] ss={
“”}

28c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlmo.InvokeMethod(Reboot,ss); 
29c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlConsole.WriteLine(mo.ToString()); 
30c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}
 
31c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}
 
32c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}
 
33c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}

 

34
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html

35
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html

复制代码

9、 利用WMI创建一个新的进程?

复制代码

 1
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
using
 System; 

 2
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
using
 System.Management; 

 3
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
//
 This sample demonstrates invoking a WMI method using parameter objects 


 4
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
public
 
class
 InvokeMethod 

 5
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html

 6c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlpublic static void Main() 
 7c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
 8c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html//Get the object on which the method will be invoked 
 9c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlManagementClass processClass = new ManagementClass(Win32_Process); 
10c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html//Get an input parameters object for this method 
11c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlManagementBaseObject inParams = processClass.GetMethodParameters(Create); 
12c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html//Fill in input parameter values 
13c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlinParams[CommandLine= calc.exe
14c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html//Execute the method 
15c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlManagementBaseObject outParams = processClass.InvokeMethod (Create, inParams, null); 
16c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html//Display results 
17c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html//Note: The return code of the method is provided in the “returnvalue” property of the outParams object 
18c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlConsole.WriteLine(Creation of calculator process returned:  + outParams[returnvalue]); 
19c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlConsole.WriteLine(Process ID:  + outParams[processId]); 
20c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}
 
21c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}

 

复制代码

10、 如何通过WMI终止一个进程?

复制代码

 1
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
using
 System; 

 2
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
using
 System.Management; 

 3
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
//
 This example demonstrates how to stop a system service. 


 4
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
class
 Sample_InvokeMethodOptions 

 5
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html

 6c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlpublic static int Main(string[] args) 
 7c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlManagementObject service = 
 8c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlnew ManagementObject(win32_service=\winmgmt\“”); 
 9c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlInvokeMethodOptions options = new InvokeMethodOptions(); 
10c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmloptions.Timeout = new TimeSpan(0,0,0,5); 
11c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlManagementBaseObject outParams = service.InvokeMethod(StopServicenull, options); 
12c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlConsole.WriteLine(Return Status =  + outParams[Returnvalue]); 
13c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlreturn 0
14c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}
 
15c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}

 

复制代码

11、 如何用WMI 来获取远程机器的目录以及文件.比如如何列出一个目录下的所有文件,或者所有子目录;如何删除,舔加,更改文件? 

复制代码

 1
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
using
 System; 

 2
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
using
 System.Management; 

 3
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
//
 This example demonstrates reading a property of a ManagementObject. 


 4
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
class
 Sample_ManagementObject 

 5
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html

 6c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlpublic static int Main(string[] args) 
 7c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlManagementObject disk = new ManagementObject( 
 8c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlwin32_logicaldisk.deviceid=\c:\“”); 
 9c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmldisk.Get(); 
10c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlConsole.WriteLine(Logical Disk Size =  + disk[Size+  bytes); 
11c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlreturn 0
12c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}
 
13c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}

 

14
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html

复制代码

13、 一些技巧 
我使用WMI可以取出网卡的MAC地址,CPU的系列号,主板的系列号,其中主板的系列号已经核对过没有错的,其余的有待于验证,因为我使用的是笔记本,笔记本背面有一个主板的系列号,所以可以肯定主板系列号没有问题 
网卡的MAC地址

1
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
SELECT MACAddress FROM Win32_NetworkAdapter WHERE ((MACAddress Is Not NULL) AND (Manufacturer 
<>
 

Microsoft

)) 

2
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html

3
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html结果:
08
:
00
:
46
:
63
:FF:8C 

CPU的系列号

1
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
Select ProcessorId From Win32_Processor 

2
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html

3
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html结果:3FEBF9FF00000F24 

主板的系列号

1
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
Select SerialNumber From Win32_BIOS 

2
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html

3
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html结果:
28362630

3700521
 

获取硬盘ID

复制代码

1
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
String HDid; 

2
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlManagementClass cimobject 
=
 
new
 ManagementClass(

Win32_DiskDrive

); 

3
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlManagementObjectCollection moc 
=
 cimobject.GetInstances(); 

4
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
foreach
(ManagementObject mo 
in
 moc) 

5
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html

6c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlHDid = (string)mo.Properties[Model].value; 
7c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlMessageBox.Show(HDid ); 
8c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}

 

复制代码

14、 一个使用WMI后的异常处理的问题 
下面是我整理的一段代码.

 

复制代码

 1
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
ManagementObjectCollection queryCollection1; 

 2
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlConnectionOptions co 
=
 
new
 ConnectionOptions(); 

 3
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlco.Username 
=
 

administrator



 4
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlco.Password 
=
 

111



 5
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
try
 

 6
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html

 7c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlSystem.Management.ManagementScope ms = new System.Management.ManagementScope(@”http://www.cnblogs.com/Sandheart/admin/file://csnt3/root/cimv2, co); 
 8c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlSystem.Management.ObjectQuery oq = new System.Management.ObjectQuery(SELECT * FROM Win32_OperatingSystem); 
 9c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlManagementObjectSearcher query1 = new ManagementObjectSearcher(ms,oq); 
10c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlqueryCollection1 = query1.Get(); 
11c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlforeach( ManagementObject mo in queryCollection1 ) 
12c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
13c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlstring[] ss={
“”}

14c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlmo.InvokeMethod(Reboot,ss); 
15c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlConsole.WriteLine(mo.ToString()); 
16c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}
 
17c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}

 

18
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
catch
(Exception ee) 

19
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html

20c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlConsole.WriteLine(error); 
21c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}

 

复制代码

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 管理应用程序 | 检索管理对象的集合 | 查询管理信息 | 预订和使用管理事件 | 执行管理对象的方法 | 远程处理和连接选项 | 使用强类型对象

获取CPU序列号代码

复制代码

 1
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
string
 cpuInfo 
=
 
“”
;
//
cpu序列号 


 2
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
ManagementClass cimobject 
=
 
new
 ManagementClass(

Win32_Processor

); 

 3
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlManagementObjectCollection moc 
=
 cimobject.GetInstances(); 

 4
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
foreach
(ManagementObject mo 
in
 moc) 

 5
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html

 6c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlcpuInfo = mo.Properties[ProcessorId].value.ToString(); 
 7c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlConsole.WriteLine(cpuInfo); 
 8c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlConsole.ReadLine(); 
 9c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}

 

10
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html

复制代码

获取网卡硬件地址

复制代码

 1
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
using
 System.Management; 

 2
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlc#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html 

 3
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlManagementClass mc 
=
 
new
 ManagementClass(

Win32_NetworkAdapterConfiguration

); 

 4
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlManagementObjectCollection moc 
=
 mc.GetInstances(); 

 5
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
foreach
(ManagementObject mo 
in
 moc) 

 6
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html

 7c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlif((bool)mo[IPEnabled== true
 8c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlConsole.WriteLine(MAC address\t{0}, mo[MacAddress].ToString()); 
 9c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlmo.Dispose(); 
10c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}

 

11
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html

12
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html

复制代码

获取硬盘ID

复制代码

1
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
String HDid; 

2
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlManagementClass cimobject 
=
 
new
 ManagementClass(

Win32_DiskDrive

); 

3
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlManagementObjectCollection moc 
=
 cimobject.GetInstances(); 

4
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
foreach
(ManagementObject mo 
in
 moc) 

5
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html

6c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlHDid = (string)mo.Properties[Model].value; 
7c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlMessageBox.Show(HDid ); 
8c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html}

 

复制代码

16、在.NET中轻松获取系统信息(1) -WMI篇 
Montaque 
申明: 
1、个人的一点心得,仅供参考 
2、转载时候,请保留原本。 
概述: 
不知道大家有没有这种体会?有时候为了获取系统一点点信息,比如考虑一下操作系统的版本号,或者当前屏幕的分辨率。其实说到底就是读操作系统某个方面的一个属性值而已,然后就看到我们的程序中密密麻麻的Win32 API申明,调用,代码的可读性和维护性不言而喻。到了.NET,微软提供了更为丰富的类,有很多以前要调用API的方法可以在.NET中轻而易举的调用实现。今天简单介绍一个在.NET中如何通过与WMI(Windows 管理规范)的通讯,从而得到获取信息的目的。 
主要思路: 
举一个获取操作系统共享目录和获取主板号的例子,介绍如何利用System.Managment下面的类获取系统相关的信息: 
正文: 
WMI(Windows管理规范:Windows Management Instrumentation)是Microsoft基于Web的企业管理(WBEM)的实现,同时也是一种基于标准的系统管理接口。WMI最早出现在Microsoft Windows 2000系统上,但它同样可以安装在Windows NT 4和Windows 9x计算机上。WMI是一种轻松获取系统信息的强大工具。 
在.NET中,有一个System.Management名空间(系统默认没有引用,我们可以手动添加引用),通过下面的Class的操作,可以查询系统软硬件的信息,先看一个简单的例子:

1
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
Imports
 System.Management 

2
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
Dim
 searcher 
As
 
New
 ManagementObjectSearcher(

SELECT * FROM Win32_share



3
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
Dim
 share 
As
 ManagementObject 

4
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
For
 
Each
 share 
In
 searcher.Get() 

5
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlMessageBox.Show(share.GetText(TextFormat.Mof)) 

6
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
Next
 share 

运行的结果是列出了所有系统当前共享的目录、以及描述等等。 
分析一下上面的代码,可以看到一下几点: 
1、似乎是在进行数据库操作,有点像SQL语句。其实就是SQL操作,这种语句被成WQL(WMI Query Language),实际上是标准SQL的一个子集加上了WMI的扩展. 
2、WQL是个只读的查询语言,我们只能查询响应的数据,不能用UPDATE,INSERT等更新操作 
3、代码很简单、通俗易懂 
4、我们采用了一种MOF(托管对象格式)的显示。 
例子二:获取当前主板的信息 
上面的例子是一个软件方面的信息,下面看一个获取硬件信息的例子,获取主板的序列号以及制造商:

复制代码

1
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
Dim
 searcher 
As
 
New
 ManagementObjectSearcher(

SELECT * FROM Win32_BaseBoard



2
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
Dim
 share 
As
 ManagementObject 

3
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
For
 
Each
 share 
In
 searcher.Get() 

4
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlDebug.WriteLine(

主板制造商:

 
&
 share(

Manufacturer

)) 

5
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlDebug.WriteLine(

型号:

 
&
 share(

Product

)) 

6
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.htmlDebug.WriteLine(

序列号:

 
&
 share(

SerialNumber

)) 

7
c#与WMI使用技巧集http://www.cnblogs.com/Sandheart/articles/1568636.html
Next
 share 

复制代码

总结以及补充: 
WMI类也是分层次的,具体可以参考msdn中的WMI;转向.NET平台开发的时候,最好能多看一些关于.NET新特性的介绍,这样可以大幅度的提升代码的开发效率以及运行效率。 

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/39065.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注