如果叫你实现远程启动别人的计算机你首先想到的可能是先做一个在远程计算机上面运行客户端程序然后在本地计算机上面再做一个服务器端程序通过这二个程序直接的通讯实现重启远程计算机这当然是一个方法但这未免有点麻烦如果现在只告诉你远程计算机的管理者的登陆帐号而并不允许你在远程的计算机上面运行一个所谓的客户端程序让你通过程序来完成重启远程计算机不知道你是否感觉有些困难了其实按照上面的这些条件实现重启远程计算机利用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控制给我们带来的各种方便
二.程序设计和运行的环境设置
()视窗服务器版
() Net FrameWork SDK Beta
()远程计算机的管理者帐号
以上这些不仅是本地计算机配置还是远程计算机的配置
三.实现重启远程计算机所使用到在Net FrameWork SDK Beta 用以操作WMI名称空间和类
在Net FrameWork SDK Beta 中用来操作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 ;
public class Form : Form
{
private TextBox textBox ;
private TextBox textBox ;
private TextBox textBox ;
private Label label ;
private Label label ;
private Label label ;
private Button button ;
private SystemComponentModelContainer components = null ;
public Form ( )
{
//初始化窗体中的各个组件
InitializeComponent ( ) ;
}
//清除程序中使用过的资源
protected override void Dispose ( bool disposing )
{
if ( disposing )
{
if ( components != null )
{
componentsDispose ( ) ;
}
}
baseDispose ( disposing ) ;
}
private void InitializeComponent ( )
{
textBox = new TextBox ( ) ;
textBox = new TextBox ( ) ;
textBox = new TextBox ( ) ;
label = new Label ( ) ;
label = new Label ( ) ;
label = new Label ( ) ;
button = new Button ( ) ;
SuspendLayout ( ) ;
textBoxLocation = new SystemDrawingPoint ( ) ;
textBoxName = textBox ;
textBoxSize = new SystemDrawingSize ( ) ;
textBoxTabIndex = ;
textBoxText = ;
textBoxLocation = new SystemDrawingPoint ( ) ;
textBoxName = textBox ;
textBoxSize = new SystemDrawingSize ( ) ;
textBoxTabIndex = ;
textBoxText = ;
textBoxLocation = new SystemDrawingPoint ( ) ;
textBoxName = textBox ;
textBoxPasswordChar = * ;
textBoxSize = new SystemDrawingSize ( ) ;
textBoxTabIndex = ;
textBoxText = ;
labelLocation = new SystemDrawingPoint ( ) ;
labelName = label ;
labelSize = new SystemDrawingSize ( ) ;
labelTabIndex = ;
labelText = 机器名称或IP地址 ;
labelLocation = new SystemDrawingPoint ( ) ;
labelName = label ;
labelTabIndex = ;
labelText = 管理者名称 ;
labelTextAlign = SystemDrawingContentAlignmentTopRight ;
labelLocation = new SystemDrawingPoint ( ) ;
labelName = label ;
labelSize = new SystemDrawingSize ( ) ;
labelTabIndex = ;
labelText = 管理者密码 ;
labelTextAlign = SystemDrawingContentAlignmentTopRight ;
buttonLocation = new SystemDrawingPoint ( ) ;
buttonName = button ;
buttonSize = new SystemDrawingSize ( ) ;
buttonTabIndex = ;
buttonText = 重新启动远程计算机 ;
buttonClick += new SystemEventHandler ( button_Click ) ;
thisAutoScaleBaseSize = new SystemDrawingSize ( ) ;
thisClientSize = new SystemDrawingSize ( ) ;
thisControlsAdd ( button ) ;
thisControlsAdd ( textBox ) ;
thisControlsAdd ( textBox ) ;
thisControlsAdd ( textBox ) ;
thisControlsAdd ( label ) ;
thisControlsAdd ( label ) ;
thisControlsAdd ( label ) ;
thisName = Form ;
thisText = 利用C#重新启动远程计算机 ;
thisResumeLayout(false) ;
}
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\\cimv options ) ;
try {
//用给定管理者用户名和口令连接远程的计算机
scopeConnect ( ) ;
SystemManagementObjectQuery oq = new SystemManagementObjectQuery ( SELECT * FROM Win_OperatingSystem ) ;
ManagementObjectSearcher query = new ManagementObjectSearcher ( scope oq ) ;
//得到WMI控制
ManagementObjectCollection queryCollection = queryGet ( ) ;
foreach ( ManagementObject mo in queryCollection )
{
string [ ] ss= { } ;
//重启远程计算机
moInvokeMethod ( Reboot ss ) ;
}
}
//报错
catch ( Exception ee ) {
MessageBoxShow ( 连接 + textBoxText + 出错出错信息为 + eeMessage ) ;
}
}
}
下图是编译上面代码后得到的程序运行界面
screenwidth)thisstylewidth=screenwidth; border=>
图用C#实现重启远程计算机的程序运行界面
六.总结
其实WMI控制可以实现很多以前让我们很头痛的操作并且使用WMI编写的管理程序也比不用WMI来实现同样功能的程序在设计难度上大大减轻WMI内容十分丰富重新启动远程计算机只是其中的一个最为基本的操作在使用WMI控制之前有一点必须记住就是你必须知道你所要进行操作的远程计算机的超级管理者的帐号这是使用WMI的一个前提