我创建了一个 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);