如何在运行bat文件期间在Windows命令行上传递参数

时间:2016-08-04 10:17:56

标签: batch-file jasperserver

我正在尝试运行bat文件来安装JasperReports Server,示例数据, 和样本数据库。 命令是

D:\Software\Jasper_CE_set_and_war\jasperreports-server-cp-6.0.1-bin\buildomatic>js-install-ce.bat

然后我得到错误

参数太多

Please enter one of the following options: 'EMPTY', minimal, regen-config, drop-db, test
Invalid option specified
Please enter one of the following options: 'EMPTY', minimal, regen-config, drop-db, test

但是当我传递给定参数之一时,它给了我同样的错误。

D:\Software\Jasper_CE_set_and_war\jasperreports-server-cp-6.0.1-bin\buildomatic>js-instal
st
Invalid option specified
Please enter one of the following options: 'EMPTY', minimal, regen-config, drop-db, test

enter image description here

bat文件的内容

@ECHO OFF

rem ///
rem /// JasperReports Server CE installation script.
rem ///
rem /// Usage: js-install-ce.bat {option:(<EMPTY>|minimal|drop-db|regen-config|test)}
rem ///

CALL "bin/do-js-install.bat" ce %%**

只与...一起尝试 CALL&#34; bin / do-js-install.bat&#34; ce %% ** enter image description here 但结果仍然相同。 有什么问题是什么?

0 个答案:

没有答案