Difference between the two .exe files once packaged?

Hey all,

I’m building/packaging projects for the first time and when I package my project (for development) I get two different .exe files found in:
WindowsNoEditor>YourProjectName.exe
and
WindowsNoEditor>YourProjectName>Binaries>YourTargetPlatform>YourProjectName.exe

I realise the latter is the expected build in the destination path described in the documentation, and is considerably larger in size than the other one. They both run smoothly so just wondering what the other one found in the WindowsNoEditor file is for?

I couldn’t find anything in the documentation about this so perhaps I’m doing something wrong and I shouldn’t be getting two files…

This particular project was built using 4.15.3 for Windows64.

Thanks :slight_smile:

The exe in the root of WindowsNoEditor is the Bootstrap executable. It should be there. Running that launches the exe inside YourProjectName/Binaries and does some sanity checks. It also appends the commandline when running.

1 Like

Ah ok, thanks :slight_smile:

Bump!
@terry_burns85, do you know what sanity checks are performed as part of the outer executable?