I have this command line that I type in cmd all the time and I want to automate it as a .bat file
E:\Programas\Steam\steamapps\common\Victoria 2>v2game -mod=mod/NameMod.mod
I tried several variations of this:
echo off
start "E:\Programas\Steam\steamapps\common\Victoria 2\v2game.exe -mod=mod/NameMod.mod"
But either I can't open the program or it doesn't load the tag that I want in the end.
I'd appreciate it if you tell me what's the correct synthaxis. Thanks!