如何在另一个程序之后运行程序返回true

时间:2012-11-03 11:01:03

标签: exe

我有2个exe文件。 file1.exe file2.exe 。我需要一个包含前两个文件的 file3.exe 。运行 file3 时, file1 会运行,如果 file1 返回true, file2 将会运行。我怎么能这样做?

1 个答案:

答案 0 :(得分:2)

如果是.bat文件

file1.exe
IF NOT ERRORLEVEL 0 GOTO error1
file2.exe
:error1