[SOLVED] Creating a silent installer for Windows
Installation and Deployment
6
Posts
3
Posters
2.8k
Views
3
Watching
-
Is there a way to create a silent installer to be run on Windows for my Qt app? The app is not open-source.
-
An installer which requires no interaction from the user and does not display a wizard. I need to work with a third party piece of software that requires my app to have this kind of installer.
-
According to this report you can create unattended installations with scripting. That is if you're using Qt Installer Framework.
Other third party setup packages also have this ability. For example I remeber Inno Setup had /SILENT and /VERYSILENT switches that displayed no ui.
-
Thanks, I'll look into those solutions.