我必须在 cmd 窗口中启动一个进程。但是在所示的情况下,由于某些错误 cmd 窗口只是闪烁,我看不到会发生什么。如果 cmd 窗口在某些按键或类似操作之前一直打开,那将是最好的。
Dim q As String = Chr(34)
Dim p As New Process
With p.StartInfo
.FileName = q & whereis7z & "\7z.exe" & q
.Arguments = " e " & q & tempArch & fNameStr & q & " -y"
.WindowStyle = ProcessWindowStyle.Normal
.CreateNoWindow = False
.WorkingDirectory = tempArch
Debug.Print(.FileName & .Arguments)
End With
p.Start()
If p.ExitCode <> 0 Then
MsgBox(p.ExitCode, MsgBoxStyle.Critical)
End If
这里有什么方法可以让 cmd 窗口保持打开状态,直到按键来查看我的“StartInfo”有什么问题,因为“ExitCode”还不够。