Hi designone, I think I know, what's wrong in here. You start FP with this command line: cmd.exe /c C: Future Pinball.exe /play "C:\Emulators\Future Pinball\Tables\Elvis Stern_1_1_night.fpt" /play /exit Let's analyze this ! "cmd.exe" starts a command line process, which starts FP. The parameter /c means "terminate command process after execution", and that is the main problem ! PinballX waits for the termination of the started process (normally Future Pinball.exe) and then returns to table selection menu, BUT... the started process (and recognized process by PinballX) is the command line process (cmd.exe), which terminates immediately after starting FP, and not "Future Pinball.exe" as intended. Solution: Start FP without cmd /c, and everything should work flawlessly. best regards