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
- :
- Re: How to enable logging for suite package without command line
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 25, 2014
09:39 AM
How to enable logging for suite package without command line
I have a suite package where we want to enable logging all of the time.
Is it possible to enable logging for a suite package without customer support having to provide a command line every time?
I have looked through general settings, and release settings but do not see a location where I can specify that I want the install to enable logging every time.
Is it possible to enable logging for a suite package without customer support having to provide a command line every time?
I have looked through general settings, and release settings but do not see a location where I can specify that I want the install to enable logging every time.
(2) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 29, 2014
03:12 PM
DLee65 wrote:
I have a suite package where we want to enable logging all of the time.
Is it possible to enable logging for a suite package without customer support having to provide a command line every time?
I have looked through general settings, and release settings but do not see a location where I can specify that I want the install to enable logging every time.
In my installations I add the following in Releases>Setup.exe tab>MSI Command-Line Arguments "ALLUSERS=1 /L*v "%TEMP%\My_Install.log"" This will save the MSI log in the Temp directory of the user installing the product.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 29, 2014
03:28 PM
D Fraz wrote:
In my installations I add the following in Releases>Setup.exe tab>MSI Command-Line Arguments "ALLUSERS=1 /L*v "%TEMP%\My_Install.log"" This will save the MSI log in the Temp directory of the user installing the product.
Yeah, I was hoping that it would be that easy for the suite package, but unfortunately not. TY for the reply.