Consider two bat files.
outer.bat
echo Before
inner.bat
echo After
inner.bat
echo Inner
goto :eof
When I execute outer.bat "After" is not echoed. So "goto :eof" in the inner script terminates the outer script.
Can I rewrite outer.bat to continue execution after calling inner.bat without modifying inner.bat?