I'm using Inno Setup to make installer for my Django webapp created using PyInstaller. Since my application needs a command (command-line console application) to run a server, I wrote a batch script to accomplish that. My problem is I don't want to show console window to end user, I want to make it hidden.
Inno Setup .iss file:
[Run]
Filename: "{app}\cookie_dot.bat"; Description: "Start server"; \
Flags: nowait postinstall runhidden skipifsilent
But it still shows a console window.
For more details, my batch file:
set PATH=%PATH%;C:\cookie_dot\wkhtmltopdf.exe
START "" "http://localhost:88/"
START "" "C:\cookie_dot\cookie_dot.exe" runserver localhost:88