difference between running another batch script by its name and by using call
You can invoke another batch script from a batch script like this: rem a.bat echo helloa1 b.bat echo helloa2 rem b.bat echo hellob1 exit /b echo hellob2 Here, the batch script a.bat […]
