轻松查看dos命令返回码的方法

时间:2010-03-26 08:07:55

标签: windows cmd errorlevel return-code

有时我在cmd中运行命令,例如:

fc / b file1 file2

并希望看到来自fc的返回码。有一种简单的方法可以做到这一点吗?

1 个答案:

答案 0 :(得分:61)

echo %ERRORLEVEL%

来自TechNet,Command shell overview“%ERRORLEVEL%...返回最近使用的命令的错误代码。非零值通常表示错误。”

要测试批处理文件中的特定错误级别,您可能会发现this knowledgebase article有用。