好吧,我正试图在远程计算机上运行“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);
(我可以连接到远程计算机)。 没有任何反应 - 程序正确退出,但遥控器上没有任何东西运行。
有什么想法吗?
谢谢!