leeroy
Posts: 28
Joined: Mon May 03, 2021 11:13 pm

Custom Launch Condition - Disable "Show Log"

Mon May 03, 2021 11:18 pm

Hi, I have a custom launch condition that works great, but after the user is blocked from continuing they are presented with a "show log" checkbox. Is there anyway to remove or disabled the "show log" checkbox?

Catalin
Posts: 6537
Joined: Wed Jun 13, 2018 7:49 am

Re: Custom Launch Condition - Disable "Show Log"

Tue May 04, 2021 3:04 pm

Hello and welcome to our forums,

The "Show log" option is automatically displayed on the "ExitDlg" dialog if you have the logging option enabled for your setup package, e.g.:

- you launch the MSI with the logging parameter, e.g.:

Code: Select all

msiexec /i <your_msi> /L*V log.txt
- you launch the EXE with the logging parameter, e.g.:

Code: Select all

setup.exe /L*V log.txt
- you automatically pass the logging parameter to your MSI (if you build an EXE setup) through "Builds" page --> "Bootstrapper Options" --> "MSI Command Line" field

It seems that this is the default behavior of the Windows Installer and I am not aware of any way to disable/hide it, besides disabling the logging option, of course.

Best regards,
Catalin
Catalin Gheorghe - Advanced Installer Team
Follow us: Twitter - Facebook - YouTube

Return to “Building Installers”