Just want to know if InstallShield keeps a log during installation of an application.

I already checked C:\Program Files\InstallShield Installation Information{GUID}, but there isn't a log file there.

The reason is that the installation of a 3rd party tool is failing with an arbitrary error such as:

"The following error occurred on file \ZZZ. File is readonly"

Options are: Ignore, Retry, Abort

I want to find out the complete path to the file as well as other information and I think this might be on the log (if there's any).

Thanks.

link|improve this question
feedback

2 Answers

up vote 3 down vote accepted

See http://documentation.installshield.com/robo/projects/installshield12helplib/IHelpSetup%5FEXECmdLine.htm for the official docs on Installshield's command line parameters.

If you're runnning a setup.exe rather than an MSI file, and are running it silently then you can use the /f2 parameter to specify the log file location. Something like:

Setup.exe /s /f2"C:\Setup.log"
link|improve this answer
That's what I'm looking for. Can't vote you up cause I don't have reputation, but I promise I will. Thanks. – Henrique Zacchi Sep 3 '09 at 11:23
Thanks, glad to hear it helped. – GAThrawn Sep 3 '09 at 12:31
feedback

Well you can force it to have one:

msiexec.exe /i C:\Path\Your.msi /L*v C:\Your.log
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.