最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
C#简单实现的远程命令程序
时间:2022-07-02 11:08:25 编辑:袖梨 来源:一聚教程网
private void button1_Click(object sender, System.EventArgs e)
{
ConnectionOptions opt=new ConnectionOptions();
opt.Username=UserBox.Text;
opt.Password=PassBox.Text;
ManagementScope scope=new ManagementScope(""+IPbox.Text+"rootcimv2",opt);
try
{
scope.Connect();
ObjectGetOptions o = new ObjectGetOptions();
ManagementPath path=new ManagementPath("Win32_Process");
ManagementClass processClass = new ManagementClass(scope,path,o);
ManagementBaseObject inParams = processClass.GetMethodParameters("Create");
inParams["CommandLine"] = CommandBox.Text;
ManagementBaseObject outParams = processClass.InvokeMethod ("Create", inParams, null);
}
catch(Exception ee)
{
MessageBox.Show(ee.Message,"Error");
}
}
private void button2_Click(object sender, System.EventArgs e)
{
Application.Exit();
}
}
{
ConnectionOptions opt=new ConnectionOptions();
opt.Username=UserBox.Text;
opt.Password=PassBox.Text;
ManagementScope scope=new ManagementScope(""+IPbox.Text+"rootcimv2",opt);
try
{
scope.Connect();
ObjectGetOptions o = new ObjectGetOptions();
ManagementPath path=new ManagementPath("Win32_Process");
ManagementClass processClass = new ManagementClass(scope,path,o);
ManagementBaseObject inParams = processClass.GetMethodParameters("Create");
inParams["CommandLine"] = CommandBox.Text;
ManagementBaseObject outParams = processClass.InvokeMethod ("Create", inParams, null);
}
catch(Exception ee)
{
MessageBox.Show(ee.Message,"Error");
}
}
private void button2_Click(object sender, System.EventArgs e)
{
Application.Exit();
}
}
相关文章
- 开放空间宁蒙有什么技能 09-15
- 小鸡舰队出击天空首领活动怎么玩 09-15
- 魔法工艺套装如何解锁使用 09-15
- 三国群英传策定九州资源地有什么打法技巧 09-15
- 下一站江湖2马夫人任务怎么完成 09-15
- 小鸡舰队出击终焉灵王队伍如何搭配 09-15