WMI не выполняет процесс
Ну, я пытаюсь запустить "блокнот" (например) на удаленном компьютере, вот мой код:
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);
(Я могу подключиться к удаленному компьютеру). Ничего не происходит - программа завершается корректно, но на пульте ничего не запускается.
Есть идеи?
Спасибо!