Why doesn't "call" work in a Windows 7 batch file?

Solution 1:

Call is not for running other programs like that, it is strictly for calling other batch files. You probably want start if your program starts another window, else just type the command by itself on one line.

e.g.

start calc.exe
"C:\Stuff\Program.exe"