当前位置:  开发笔记 > 开发工具 > 正文

如何从Windows命令行获取应用程序退出代码?

如何解决《如何从Windows命令行获取应用程序退出代码?》经验,为你挑选了6个好方法。

我正在运行一个程序,想看看它的返回代码是什么(因为它根据不同的错误返回不同的代码).

我知道在Bash中我可以通过运行来做到这一点

回声$?

在Windows上使用cmd.exe时该怎么办?



1> DrFloyd5..:

名为errorlevel存储退出代码的伪环境变量:

echo Exit Code is %errorlevel%

此外,该if命令具有特殊语法:

if errorlevel

详情if /?请见.

@echo off
my_nify_exe.exe
if errorlevel 1 (
   echo Failure Reason Given is %errorlevel%
   exit /b %errorlevel%
)

警告:如果设置环境变量名称errorlevel,%errorlevel%将返回该值而不是退出代码.使用(set errorlevel=)清除环境变量,允许errorlevel通过%errorlevel%环境变量访问真值.


如果您直接从Windows命令行运行并且始终看到0返回,请参阅Gary的回答:http://stackoverflow.com/a/11476681/31629
注意:如果errorlevel> = 1,则"errorlevel 1"为true.因此"errorlevel 0"将匹配所有内容.看看 /?".相反,您可以使用"if%ERRORLEVEL%EQU 0(..)".
此外,如果您在powershell中,您可以使用`echo Exit Code是$ LastExitCode`

2> Gary..:

测试ErrorLevel适用于控制台应用程序,但正如dmihailescu暗示的那样,如果您尝试从命令提示符运行窗口化应用程序(例如基于Win32),则无法运行.窗口化应用程序将在后台运行,控件将立即返回到命令提示符(很可能ErrorLevel为零,表示该过程已成功创建).当窗口化应用程序最终退出时,其退出状态将丢失.

但是,更简单的替代方法是使用命令提示符的START /WAIT命令启动窗口化应用程序,而不是使用其他地方提到的基于控制台的C++启动程序.这将启动窗口化应用程序,等待它退出,然后将控制权返回到命令提示符,并设置进程的退出状态ErrorLevel.

start /wait something.exe
echo %errorlevel%


非常感谢"START /等待"的想法.这对我有用:)
很好的抓住.我不知道那个命令.我刚刚看到它工作>启动/等待notepad.exe

3> Adam Rosenfi..:

使用内置的ERRORLEVEL变量:

echo %ERRORLEVEL%

但要注意应用程序是否定义了名为ERRORLEVEL的环境变量!


@SteelBrain:它在PowerShell中称为`$ LastExitCode`.
它不是一个实际的环境变量(显然,如果*是*以这种方式命名的变量,它就会停止工作).
请注意它在powershell中不起作用

4> Curtis Yallo..:

如果要精确匹配错误代码(例如等于0),请使用:

@echo off
my_nify_exe.exe
if %ERRORLEVEL% EQU 0 (
   echo Success
) else (
   echo Failure Reason Given is %errorlevel%
   exit /b %errorlevel%
)

if errorlevel 0匹配errorlevel> = 0.见if /?.



5> dmihailescu..:

使用未附加到控制台的程序时,它可能无法正常工作,因为当您认为有退出代码时,该应用程序可能仍在运行.用C++实现它的解决方案如下所示:

#include "stdafx.h"
#include "windows.h"
#include "stdio.h"
#include "tchar.h"
#include "stdio.h"
#include "shellapi.h"

int _tmain( int argc, TCHAR *argv[] )
{

    CString cmdline(GetCommandLineW());
    cmdline.TrimLeft('\"');
    CString self(argv[0]);
    self.Trim('\"');
    CString args = cmdline.Mid(self.GetLength()+1);
    args.TrimLeft(_T("\" "));
    printf("Arguments passed: '%ws'\n",args);
    STARTUPINFO si;
    PROCESS_INFORMATION pi;

    ZeroMemory( &si, sizeof(si) );
    si.cb = sizeof(si);
    ZeroMemory( &pi, sizeof(pi) );

    if( argc < 2 )
    {
        printf("Usage: %s arg1,arg2....\n", argv[0]);
        return -1;
    }

    CString strCmd(args);
    // Start the child process. 
    if( !CreateProcess( NULL,   // No module name (use command line)
        (LPTSTR)(strCmd.GetString()),        // Command line
        NULL,           // Process handle not inheritable
        NULL,           // Thread handle not inheritable
        FALSE,          // Set handle inheritance to FALSE
        0,              // No creation flags
        NULL,           // Use parent's environment block
        NULL,           // Use parent's starting directory 
        &si,            // Pointer to STARTUPINFO structure
        &pi )           // Pointer to PROCESS_INFORMATION structure
    ) 
    {
        printf( "CreateProcess failed (%d)\n", GetLastError() );
        return GetLastError();
    }
    else
        printf( "Waiting for \"%ws\" to exit.....\n", strCmd );

    // Wait until child process exits.
    WaitForSingleObject( pi.hProcess, INFINITE );
    int result = -1;
    if(!GetExitCodeProcess(pi.hProcess,(LPDWORD)&result))
    { 
        printf("GetExitCodeProcess() failed (%d)\n", GetLastError() );
    }
    else
        printf("The exit code for '%ws' is %d\n",(LPTSTR)(strCmd.GetString()), result );
    // Close process and thread handles. 
    CloseHandle( pi.hProcess );
    CloseHandle( pi.hThread );
    return result;
}



6> 小智..:

值得注意的是.BAT和.CMD文件的操作不同。

阅读https://ss64.com/nt/errorlevel.html时,请注意以下几点:

.CMD和.BAT批处理文件设置错误级别的方式之间有一个关键区别:

运行“新”内部命令:APPEND,ASSOC,PATH,PROMPT,FTYPE和SET的旧的.BAT批处理脚本仅在发生错误时设置ERRORLEVEL。因此,如果批处理脚本中有两个命令,而第一个命令失败,则即使第二个命令成功后,ERRORLEVEL仍将保持设置状态。

这会使调试问题的BAT脚本更加困难,CMD批处理脚本更加一致,并且在您运行[source]的每个命令后都会设置ERRORLEVEL。

当我执行连续的命令时,这没有使我感到悲伤,但是即使发生故障,ERRORLEVEL仍然保持不变。

推荐阅读
帆侮听我悄悄说星星
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有