win32_process.create不显示窗口

时间:2013-07-08 10:40:10

标签: c# win32-process


我正在尝试使用C#在远程计算机上创建进程。

我得到了所有需要的参数,我实际上成功地运行了这个过程,但我看不到窗口。
例如,这里我正在尝试运行记事本进程,但没有窗口显示,只有任务管理器中的notepad.exe进程。

    public void ExecuteOnRemote(string username, string password)
    {
        ConnectionOptions connOptions = new ConnectionOptions 
                                        { 
                                            Impersonation = ImpersonationLevel.Impersonate, 
                                            EnablePrivileges = true,
                                            Username = username,
                                            Password = password
                                        };

        ManagementScope scope = new ManagementScope(@"\\remoteMachineName\root\cimv2", connOptions);
        scope.Connect();

        ObjectGetOptions options = new ObjectGetOptions();

        // Getting the process class and the process startup class
        ManagementPath processClassPath = new ManagementPath("Win32_Process");
        ManagementPath processStartupClassPath = new ManagementPath("Wind32_ProcessStartup");

        ManagementClass processClass = new ManagementClass(scope, processClassPath, options);
        ManagementClass processStartupClass = new ManagementClass(scope, processStartupClassPath, options);

        // Settings the show window parameter in for a process startup class instance
        ManagementObject processStartupInstance = processStartupClass.CreateInstance();
        processStartupInstance["ShowWindow"] = 1; // A const value for showing the window normally

        // Settings the parameters for the Create method in the process class
        ManagementBaseObject inArgs = processClass.GetMethodParameters("Create");
        inArgs["CommandLine"] = "notepad.exe";
        inArgs["ProcessStartupInformation"] = processStartupInstance;

        // Invoking the method
        ManagementBaseObject returnValue = processClass.InvokeMethod("Create", inArgs, null);
    }

我的猜测是我发送的ProcessStartupInformation参数错误,但我仍然无法弄清楚问题出在哪里。
任何帮助,将不胜感激。
非常感谢,Alex。

2 个答案:

答案 0 :(得分:2)

Microsoft禁止此明确

http://msdn.microsoft.com/en-us/library/aa389388(v=vs.85).aspx

  

出于安全原因,不能使用Win32_Process.Create方法   远程启动交互式流程。

答案 1 :(得分:1)

ManagementPath processStartupClassPath = new ManagementPath("Win32_ProcessStartup");

你在那里打错了。