This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- How to access log file
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
‎Jan 20, 2011
10:53 PM
How to access log file
Hii
can anyone please tell me the process of creating log file and where this log file is saved after installation and uninstallation process.
Thanks
can anyone please tell me the process of creating log file and where this log file is saved after installation and uninstallation process.
Thanks
(6) Replies
‎Jan 21, 2011
06:43 AM
Commandline for building logfile:
install:
msiexec /i "Yourmsi.msi" /l*v c:\logs\Yourmsilog.txt
and uninstall:
msiexec /x "Yourmsi.msi" /l*v c:\logs\Yourmsilog.txt
Where c:\logs is an existing folder. If you want to run InstallShield's MSI log analyzer rename the txt file extension to wil.
MSI log analyzer can be found in Installshield - Tools - MSI log analyzer
Hope this helps,
Walt
install:
msiexec /i "Yourmsi.msi" /l*v c:\logs\Yourmsilog.txt
and uninstall:
msiexec /x "Yourmsi.msi" /l*v c:\logs\Yourmsilog.txt
Where c:\logs is an existing folder. If you want to run InstallShield's MSI log analyzer rename the txt file extension to wil.
MSI log analyzer can be found in Installshield - Tools - MSI log analyzer
Hope this helps,
Walt
‎Jan 21, 2011
06:59 AM
Hi WalterT
I want to run an exe file like Setup.exe .I want a log during time of installation and uninstallation.
I want to run an exe file like Setup.exe .I want a log during time of installation and uninstallation.
‎Jan 21, 2011
07:03 AM
‎Jan 21, 2011
07:34 AM
ah... These command lines work on the msi that is encapsulated in your setup.exe.
To give these commands to the msi through your setup.exe you need to use the /V parameter like this:
setup.exe /v "/l*v c:\logs\Yourmsilog.txt"
Same for uninstall.
To give these commands to the msi through your setup.exe you need to use the /V parameter like this:
setup.exe /v "/l*v c:\logs\Yourmsilog.txt"
Same for uninstall.
‎Jan 21, 2011
12:14 PM
You can also include this /l*v "c:\logs\Yourmsilog.txt" command in your project.
Releases View > Setup.exe tab >> MSI command line arguments.
This would log even if you double click on setup.exe and install/uninstall
Releases View > Setup.exe tab >> MSI command line arguments.
This would log even if you double click on setup.exe and install/uninstall
‎Jan 21, 2011
12:25 PM
Depending on the MSI version you're using, there's also General Information > Create MSI Logs.