WMI使用集锦

WMI使用集锦

1.WMI简介
WMI是英文Windows Management Instrumentation的简写,它的功能主要是:访问本地主机的一些信息和服务,可以管理远程计算机(当然你必须要拥有足够的权限),比如:重启,关机,关闭进程,创建进程等。
2.使用时首先添加System.Management.dll,然后引用

WMI使用集锦using System.Management;
WMI使用集锦
using System.Threading; 
3.示例代码
3.1 html代码
WMI使用集锦<HTML>
WMI使用集锦    
<HEAD>
WMI使用集锦        
<title>WMITest</title>
WMI使用集锦        
<meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
WMI使用集锦        
<meta name="CODE_LANGUAGE" Content="C#">
WMI使用集锦        
<meta name="vs_defaultClientScript" content="JavaScript">
WMI使用集锦        
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
WMI使用集锦    
</HEAD>
WMI使用集锦    
<body MS_POSITIONING="GridLayout">
WMI使用集锦        
<form id="Form1" method="post" runat="server">
WMI使用集锦            
<FONT face="宋体">
WMI使用集锦                
<asp:Button id="Button1" style="Z-INDEX: 101; LEFT: 48px; POSITION: absolute; TOP: 16px" runat="server"
WMI使用集锦                    Text
="获得本地磁盘的信息" Width="152px"></asp:Button>
WMI使用集锦                
<asp:Button id="Button2" style="Z-INDEX: 102; LEFT: 32px; POSITION: absolute; TOP: 56px" runat="server"
WMI使用集锦                    Text
="获得指定磁盘的容量" Width="144px"></asp:Button>
WMI使用集锦                
<asp:Button id="Button3" style="Z-INDEX: 103; LEFT: 32px; POSITION: absolute; TOP: 96px" runat="server"
WMI使用集锦                    Text
="列出机器中所有的共享资源" Width="192px"></asp:Button>
WMI使用集锦                
<asp:Button id="Button4" style="Z-INDEX: 104; LEFT: 8px; POSITION: absolute; TOP: 128px" runat="server"
WMI使用集锦                    Text
="控制让系统中的某个文件夹共享或取消共享" Width="264px"></asp:Button>
WMI使用集锦                
<asp:Button id="Button5" style="Z-INDEX: 105; LEFT: 48px; POSITION: absolute; TOP: 160px" runat="server"
WMI使用集锦                    Text
="获得系统服务的运行状态"></asp:Button>
WMI使用集锦                
<asp:Button id="Button6" style="Z-INDEX: 106; LEFT: 40px; POSITION: absolute; TOP: 192px" runat="server"
WMI使用集锦                    Text
="通过WMI修改IP,而实现不用重新启动" Width="248px"></asp:Button>
WMI使用集锦                
<asp:Button id="Button7" style="Z-INDEX: 107; LEFT: 24px; POSITION: absolute; TOP: 224px" runat="server"
WMI使用集锦                    Text
="如何利用WMI远程重启远程计算机" Width="232px"></asp:Button>
WMI使用集锦                
<asp:Button id="Button8" style="Z-INDEX: 108; LEFT: 40px; POSITION: absolute; TOP: 264px" runat="server"
WMI使用集锦                    Text
="利用WMI创建一个新的进程" Width="192px"></asp:Button>
WMI使用集锦                
<asp:Button id="Button9" style="Z-INDEX: 109; LEFT: 32px; POSITION: absolute; TOP: 296px" runat="server"
WMI使用集锦                    Text
="如何通过WMI终止一个进程" Width="192px"></asp:Button>
WMI使用集锦                
<asp:Button id="Button10" style="Z-INDEX: 110; LEFT: 32px; POSITION: absolute; TOP: 328px" runat="server"
WMI使用集锦                    Text
="如何用WMI 来获取远程机器的目录以及文件" Width="280px"></asp:Button>
WMI使用集锦                
<asp:Button id="Button11" style="Z-INDEX: 111; LEFT: 424px; POSITION: absolute; TOP: 24px" runat="server"
WMI使用集锦                    Text
="网卡的MAC地址" Width="120px"></asp:Button>
WMI使用集锦                
<asp:Button id="Button12" style="Z-INDEX: 112; LEFT: 456px; POSITION: absolute; TOP: 64px" runat="server"
WMI使用集锦                    Text
="CPU的系列号 " Width="104px"></asp:Button>
WMI使用集锦                
<asp:Button id="Button13" style="Z-INDEX: 113; LEFT: 448px; POSITION: absolute; TOP: 120px"
WMI使用集锦                    runat
="server" Text="主板的系列号"></asp:Button>
WMI使用集锦                
<asp:Button id="Button14" style="Z-INDEX: 114; LEFT: 472px; POSITION: absolute; TOP: 160px"
WMI使用集锦                    runat
="server" Text="获取硬盘ID"></asp:Button>
WMI使用集锦                
<asp:Button id="Button15" style="Z-INDEX: 115; LEFT: 448px; POSITION: absolute; TOP: 208px"
WMI使用集锦                    runat
="server" Text="获取本机的用户列表" Width="144px"></asp:Button></FONT>
WMI使用集锦        
</form>
WMI使用集锦    
</body>
WMI使用集锦
</HTML>
3.2cs代码
WMI使用集锦public class WMITest : System.Web.UI.Page
WMI使用集锦WMI使用集锦    
WMI使用集锦{
WMI使用集锦        
protected System.Web.UI.WebControls.Button Button2;
WMI使用集锦        
protected System.Web.UI.WebControls.Button Button3;
WMI使用集锦        
protected System.Web.UI.WebControls.Button Button4;
WMI使用集锦        
protected System.Web.UI.WebControls.Button Button5;
WMI使用集锦        
protected System.Web.UI.WebControls.Button Button6;
WMI使用集锦        
protected System.Web.UI.WebControls.Button Button7;
WMI使用集锦        
protected System.Web.UI.WebControls.Button Button8;
WMI使用集锦        
protected System.Web.UI.WebControls.Button Button9;
WMI使用集锦        
protected System.Web.UI.WebControls.Button Button10;
WMI使用集锦        
protected System.Web.UI.WebControls.Button Button11;
WMI使用集锦        
protected System.Web.UI.WebControls.Button Button12;
WMI使用集锦        
protected System.Web.UI.WebControls.Button Button13;
WMI使用集锦        
protected System.Web.UI.WebControls.Button Button14;
WMI使用集锦        
protected System.Web.UI.WebControls.Button Button15;
WMI使用集锦        
protected System.Web.UI.WebControls.Button Button1;
WMI使用集锦    
WMI使用集锦        
private void Page_Load(object sender, System.EventArgs e)
WMI使用集锦WMI使用集锦        
WMI使用集锦{
WMI使用集锦            
// Put user code to initialize the page here
WMI使用集锦
        }

WMI使用集锦
WMI使用集锦WMI使用集锦        
Web Form Designer generated code#region Web Form Designer generated code
WMI使用集锦        
override protected void OnInit(EventArgs e)
WMI使用集锦WMI使用集锦        
WMI使用集锦{
WMI使用集锦            
//
WMI使用集锦            
// CODEGEN: This call is required by the ASP.NET Web Form Designer.
WMI使用集锦            
//
WMI使用集锦
            InitializeComponent();
WMI使用集锦            
base.OnInit(e);
WMI使用集锦        }

WMI使用集锦        
WMI使用集锦WMI使用集锦        
/**//// <summary>
WMI使用集锦        
/// Required method for Designer support - do not modify
WMI使用集锦        
/// the contents of this method with the code editor.
WMI使用集锦        
/// </summary>

WMI使用集锦        private void InitializeComponent()
WMI使用集锦WMI使用集锦        
WMI使用集锦{    
WMI使用集锦            
this.Button1.Click += new System.EventHandler(this.Button1_Click);
WMI使用集锦            
this.Button2.Click += new System.EventHandler(this.Button2_Click);
WMI使用集锦            
this.Button3.Click += new System.EventHandler(this.Button3_Click);
WMI使用集锦            
this.Button4.Click += new System.EventHandler(this.Button4_Click);
WMI使用集锦            
this.Button5.Click += new System.EventHandler(this.Button5_Click);
WMI使用集锦            
this.Button6.Click += new System.EventHandler(this.Button6_Click);
WMI使用集锦            
this.Button7.Click += new System.EventHandler(this.Button7_Click);
WMI使用集锦            
this.Button8.Click += new System.EventHandler(this.Button8_Click);
WMI使用集锦            
this.Button9.Click += new System.EventHandler(this.Button9_Click);
WMI使用集锦            
this.Button10.Click += new System.EventHandler(this.Button10_Click);
WMI使用集锦            
this.Button11.Click += new System.EventHandler(this.Button11_Click);
WMI使用集锦            
this.Button12.Click += new System.EventHandler(this.Button12_Click);
WMI使用集锦            
this.Button13.Click += new System.EventHandler(this.Button13_Click);
WMI使用集锦            
this.Button14.Click += new System.EventHandler(this.Button14_Click);
WMI使用集锦            
this.Button15.Click += new System.EventHandler(this.Button15_Click);
WMI使用集锦            
this.Load += new System.EventHandler(this.Page_Load);
WMI使用集锦
WMI使用集锦        }

WMI使用集锦        
#endregion

WMI使用集锦
WMI使用集锦WMI使用集锦        
1.如何用WMI获得指定磁盘的容量#region 1.如何用WMI获得指定磁盘的容量
WMI使用集锦        
private string DriveType(string type)
WMI使用集锦WMI使用集锦        
WMI使用集锦{
WMI使用集锦            
string rtntype="";
WMI使用集锦            
switch (type)
WMI使用集锦WMI使用集锦            
WMI使用集锦{
WMI使用集锦                
case "1":
WMI使用集锦                    rtntype
="Not Type";
WMI使用集锦                    
break;
WMI使用集锦                
case "2":
WMI使用集锦                    rtntype
="Floppy disk";
WMI使用集锦                    
break;
WMI使用集锦                
case "3":
WMI使用集锦                    rtntype
="Hard disk";
WMI使用集锦                    
break;
WMI使用集锦                
case "4":
WMI使用集锦                    rtntype
="Removable drive or network drive";
WMI使用集锦                    
break;
WMI使用集锦                
case "5":
WMI使用集锦                    rtntype
="CD-ROM";
WMI使用集锦                    
break;
WMI使用集锦                
case "6":
WMI使用集锦                    rtntype
="RAM disk";
WMI使用集锦                    
break;
WMI使用集锦                
default :
WMI使用集锦