Sign in with
Sign up | Sign in
Your question

How to add Launch Options to an .exe in a batch file?

Tags:
  • Apps
  • .bat
  • Games
  • x86
  • Batch
August 28, 2014 5:17:15 AM

Let's say I'm trying to force a game to use windowed mode using a shortcut.
So the shortcut's target would be:
" "C:\Program Files (x86)\example\example.exe" -w "
So, how should I start the program from a batch file, like that?

I've made it this 'far'.

rem ExampleGame
cd "C:\Program Files (x86)\example"
start example.exe


What should I do next?
Thanks!

More about : add launch options exe batch file

!