@echo off
cd "G:\Stuff\Util"
start launch.bat
cd "G:\Stuff"
for /L %%a in (1,1,10) do (
Start batch2.bat
exit 0
)
^my code
I need to know how to make my batch file run those others on different PCs. When I plug in it a different pc, the drive letter may change. How do I solve this?