wmi没有执行该过程

时间:2013-01-13 10:54:09

标签: c# wmi remote-access remote-desktop wmi-service

好吧,我正试图在远程计算机上运行“notepad”(例如),这是我的代码:

object[] theProcessToRun = { "notepad.exe" };
ConnectionOptions theConnection = new ConnectionOptions();
theConnection.Username = "My UserName";
theConnection.Password = "My Password";
ManagementScope theScope = new ManagementScope("\\\\" + ipAddress + "\\root\\cimv2", theConnection);
ManagementClass theClass = new ManagementClass(theScope, new ManagementPath("Win32_Process"), new ObjectGetOptions());
theClass.InvokeMethod("Create", theProcessToRun);

(我可以连接到远程计算机)。 没有任何反应 - 程序正确退出,但遥控器上没有任何东西运行。

有什么想法吗?

谢谢!

0 个答案:

没有答案