Skip to content

Instantly share code, notes, and snippets.

@JonahGrimm
Created October 22, 2023 03:09
Show Gist options
  • Save JonahGrimm/89e12023680f6022d281dc5c262d7b21 to your computer and use it in GitHub Desktop.
Save JonahGrimm/89e12023680f6022d281dc5c262d7b21 to your computer and use it in GitHub Desktop.
Run UnrealEngine packaged development executable with log window
:: Ensure the project is packaged using the "Development" configuration
@echo off
:: Change dir to the same directory as this batch file
cd /d "%~dp0"
:: Iterate through all executables in this directory
for %%i in (*.exe) do (
:: Run the executable
start "" "%%i" -log
:: Exit (We only want to run the first .exe we find)
exit /b
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment