When installing under Windows in a batch file (non-interactive), use the 'int' version with parameters such as you see in sample below. The other version is a wrapper program which basically allows you to enter the same parameters interactively.
Here is 'int' sample , used for 8.0 install:
msiexec /i postgresql-8.0-int.msi /qb ADDLOCAL=server,psql INTERNALLAUNCH=1 SERVICEACCOUNT=<logon ID> SERVICEPASSWORD=<pswd> SUPERUSER=<logon ID> SUPERPASSWORD=<pswd> BASEDIR=%PGRESQLDB% /l*v install.log
Get more info at
After downloading the windows beta version postgresql-8.1-beta versions and applying WinZip the following two files show up.
postgresql-8.1-betaX-int.msi
and
postgresql-8.1-betaX.msi
What is the significance of the "-int"? What does it mean or stand for?
Thanks, Tom