Visual Studio Installer Projects with PostgreSQL

3

I am starting a Windows Form C # project, a commercial application that the user downloads, installs and uses, without complications. Is it possible to configure Visual Studio Installer Projects to install together PostgreSQL without the user noticing? A silent installation.

    
asked by Edvaldo Silva 10.08.2017 в 05:47
source

1 answer

1

To install PostgreSQL from your installer you just have to automate that process. Almost any installer can be automated from a command line to set the parameters that the user would select during the installation process and to install it in silent mode.

If you want to know the available options you can look here: Silent installation of a MSI package :

    
answered by 10.08.2017 / 13:03
source