RobBrenart
01-18-2006, 01:21 AM
Two questions in one... first, I want to install another MSI as part of my install... I think this is a "Custom Action", but I'm not quite clear... It seemed to me that I could use the Custom Action Wizard, and set a few things, but perhaps with my details I should be using a simple script instead?
Here's the command line to pull of the MSI as a silent install (just a progress bar and success/failure)
msiexec /i postgresql-8.1-int.msi /qr INTERNALLAUNCH=1 ADDLOCAL=server,psql SERVICEDOMAIN=%COMPUTERNAME% SERVICEPASSWORD=password SUPERPASSWORD=password2 BASEDIR=c:\postgres CREATESERVICEUSER=1 PERMITREMOTE=1 SERVICEACCOUNT=accountName
Is there a way to pass all of that information through the setup directly, or should I setup some VBScript which shells out and runs it?
Second question... my install has both a server component and a client component, this should only run during the server component install... does that change anything & how do I accomplish this?
Here's the command line to pull of the MSI as a silent install (just a progress bar and success/failure)
msiexec /i postgresql-8.1-int.msi /qr INTERNALLAUNCH=1 ADDLOCAL=server,psql SERVICEDOMAIN=%COMPUTERNAME% SERVICEPASSWORD=password SUPERPASSWORD=password2 BASEDIR=c:\postgres CREATESERVICEUSER=1 PERMITREMOTE=1 SERVICEACCOUNT=accountName
Is there a way to pass all of that information through the setup directly, or should I setup some VBScript which shells out and runs it?
Second question... my install has both a server component and a client component, this should only run during the server component install... does that change anything & how do I accomplish this?