How do I run a bat file in the background from another bat file?
Two years old, but for completeness… Standard, inline approach: (i.e. behaviour you’d get when using & in Linux) START /B CMD /C CALL “foo.bat” [args […]] Notes: 1. CALL is paired with the .bat file because that where it usually goes.. (i.e. This is just an extension to the CMD /C CALL “foo.bat” form to … Read more