Batch file to run two v4 instances

Hi,

I’m trying to make a simple batch file to run two instances of vvvv. Then load a first patch on the first instance, and a second patch on the second instance without sucess.

This start the two instances

start C:\Progra~1\vvvv_45beta27.2\vvvv.exe /allowmultiple
start C:\Progra~1\vvvv_45beta27.2\vvvv.exe /allowmultiple

But then how to open the two .v4p ?

Thanks in advance for your help

try
/o patch1.v4p
/o patch2.v4p

start vvvv.exe /o "your_patch_here.v4p" /allowmultiple

edit: meh, too late…

Thanks a lot Joreg !

Fast, easy, working great. I like that :)

So a complete example batch :

start C:\Progra~1\vvvv_45beta27.2\vvvv.exe /allowmultiple /o C:\Users\L412\Desktop\callmenames1.v4p
start C:\Progra~1\vvvv_45beta27.2\vvvv.exe /allowmultiple /o C:\Users\L412\Desktop\callmenames2.v4p

EDIT :
Thanks to m4d too !

1 Like