Please 'safe mode or normal mode' alert function ON/OFF toggle add to setting

nexk52

New Member
hi, I'm using OBS ver30.

I don't turn off OBS after a broadcast; I always turn my computer off automatically on a schedule.
And when you turn on your computer, OBS will automatically turn on and start automatically according to the schedule.

However, due to a warning about entering safe mode after the OBS 30 update,
You have to manually click to turn off this notification every time you run the program.

This causes the broadcast to not start automatically according to the schedule I set.
Very uncomfortable.

Please add a feature to settings to allow users to turn safe mode notifications on or off.
Also, if you already have such a feature, please let me know.
 
Just because I didn't exit OBS before I shutdown my PC, I should not be prompted to consider launching the safe mode.
 
Use in command line:
--disable-shutdown-check
This will Disables the unclean shutdown detection that would prompt a safe mode start

"C:\Program Files\obs-studio\bin\64bit\obs64.exe" -portable --disable-shutdown-check
This issue was driving me nuts! THANK YOU SO MUCH for providing the solution!!
 
Use in command line:
--disable-shutdown-check
This will Disables the unclean shutdown detection that would prompt a safe mode start

"C:\Program Files\obs-studio\bin\64bit\obs64.exe" -portable --disable-shutdown-check
I really want to thank you for your help.
 
Doesn't 100% work for me - what is going wrong?

I've tried the following with automator on my Mac mini and I still get the popup asking me to run in safe mode.

The following opens OBS, waits for it to start so API is ready for Companion to load and connect to OBS API.

open -a "OBS" --args --disable-shutdown-check && Sleep 20 && open -a "Companion"
 
Doesn't 100% work for me - what is going wrong?

I've tried the following with automator on my Mac mini and I still get the popup asking me to run in safe mode.

The following opens OBS, waits for it to start so API is ready for Companion to load and connect to OBS API.

open -a "OBS" --args --disable-shutdown-check && Sleep 20 && open -a "Companion"
Hi
Did you resolve this issue on a Mac as I have the same problem? Thanks
 
I've tried this disable shutdown check line with my PC, and it still won't load up. I get the buy icon with my cursor for about 3 seconds and then it doesn't do anything.
 
I had the same annoying behaviour, and I just made a small BAT script.
obs.bat
Code:
cd "C:\Program Files\obs-studio\bin\64bit"
start "" "obs64.exe" "--disable-shutdown-check"
 
cd "C:\Program Files\obs-studio\bin\64bit" start "" "obs64.exe" "--disable-shutdown-check

I had the same annoying behaviour, and I just made a small BAT script.
obs.bat
Code:
cd "C:\Program Files\obs-studio\bin\64bit"
start "" "obs64.exe" "--disable-shutdown-check"
This was the perfect solution for me. I added the batch file to my Win11 start-up and it's working like a charm :)

Thank you.
 
Back
Top