setup.exe calling msi
In Blackberry Desktop Manager when i try to run setup.msi it throws up an error message saying
"This installation cannot be run by directly clicking msi file"
there is a SETUP.EXE file which calls SETUP.MSI.
I want to run SETUP.MSI directly
SO how to go bout that?
reply as soon as possible.
"This installation cannot be run by directly clicking msi file"
there is a SETUP.EXE file which calls SETUP.MSI.
I want to run SETUP.MSI directly
SO how to go bout that?
reply as soon as possible.
0 Comments
[ + ] Show comments
Answers (12)
Please log in to answer
Posted by:
vmnit
12 years ago
Posted by:
bheers
19 years ago
Posted by:
sunny_sahdev
19 years ago
Posted by:
Thaiboxer
19 years ago
Posted by:
bheers
19 years ago
Posted by:
totoymola
19 years ago
What is the value of the property STANDARD_USE_SETUPEXE? Don't delete it. Try setting it's value to zero (or NO if it's set to YES).
Or, if it's an InstallScrpt MSI, try using ISSETUPDRIVEN=1 property.
About making an AIP, sometimes setup.msi /a doesn't work. It has to be msiexec /a setup.msi sometimes. I don't know why.
Or, if it's an InstallScrpt MSI, try using ISSETUPDRIVEN=1 property.
About making an AIP, sometimes setup.msi /a doesn't work. It has to be msiexec /a setup.msi sometimes. I don't know why.
Posted by:
sunny_sahdev
19 years ago
Posted by:
totoymola
19 years ago
If it has isscrpt.msi, then it's InstallScript. This is my experience with InstallScript (long time ago).
1. Install the isscrpt.msi first.
2. Install the setup.msi with the ISSETUPDRIVEN=1 commanline switch.
example batch file:
@ECHO OFF
START /W MSIEXEC /I ISSCRIPT.MSI /QB
START /W MSIEXEC /I SETUP.MSI /QB ISSETUPDRIVEN=1
EXIT
This used to work with the software that I was trying to install before.
1. Install the isscrpt.msi first.
2. Install the setup.msi with the ISSETUPDRIVEN=1 commanline switch.
example batch file:
@ECHO OFF
START /W MSIEXEC /I ISSCRIPT.MSI /QB
START /W MSIEXEC /I SETUP.MSI /QB ISSETUPDRIVEN=1
EXIT
This used to work with the software that I was trying to install before.
Posted by:
Bladerun
19 years ago
Posted by:
sunny_sahdev
19 years ago
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.