I have a simple batch file that sets some necessary per-session path information and then launches an application:
SET PATH=%PATH%;C:\Qt\473_x64\lib;C:\Qt\jom
start C:\Qt\qt_creator_220_x64\bin\qtcreator.exe
It is working fine except that it keeps open a ghost command window. This command windows shuts down when the application shuts down. To be clear, the command window that comes up when I initially double-click the batch file closes. It is a new window that opens up. How do I prevent this second window from displaying? I would like to just double-click on a short cut to the batch file and it open the application as if I had double-clicked on the application itself. (Plus, of course, setting the necessary path information.)