Batch file

hello,
looking for some batch file advice.

what i want:
start vvvv (in a project folder), no absolute path declaration, setting startup arguments.

solution so far: creating a batch file
downside: cmd line window stays open

someone got such a batch file up and running, that starts vvvv and then closes itself? ‘exit’ command doesn’t do the trick…

(don’t want to use args.txt and windows shortcut doesn’t work with relative path declarations).

thnx.

ps…

this:

{CODE(ln=>1)}@echo off
call “cmd /c start vvvv\vvvv.exe /r …\patches_root.v4p”
exit{CODE}

does the trick so that the command line window closes,
but startup arguments are ignored.

ps…

this:

{CODE(ln=>1)}@echo off
call “cmd /c start vvvv\vvvv.exe /r …\patches_root.v4p”
exit^

does the trick so that the command line window closes,
but startup arguments are ignored.

woei just provided the solution: simple:

{CODE(ln=>1)}start vvvv\vvvv.exe /r …\patches_root.v4p{CODE}

woei just provided the solution: simple:

{CODE(ln=>1)}start vvvv\vvvv.exe /r …\patches_root.v4p^