3

我正在使用特殊的用户、域和密码启动进程。尽管我告诉 C# 隐藏控制台窗口,但它会显示出来。

这是我的代码:

Process process = new Process();
process.StartInfo.RedirectStandardOutput = true;
process.StartInfo.RedirectStandardError = true;
process.StartInfo.UseShellExecute = false;
process.StartInfo.CreateNoWindow = true;
process.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;

process.StartInfo.UserName = strUsername;
process.StartInfo.Domain = strDomain;
process.StartInfo.Password = secPassword;

process.StartInfo.FileName = "PsExec.exe";
process.StartInfo.Arguments = @"/accepteula -s \\" + strServername + @"program.exe";
process.Start();
process.WaitForExit();

我可以在另一个论坛中找到一些提示:

如果在设置 ProcessStartInfo..::.UserName 和 ProcessStartInfo..::.Password 属性的情况下调用 Start(ProcessStartInfo) 方法,则会调用非托管 CreateProcessWithLogonW 函数,即使 CreateNoWindow 属性值也会在新窗口中启动进程为 true 或 WindowStyle 属性值为 Hidden。

其实,我对这个说法并不满意……

提前致谢。

干杯亚历克斯

4

3 回答 3

1

毕竟,使用进程类是不可能隐藏这个 psexec 控制台窗口的。没有必要使用 psexec。我改用 WMI 的东西:

ConnectionOptions remoteConnectionOptions = new ConnectionOptions();
remoteConnectionOptions.Impersonation = ImpersonationLevel.Impersonate;
remoteConnectionOptions.EnablePrivileges = true;
remoteConnectionOptions.Authentication = AuthenticationLevel.Packet;
remoteConnectionOptions.Username = strDomain + @"\" + strUsername;
remoteConnectionOptions.SecurePassword = secPassword;

ManagementScope scope = new ManagementScope(@"\\" + strServername + @"\root\CIMV2", remoteConnectionOptions); ManagementPath p = new ManagementPath("Win32_Process");

ManagementClass classInstance = new ManagementClass(scope, p, null); object[] theProcessToRun = { "myExecutable.exe" };

classInstance.InvokeMethod("Create", theProcessToRun);
于 2013-10-24T12:01:38.707 回答
1
            using (Process LMUTIL = new Process())
            {
                string arg1 ="argument"
                LMUTIL.StartInfo.FileName = "program.exe";
                LMUTIL.StartInfo.Arguments = arg1
                LMUTIL.StartInfo.UseShellExecute = false;
                LMUTIL.StartInfo.RedirectStandardOutput = true;
                LMUTIL.StartInfo.CreateNoWindow = true;
                LMUTIL.EnableRaisingEvents = true;
                LMUTIL.OutputDataReceived += p_WriteData;
                LMUTIL.Start();
                LMUTIL.BeginOutputReadLine();
            }

    private void p_WriteData(object sender, DataReceivedEventArgs e)
    {
        if (e.Data != null)
        {
           Debug.WriteLine(e.Data.ToString());
        }
    }

我直接从一个可以满足您需要的项目中提出这个问题。订阅 p_WriteData 事件以捕获将出现在命令窗口中的内容。

于 2013-10-18T12:27:13.610 回答
1

据我所知,这个问题有解决方法。您可以使用参数启动隐藏的 cmd。像这样的东西:

 ProcessStartInfo psi = new ProcessStartInfo("cmd.exe", String.Format("/accepteula -s \\{0}program.exe", strServername));
 psi.UseShellExecute = false;
 psi.CreateNoWindow = true;
 Process.Start(psi);
于 2013-10-18T10:25:56.880 回答