C#重啟遠端電腦的代碼_C#教程

來源:互聯網
上載者:User
如果叫你實現遠程啟動別人的電腦,你首先想到的可能是先做一個在遠端電腦上面運行用戶端程式,然後在本機電腦上面再做一個伺服器端程式,通過這二個程式直接的通訊實現重啟遠端電腦。這當然是一個方法。但這未免有點麻煩。如果現在只告訴你遠端電腦的管理者的登陸帳號,而並不允許你在遠端電腦上面運行一個所謂的用戶端程式,讓你通過程式來完成重啟遠端電腦。不知道你是否感覺有些困難了。其實按照上面的這些條件實現重啟遠端電腦,利用C#可以比較方便的完成。下面就來介紹一下具體的實現方法。 
一. C#重啟遠端電腦的一些理論知識: 
  C#實現啟動遠端電腦的原理是"視窗管理規範"。就是所謂的"WMI"(Windows Management Instrumentation)。Windows 管理規範 (WMI) 支援通過 Internet 管理系統的結構。通過提供管理環境的一致觀察,WMI 為使用者提供通用訪問管理資訊。該管理的一致性使您能夠管理整個系統,而不只是組件。從 Microsoft MSDN上,您可以獲得有關 WMI 軟體開發套件 (SDK) 的詳細資料。 
  WMI(Windows 管理規範)支援有限的安全格式,允許使用者在本機電腦或遠端電腦上串連 WMI 之前要驗證每個使用者。這種安全性是作業系統已有的安全頂端的另一層。WMI 不覆蓋或破壞由作業系統提供的任何現有的安全性。在預設情況下,Administrator 群組的所有成員都可以完全控制它管理的電腦上的 WMI 服務。其他所有使用者在其本機電腦上只有讀取/寫入/執行的許可權。可以通過向受管理的電腦上的Administrator 群組添加使用者,或者在 WMI 中授權使用者或組並設定權限等級來更改許可權。訪問基於 WMI 名稱空間。在一般情況下,指令碼程式的預設命名空間是"root\cimv2"。 
  在WMI中有著許多足以令我們感覺驚奇的功能。重啟遠端電腦只是一個很小的功能。在程式中使用WMI可以編寫出許多遠端管理類型的應用程式。由於在.Net FrameWork SDK中提供了可以直接操作WMI的名稱空間,所以C#就可以利用在這些名稱空間中定義了的類來充分使用WMI控制給我們帶來的各種方便。 
二.程式設計和啟動並執行環境設定: 
  (1).windows 2000 Professional 
  (2). .Net FrameWork SDK 
  (3).遠端電腦的管理者帳號 
  以上這些不僅是本機電腦配置,還是遠端電腦的配置。 
三.實現重啟遠端電腦所使用到在.Net FrameWork SDK用以操作WMI名稱空間和類: 
  添加引用System.Management; 
  在.Net FrameWork SDK中用來操作WMI的名稱空間主要是"System.Management"。要實現重啟遠端電腦所使用到的類主要有六個: 
  . "ConnectionOptions"類主要定義遠端電腦的管理員帳號; 
  . "ManagementScope"主要是以給定的管理員帳號串連給定電腦名稱或者IP地址的電腦; 
  . "ObjectQuery"類功能是定義對遠端電腦要實現那些地遠程操作; 
  . "ManagementObjectSearcher"類從已經完成遠端連線的電腦中,得到有那些WMI操作; 
  . "ManagementObjectCollection"類存放得到WMI操作; 
  . "ManagementObject"類調用遠端電腦可進行WMI操作。 
  在本文介紹的操作就是重啟操作。 
四.C#重啟遠端電腦的重要步驟和實現方法: 
  (1).串連遠端電腦: 
  按照下列語句可以實現串連遠端電腦: 
ConnectionOptions options = new ConnectionOptions ( ) ; 
options.Username ="管理者帳號使用者名稱"; 
options.Password = "管理者帳號口令" ; 
ManagementScope scope = new ManagementScope( "\\\\" + "遠端電腦名或IP地址" + "\\root\\cimv2", options ) ; 
//用給定管理者使用者名稱和口令串連遠端電腦 
scope.Connect ( ) ; 
  (2).得到在遠端電腦中可以進行WMI控制: 
System.Management.ObjectQuery oq = new System.Management.ObjectQuery ( "SELECT * FROM Win32_OperatingSystem" ) ; 
ManagementObjectSearcher query1 = new ManagementObjectSearcher ( scope , oq ) ; 
//得到WMI控制 
ManagementObjectCollection queryCollection1 = query1.Get ( ) ; 
  (3).調用WMI控制,實現重啟遠端電腦: 
foreach ( ManagementObject mo in queryCollection1 ) 

string [ ] ss= { "" } ; 
//重啟遠端電腦 
mo.InvokeMethod ( "Reboot" , ss ) ; 

五.C#實現重啟遠端電腦的來源程式代碼(boot.cs)和執行介面: 
  在瞭解了C#實現重啟遠端電腦的這些重要步驟後,就可以從容的得到重啟遠端電腦的完整代碼,具體如下: 
using System; 
using System.Drawing; 
using System.Collections; 
using System.ComponentModel; 
using System.Windows.Forms; 
using System.Data; 
using System.Management; 
namespace ReStartboot 

/// <summary> 
/// Form1 的摘要說明。 
/// </summary> 
public class Form1 : System.Windows.Forms.Form 

private System.Drawing.Printing.PrintDocument printDocument1; 
private System.Windows.Forms.Label label1; 
private System.Windows.Forms.Label label2; 
private System.Windows.Forms.Label label3; 
private System.Windows.Forms.TextBox textBox1; 
private System.Windows.Forms.TextBox textBox2; 
private System.Windows.Forms.TextBox textBox3; 
private System.Windows.Forms.Button button1; 
/// <summary> 
/// 必需的設計器變數。 
/// </summary> 
private System.ComponentModel.Container components = null; 
public Form1() 

// 
// Windows 表單設計器支援所必需的 
// 
InitializeComponent(); 
// 
// TODO: 在 InitializeComponent 調用後添加任何建構函式代碼 
// 

/// <summary> 
/// 清理所有正在使用的資源。 
/// </summary> 
protected override void Dispose( bool disposing ) 

if( disposing ) 

if (components != null) 

components.Dispose(); 


base.Dispose( disposing ); 

#region Windows Form Designer generated code 
/// <summary> 
/// 設計器支援所需的方法 - 不要使用代碼編輯器修改 
/// 此方法的內容。 
/// </summary> 
private void InitializeComponent() 

this.printDocument1 = new System.Drawing.Printing.PrintDocument(); 
this.label1 = new System.Windows.Forms.Label(); 
this.label2 = new System.Windows.Forms.Label(); 
this.label3 = new System.Windows.Forms.Label(); 
this.textBox1 = new System.Windows.Forms.TextBox(); 
this.textBox2 = new System.Windows.Forms.TextBox(); 
this.textBox3 = new System.Windows.Forms.TextBox(); 
this.button1 = new System.Windows.Forms.Button(); 
this.SuspendLayout(); 
// 
// label1 
// 
this.label1.Location = new System.Drawing.Point(16, 32); 
this.label1.Name = "label1"; 
this.label1.Size = new System.Drawing.Size(120, 23); 
this.label1.TabIndex = 0; 
this.label1.Text = "遠端電腦名或IP:"; 
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight; 
// 
// label2 
// 
this.label2.Anchor = System.Windows.Forms.AnchorStyles.Top; 
this.label2.Location = new System.Drawing.Point(32, 80); 
this.label2.Name = "label2"; 
this.label2.TabIndex = 1; 
this.label2.Text = "管理員名:"; 
this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight; 
// 
// label3 
// 
this.label3.Location = new System.Drawing.Point(32, 128); 
this.label3.Name = "label3"; 
this.label3.TabIndex = 2; 
this.label3.Text = "密碼:"; 
this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight; 
// 
// textBox1 
// 
this.textBox1.Location = new System.Drawing.Point(136, 32); 
this.textBox1.Name = "textBox1"; 
this.textBox1.Size = new System.Drawing.Size(152, 21); 
this.textBox1.TabIndex = 3; 
this.textBox1.Text = ""; 
// 
// textBox2 
// 
this.textBox2.Location = new System.Drawing.Point(136, 80); 
this.textBox2.Name = "textBox2"; 
this.textBox2.Size = new System.Drawing.Size(152, 21); 
this.textBox2.TabIndex = 4; 
this.textBox2.Text = ""; 
// 
// textBox3 
// 
this.textBox3.Location = new System.Drawing.Point(136, 128); 
this.textBox3.Name = "textBox3"; 
this.textBox3.Size = new System.Drawing.Size(152, 21); 
this.textBox3.TabIndex = 5; 
this.textBox3.Text = ""; 
// 
// button1 
// 
this.button1.Location = new System.Drawing.Point(104, 168); 
this.button1.Name = "button1"; 
this.button1.Size = new System.Drawing.Size(120, 23); 
this.button1.TabIndex = 6; 
this.button1.Text = "重啟遠端電腦"; 
this.button1.Click += new System.EventHandler(this.button1_Click); 
// 
// Form1 
// 
this.AutoScaleBaseSize = new System.Drawing.Size(6, 14); 
this.ClientSize = new System.Drawing.Size(320, 213); 
this.Controls.AddRange(new System.Windows.Forms.Control[] { this.label1}); 
this.Name = "Form1"; 
this.Text = "重啟遠端電腦"; 
this.ResumeLayout(false); 

#endregion 
/// <summary> 
/// 應用程式的主進入點。 
/// </summary> 
[STAThread] 
static void Main() 

Application.Run(new Form1()); 

private void button1_Click(object sender, System.EventArgs e) 

//定義串連遠端電腦的一些選項 
ConnectionOptions options=new ConnectionOptions(); 
options.Username=textBox2.Text; 
options.Password=textBox3.Text; 
ManagementScope scope=new ManagementScope("\\\\"+textBox1.Text+"\\root\\cimv2",options); 
try 

//用給定管理者使用者名稱和口令串連遠端電腦 
scope.Connect(); 
ObjectQuery oq=new ObjectQuery("select * from win32_OperatingSystem"); 
ManagementObjectSearcher query1=new ManagementObjectSearcher(scope,oq); 
ManagementObjectCollection queryCollection1=query1.Get(); 
foreach(ManagementObject mo in queryCollection1) 

string[] ss={""}; 
mo.InvokeMethod("Reboot",ss); 


catch(Exception er) 

MessageBox.Show("串連" + textBox1.Text + "出錯,出錯資訊為:" +er.Message); 



}  
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.