如果叫你实现远程启动别人的计算机你首先想到的可能是先做一个在远程计算机上面运行客户端程序然后在本地计算机上面再做一个服务器端程序通过这二个程序直接的通讯实现重启远程计算机这当然是一个方法但这未免有点麻烦如果现在只告诉你远程计算机的管理者的登陆帐号而并不允许你在远程的计算机上面运行一个所谓的客户端程序让你通过程序来完成重启远程计算机不知道你是否感觉有些困难了其实按照上面的这些条件实现重启远程计算机利用C#可以比较方便的完成下面就来介绍一下具体的实现方法
一. C#重启远程计算机的一些理论知识
C#实现启动远程计算机的原理是视窗管理规范就是所谓的WMI(Windows Management Instrumentation)Windows 管理规范 (WMI) 支持通过 Internet 管理系统的结构通过提供管理环境的一致观察WMI 为用户提供通用访问管理信息该管理的一致性使您能够管理整个系统而不只是组件从 Microsoft MSDN上您可以获得有关 WMI 软件开发工具包 (SDK) 的详细信息
WMI(Windows 管理规范)支持有限的安全格式允许用户在本地计算机或远程计算机上连接 WMI 之前要验证每个用户这种安全性是操作系统已有的安全顶端的另一层WMI 不覆盖或破坏由操作系统提供的任何现有的安全性在默认情况下管理员组的所有成员都可以完全控制它管理的计算机上的 WMI 服务其他所有用户在其本地计算机上只有读取/写入/执行的权限可以通过向被管理的计算机上的管理员组添加用户或者在 WMI 中授权用户或组并设置权限级别来更改权限访问基于 WMI 名称空间在一般情况下脚本程序的默认命名空间是root\cimv
在WMI中有着许多足以令我们感觉惊奇的功能重启远程计算机只是一个很小的功能在程序中使用WMI可以编写出许多远程管理类型的应用程序由于在Net FrameWork SDK中提供了可以直接操作WMI的名称空间所以C#就可以利用在这些名称空间中定义了的类来充分使用WMI控制给我们带来的各种方便
二.程序设计和运行的环境设置
()windows Professional
() Net FrameWork SDK
()远程计算机的管理者帐号
以上这些不仅是本地计算机配置还是远程计算机的配置
三.实现重启远程计算机所使用到在Net FrameWork SDK用以操作WMI名称空间和类
添加引用SystemManagement;
在Net FrameWork SDK中用来操作WMI的名称空间主要是SystemManagement要实现重启远程计算机所使用到的类主要有六个
ConneCTionOptions类主要定义远程计算机的管理员帐号
ManagementScope主要是以给定的管理员帐号连接给定计算机名或者IP地址的计算机
ObjectQuery类功能是定义对远程计算机要实现那些地远程操作
ManagementObjectSearcher类从已经完成远程连接的计算机中得到有那些WMI操作
ManagementObjectCollection类存放得到WMI操作
ManagementObject类调用远程计算机可进行WMI操作
在本文介绍的操作就是重启操作
四.C#重启远程计算机的重要步骤和实现方法
()连接远程计算机
按照下列语句可以实现连接远程计算机
ConnectionOptions options = new ConnectionOptions ( ) ;
optionsUsername =管理者帐号用户名;
optionsPassword = 管理者帐号口令 ;
ManagementScope scope = new ManagementScope( \\\\ + 远程计算机名或IP地址
+ \\root\\cimv options ) ;
//用给定管理者用户名和口令连接远程的计算机
scopeConnect ( ) ;
()得到在远程计算机中可以进行WMI控制
SystemManagementObjectQuery oq = new SystemManagementObjectQuery ( SELECT * FROM Win_OperatingSystem ) ;
ManagementObjectSearcher query = new ManagementObjectSearcher ( scope oq ) ;
//得到WMI控制
ManagementObjectCollection queryCollection = queryGet ( ) ;
()调用WMI控制实现重启远程计算机
foreach ( ManagementObject mo in queryCollection )
{
string [ ] ss= { } ;
//重启远程计算机
moInvokeMethod ( Reboot ss ) ;
}
五.C#实现重启远程计算机的源程序代码(bootcs)和执行界面
在了解了C#实现重启远程计算机的这些重要步骤后就可以从容的得到重启远程计算机的完整代码具体如下
using System;
using SystemDrawing;
using SystemCollections;
using SystemComponentModel;
using SystemWindowsForms;
using SystemData;
using SystemManagement;
namespace ReStartboot
{
/// <summary>
/// Form 的摘要说明
/// </summary>
public class Form : SystemWindowsFormsForm
{
private SystemDrawingPrintingPrintDocument printDocument;
private SystemWindowsFormsLabel label;
private SystemWindowsFormsLabel label;
private SystemWindowsFormsLabel label;
private SystemWindowsFormsTextBox textBox;
private SystemWindowsFormsTextBox textBox;
private SystemWindowsFormsTextBox textBox;
private SystemWindowsFormsButton button;
/// <summary>
/// 必需的设计器变量
/// </summary>
private SystemComponentModelContainer components = null;
public Form()
{
//
// Windows 窗体设计器支持所必需的
//
InitializeComponent();
//
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
//
}
/// <summary>
/// 清理所有正在使用的资源
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
componentsDispose();
}
}
baseDispose( disposing );
}
#region Windows Form Designer generated code
/// <summary>
/// 设计器支持所需的方法 不要使用代码编辑器修改
/// 此方法的内容
/// </summary>
private void InitializeComponent()
{
thisprintDocument = new SystemDrawingPrintingPrintDocument();
thislabel = new SystemWindowsFormsLabel();
thislabel = new SystemWindowsFormsLabel();
thislabel = new SystemWindowsFormsLabel();
thistextBox = new SystemWindowsFormsTextBox();
thistextBox = new SystemWindowsFormsTextBox();
thistextBox = new SystemWindowsFormsTextBox();
thisbutton = new SystemWindowsFormsButton();
thisSuspendLayout();
//
// label
//
thislabelLocation = new SystemDrawingPoint( );
thislabelName = label;
thislabelSize = new SystemDrawingSize( );
thislabelTabIndex = ;
thislabelText = 远程计算机名或IP;
thislabelTextAlign = SystemDrawingContentAlignmentMiddleRight;
//
// label
//
thislabelAnchor = SystemWindowsFormsAnchorStylesTop;
thislabelLocation = new SystemDrawingPoint( );
thislabelName = label;
thislabelTabIndex = ;
thislabelText = 管理员名;
thislabelTextAlign = SystemDrawingContentAlignmentMiddleRight;
//
// label
//
thislabelLocation = new SystemDrawingPoint( );
thislabelName = label;
thislabelTabIndex = ;
thislabelText = 密码;
thislabelTextAlign = SystemDrawingContentAlignmentMiddleRight;
//
// textBox
//
thistextBoxLocation = new SystemDrawingPoint( );
thistextBoxName = textBox;
thistextBoxSize = new SystemDrawingSize( );
thistextBoxTabIndex = ;
thistextBoxText = ;
//
// textBox
//
thistextBoxLocation = new SystemDrawingPoint( );
thistextBoxName = textBox;
thistextBoxSize = new SystemDrawingSize( );
thistextBoxTabIndex = ;
thistextBoxText = ;
//
// textBox
//
thistextBoxLocation = new SystemDrawingPoint( );
thistextBoxName = textBox;
thistextBoxSize = new SystemDrawingSize( );
thistextBoxTabIndex = ;
thistextBoxText = ;
//
// button
//
thisbuttonLocation = new SystemDrawingPoint( );
thisbuttonName = button;
thisbuttonSize = new SystemDrawingSize( );
thisbuttonTabIndex = ;
thisbuttonText = 重启远程计算机;
thisbuttonClick += new SystemEventHandler(thisbutton_Click);
//
// Form
//
thisAutoScaleBaseSize = new SystemDrawingSize( );
thisClientSize = new SystemDrawingSize( );
thisControlsAddRange(new SystemWindowsFormsControl[] { thislabel});
thisName = Form;
thisText = 重启远程计算机;
thisResumeLayout(false);
}
#endregion
/// <summary>
/// 应用程序的主入口点
/// </summary>
[STAThread]
static void Main()
{
ApplicationRun(new Form());
}
private void button_Click(object sender SystemEventArgs e)
{
//定义连接远程计算机的一些选项
ConnectionOptions options=new ConnectionOptions();
optionsUsername=textBoxText;
optionsPassword=textBoxText;
ManagementScope scope=new ManagementScope(\\\\+textBoxText+\\root\\cimvoptions);
try
{
//用给定管理者用户名和口令连接远程的计算机
scopeConnect();
ObjectQuery oq=new ObjectQuery(select * from win_OperatingSystem);
ManagementObjectSearcher query=new ManagementObjectSearcher(scopeoq);
ManagementObjectCollection queryCollection=queryGet();
foreach(ManagementObject mo in queryCollection)
{
string[] ss={};
moInvokeMethod(Rebootss);
}
}
catch(Exception er)
{
MessageBoxShow(连接 + textBoxText + 出错出错信息为 +erMessage);
}
}
}
}