Question / Help Batch Start

EvilTaiga

New Member
Hey,
I tried to start OBS with a .bat, with obs classic it is no problem but with studio popup a window with "Failed to find locale/en-US.ini" and "Failed to load locale".
I use the same file as the shortcut on the desktop, anyone a idea why I got the failure message?

If something wrong, sorry for that, my english isn't very good :/
 
You need to specify the correct current directory. If you're using a batch file, this means something like this at the start:

cd "C:\Program Files (x86)\obs-studio\bin\64bit"
 
I found that as well as having to CD to the directory, I needed to make sure first that the drive that was active the correct one. It's no good us CD if you're not even on the right drive to start with :)
I also use a little utility to change my screen res automatically after I just recorded a 20+ minute tutorial at the wrong resolution this morning. :(

So this is in my working (Win10) BAT:

ChangeScreenResolution /w=1920 /h=1200 /d=0
c:
cd "C:\Program Files (x86)\obs-studio\bin\64bit\"
start "" "C:\Program Files (x86)\obs-studio\bin\64bit\obs64.exe"
 
Back
Top