Cannot load to full screen (using BAT file)

JOSHSKORN

New Member
I'm new to OBS. I've created a batch file to open up OBS with my video source. To be honest, I'm not even sure my batch file is correct, with or without adding the name of my capture device to the code, the page opens up to the same thing. What I'd like to get to, just accessing it and automatically going to full screen. I managed to do it with VNC, but the picture quality was terrible compared to OBS.

Code:
cd "C:\Program Files\obs-studio\bin\64bit\
start "FURUI" obs64.exe

What can I do to achieve this? I did try to save projectors on exit, but this didn't help me at all.
 

foczy

New Member
You can use the /max parameter to open OBS maximized.
start /max /d "C:\Program Files\obs-studio\bin\64bit" "" obs64.exe
You can also pass launch parameters to OBS. For example, I start the virtual camera automatically:
start /max /d "C:\Program Files\obs-studio\bin\64bit" "" obs64.exe --startvirtualcam
 
Top