当你直到对方电脑的IP地址,你可以通过C#中的WMI实现远程重启、关机或注销系统,附加代码如下:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Management;//需要在解决方案管理器中的项目中的引用中引用System.Management
namespace RemoteClose
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
//关机按钮
private void btnOk_Click(object sender, EventArgs e)
{
ConnectionOptions co = new ConnectionOptions();
co.Username = "Administrator";//远程电脑用户名
co.Password = "123456";//远程电脑密码
System.Mana