0

So, i need to call multiple batch files, each containing one variable, all at once, so i can activate multiple variables at once.

Can you help me? If it is possible, what's the code for it?

Swillfreat
  • 89
  • 3
  • 9

1 Answers1

2

just have to: CALL another_file.bat

Helio Santos
  • 6,606
  • 3
  • 25
  • 31
  • Yes, but is it possible to have them called and runned at once, in one window? – Swillfreat May 19 '13 at 10:09
  • In Windows 10, the command that works for me is this: `start "Window title" /wait cmd /k call something.bat`. see [this answer](https://stackoverflow.com/a/12136538/3380951) – XoXo Mar 29 '21 at 17:23