Reputation: 73
A win32/64 installer for our software use
{'--unattendedmodeui':'minimal',
'--mode':'unattended'}
parameters in subprocess for an 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 PgAdmin3 installation with a parameter or using any other win32/64 prebuilt PostgreSQL binaries?
Upvotes: 4
Views: 2697
Reputation:
or using any other win32/64 prebuilt PostgreSQL binaries
You can download the ZIP archives and then embed these steps into your installer:
initdb
with the approriate parameterspg_ctl register
to create a Windows serviceBefore integrating the ZIP archive you can remove all unwanted components from it (e.g. pgAdmin, debug symbols).
Upvotes: 3