0

我创建了一个 Windows 服务,我从中调用 cmd.exe 但我不知道它是否被调用,请提出一些答案

    ProcessStartInfo info = new ProcessStartInfo(@"c:\windows\system32\cmd.exe");
            info.UseShellExecute = false;
            info.RedirectStandardError = true;
            info.RedirectStandardInput = true;
            info.RedirectStandardOutput = true;
            info.CreateNoWindow = true;
            info.ErrorDialog = false;
            info.WindowStyle = ProcessWindowStyle.Hidden;

            Process process = Process.Start(info); 
4

1 回答 1

0

Windows 服务位于 svchost.exe 中

于 2013-06-08T07:36:05.500 回答