How to run another Unreal Program through Unreal

Not sure if this can be done via Blueprint so hopefully you’re using C++.

Take a look at FPlatformProcess.

FString PathToExecutable = TEXT("/PATH/TO/EXECUTABLE");
FPlatformProcess::CreateProc(*PathToExecutable, NULL, true, false, false, NULL, 0, NULL, NULL);