N3ONⱣɄNƘ Posted February 14, 2022 Share Posted February 14, 2022 (edited) Hello, I am having some issues when I launch a game using batch files through LaunchBox, the command window stays open. So far it is happening with OpenBor and Triforce platforms. The Triforce cmd window is blank while the OpenBor cmd window says "R:\LaunchBox\Emulators\OpenBOR>echo off 1 file(s) copied. (Example batch files and screenshots are below). Does anyone have a solution? OpenBor @echo off del R:\LaunchBox\Emulators\OpenBOR\Paks\* /Q copy %1 R:\LaunchBox\Emulators\OpenBOR\Paks\ OpenBOR.exe exit Sega Triforce @echo off rem start JoyToKey\JoyToKey.exe start f1button.vbs "..\..\..\emulators\Dolphin Triforce\F-Zero AX\DolphinWX.exe" --exec=".\F-Zero AX.iso" --batch rem TASKKILL /F /IM JoyToKey.exe Edited February 14, 2022 by NiHiLiSTiK Quote Link to comment Share on other sites More sharing options...
JoeViking245 Posted February 14, 2022 Share Posted February 14, 2022 Add start "" in front of the apps you want to execute. ::OpenBor @echo off del R:\LaunchBox\Emulators\OpenBOR\Paks\* /Q copy %1 R:\LaunchBox\Emulators\OpenBOR\Paks\ start "" OpenBOR.exe ::Sega Triforce @echo off rem start JoyToKey\JoyToKey.exe start "" f1button.vbs start "" "..\..\..\emulators\Dolphin Triforce\F-Zero AX\DolphinWX.exe" --exec=".\F-Zero AX.iso" --batch rem TASKKILL /F /IM JoyToKey.exe If you reinstate joy2key, be sure to do there as well. Once you're happy with that and then decide you don't want to see the Command Window popup at all, see here. 1 Quote Link to comment Share on other sites More sharing options...
N3ONⱣɄNƘ Posted February 14, 2022 Author Share Posted February 14, 2022 That worked! Thank you very much! 🥳 1 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.