只需在windows中的.bat文件中

时间:2014-05-07 08:42:40

标签: batch-file

我从网络位置创建了安装文件的脚本。 但是,我需要修改命令行的输入。

set num=
set /p num=Enter your choose: 
if "%num%"=="1" goto installJabber
if "%num%"=="2" goto installTimer
if "%num%"=="3" goto installVMWare
if "%num%"=="4" goto installOffice

如何写“if”%num“”不是1或2或3或4然后退出?

1 个答案:

答案 0 :(得分:1)

....
if "%num%"=="4" goto installOffice
goto :eof

:eof被批处理识别为批处理文件的结尾'。结肠是必需的。