bat文件:命令dos在执行后退出dos

时间:2011-04-06 15:15:55

标签: batch-file dos

我想编辑一个bat文件,其中我设置了某些系统变量,以便在修改完成后关闭dos。

2 个答案:

答案 0 :(得分:1)

你可以尝试命令

exit

这应关闭dos /命令窗口。

答案 1 :(得分:1)

这个有多少想法......

TITLE My batch file
:: content here
GOTO :END
:END
FOR /l %%a in (30,-1,1) do (TITLE %TITLE% -- Closing in %%as&ping -n 2 -w 1 127.0.0.1>NUL)
:: then, explicit exit (not required)
exit /B 1 >nul