在过程中保持命令窗口打开错误

时间:2013-12-09 16:26:12

标签: vb.net visual-studio-2010 debugging command-line process

好的,下面的当前代码是我如何调用进程。该进程未正确运行(导致错误),因此在我有机会查看错误之前快速打开命令行并关闭它。很可能是我正在使用的几个论点。

   Using psinfo As New Process
      psinfo.StartInfo.FileName = Arg1
      psinfo.StartInfo.Arguments = Arg2 + Arg3 + Arg4 + Arg5
      psinfo.StartInfo.WindowStyle = ProcessWindowStyle.Normal
      psinfo.Start()
      psinfo.WaitForExit()
   End Using

我可以保留此窗口或暂停或任何其他内容以便查看错误是什么吗?

我是否应该使用常规做法在流程中查找错误?

0 个答案:

没有答案