2014-02-25 164 views
0

在一些.bat文件我有以下行蝙蝠腳本cmd以console2

start "tomcat product" cmd /K mvn tomcat7:run %ENV_PARAMS% -P%MAVEN_PROFILE% 

我想改變它,而不是使用CMD但沒有運氣console2。

任何人都可以幫助我嗎?

回答

0

我知道晚了一點,但如果有人仍然需要:

要console2使用內啓動一個程序 Console.exe -r program.exe

如果您需要在console2的特定標籤運行使用-t參數與您的選項卡名稱。

-t <tab name> 
Specifies a startup tab. Tab must be defined in Console settings. 

-r <command> 
Specifies a startup shell command. 

Example.bat:

這叫做 cmd的選項卡中打開的notepad.exe
"C:\Program Files (x86)\Console2\Console.exe" -r "/K notepad.exe" -t "cmd" 

運行console2。