PostgreSQL win32 / 64 without windows without PgAdmin3?

Win32 / 64 installer for our software

{'--unattendedmodeui':'minimal', '--mode':'unattended'} 

in the subprocess for the official PostgreSQL installer:

http://www.enterprisedb.com/products-services-training/pgdownload#windows

http://get.enterprisedb.com/postgresql/postgresql-9.1.2-1-windows.exe

Is it possible to disable the installation of PgAdmin3 using the parameter or using any other pre-created PostgreSQL win32 / 64 binaries?

+4
source share
1 answer

or using any other pre-created PostgreSQL win32 / 64 binaries

You can download the ZIP archives and then paste these steps into your installer:

  • unzip the archive
  • create a Windows user account (if required / necessary - not required since 9.2)
  • run initdb with approriate options
  • run pg_ctl register to create a windows service

Before integrating a ZIP archive, you can remove all unwanted components from it (for example, pgAdmin, debugging symbols).

+3
source

Source: https://habr.com/ru/post/1385595/


All Articles