Till now, I have two batch files of Jboss and and 6 batch files of utility and I am starting and close all batch batch files by operating with one batch files. Now I want to generate some system so that I can go and restrt all this required batch files in one click. Please suggest me so that I can develope this system.
@echo off
echo Restarting all batch files...
:: Start each batch file in a new command prompt window
start "JBOSS1_A" "E:installationJBOSS_EAP_7.2binstandalone.bat"
start "JBOSS2_A" "E:installationJBOSS_EAP_7.2_2binstandalone.bat"
echo All batch files have been restarted.
pause
I tired above thing, it was restrting above both but its i am not getting its impact.
New contributor
Aman Singh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.