Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何获取运行命令的返回状态,同时将任何消息输出到空值。
现在我有
{command} | out-null
不过,我想获得该$?命令的返回状态。无论如何要这样做?
$?
谢谢
根据要求,这是我的评论作为答案...我猜 $LastExitCode 仍将保留退出代码;根据经验,使用 $? 用于 CMDLets 和用于外部应用程序的 $LastExitCode。
退出 $LastExitCode
您将使用echo %errorlevel%在 Windows CLI 上获得以上返回码 。您也可以像这样返回自定义错误代码 -退出 84