I'm starting a Windows Form C# project, a commercial application that the user downloads, installs, and uses, with no hassle. Is it possible to configure Visual Studio Installer Projects to install alongside PostgreSQL without the user noticing? A silent installation.
To install
PostgreSQL
from your installer you just have to automate this process. Almost any installer can be automated from a command line so that you put the parameters that the user would select during the installation process and so that it installs in silent mode.If you want to know the available options you can look here: Silent installation of a MSI package :