使用WMI在远程系统上调用应用程序(具有参数的自定义应用程序)

时间:2014-03-12 05:33:19

标签: c# wmi remote-access

我有一个自定义应用程序安装或其他系统&我想在没有任何批处理文件的情况下使用WMI C#从该系统调用它。

此外,该应用程序具有运行命令参数。那么,任何人都可以指导我编码的代码吗?

我已经尝试了一些我在这里粘贴的内容(代码片段)供您参考,以便在运行Notepad.exe或Calc.exe时正常工作。 事实上,它也适用于我的自定义应用程序,没有参数,但没有参数。当我通过论证时,它开始& 2秒后杀死。这意味着它不能以正确/适当的格式传递参数。

private static uint CreateProcess(ManagementScope connectionScope, string exeWithPathAndArguments)
    {
        try
        {
            var objectGetOptions = new ObjectGetOptions();
            ManagementPath processPath = new ManagementPath("Win32_Process");

            using (var processTask = new ManagementClass(connectionScope, processPath, objectGetOptions))
            {
                using (var methodInParams = processTask.GetMethodParameters("Create"))
                {
                    methodInParams["CommandLine"] = exeWithPathAndArguments;
                    using (var methodOutParams = processTask.InvokeMethod("Create", methodInParams, null))
                    {
                        var err = (uint)methodOutParams["returnValue"];
                        if (err != 0)
                        {
                            var info = "see http://msdn.microsoft.com/en-us/library/windows/desktop/aa389388(v=vs.85).aspx";
                            switch (err)
                            {
                                case 2: info = "Access Denied"; break;
                                case 3: info = "Insufficient Privilege"; break;
                                case 8: info = "Unknown failure"; break;
                                case 9: info = "Path Not Found"; break;
                                case 21: info = "Invalid Parameter"; break;
                                default: info = "Unknown(Code)"; break;
                            }

                            var msg = "Failed to Start the Process, error = " + methodOutParams["returnValue"] + " (" + info + ")";
                            throw new Exception(msg);
                        }

                        return (uint)methodOutParams["processId"];
                    }
                }
            }
        }
        catch (Exception ex)
        {
            throw ex;
        }
    }

我已经了解PSExec,但我不想使用它。同时我不想使用批处理文件来运行我的命令。只想使用直接命令传递方式来运行应用程序。 我的应用程序位置不在PATH目录中。所以,显然我需要提供像...这样的完整路径。

CreateProcess(connectionScope,exeWithPathAndArguments.Trim()); 其中exeWithPathAndArguments为“/”C:\ Program files(x86)\ Company \ Application Folder \ app.exe /“ - argsName argvalue”

1 个答案:

答案 0 :(得分:0)

添加methodInParams["CurrentDirectory"] = wheretostartapp;并删除-argsName

所以你的exeWithPathAndArguments将是:

\"C:\\\\Program files (x86)\\\\Company\\\\Application Folder\\\\app.exe\" argvalue