I need to call a windows .bat from another .bat file with parameters.
Can you provide me an example for the same.
I need to call a windows .bat from another .bat file with parameters.
Can you provide me an example for the same.
put this in your main .bat file:
call anotherwinbatfile.bat param1 param2 param3
anotherwinbatfile.bat is the .bat file you want to call and paramX are your parameters.