Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
cd "D:\TALEND~1\Talend\tac\APACHE~1\bin"
if exist "startup.bat" (
startup.bat
goto end
)
if exist "bootstrap.jar" (
java -jar bootstrap.jar org.apache.catalina.startup.Bootstrap start
goto end
)
:end
cd "D:\TALEND~1\Talend\tac\APACHE~1\bin"
cd "D:\TALEND~1.3\Talend\tac\APACHE~1\bin"
cd "D:\TALEND~1.3\tac\APACHE~1\bin"
I found the solution in this bugtracker ticket: http://www.talendforge.org/bugs/view.php?id=0022670
Source of the problem is installing on D:. Scripts need to be modified to change drive letter correctly, just doing cd d:\....\ is not enough, you need to do
d:
cd d:\...\
Thanks for you help.