-
Hello, I'm using v3.11.2 of the toolset, and trying to figure out if it is possible to conditionally hide the "Launch" button on the success page of the I see in the logs the Is there anyway this could be configured to work? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
I expected your approach to work. You didn't provide a fully reproducible example so the error is probably in something you haven't explained here. Is overriding the variable on the command line good enough or were you looking for something different? A new feature probably wouldn't be added to v3.x but it could be added for v4. |
Beta Was this translation helpful? Give feedback.
-
Thanks for the response. Overriding the command line would probably be enough, although I have found a workaround with having the button launch a small helper process that launches my application in the correct manner. |
Beta Was this translation helpful? Give feedback.
Thanks for the response.
Here's a simple example bootstrapper and dummy MSI. By default if you click the
Launch
button it executes notepad.I can call it like
BootstrapperTest LaunchTarget=cmd.exe
to have it launch the cmd window instead.However, if I run
BootstrapperTest LaunchTarget=
theLaunch
button is still visible.BootstrapperTest.zip
Overriding the command line would probably be enough, although I have found a workaround with having the button launch a small helper process that launches my application in the correct manner.