-
Hi. I want to show custom UI on MsiPackage installation. I'm using it like this:
The question is, how to use Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The MSI UI condition is evaluated during plan, so you can't use the package action in it. The available values are: enum BOOTSTRAPPER_ACTION |
Beta Was this translation helpful? Give feedback.
The MSI UI condition is evaluated during plan, so you can't use the package action in it.
However you can use, the bundle action
Something like "WixBundleAction >= 6"
The available values are:
enum BOOTSTRAPPER_ACTION
{
BOOTSTRAPPER_ACTION_UNKNOWN,
BOOTSTRAPPER_ACTION_HELP,
BOOTSTRAPPER_ACTION_LAYOUT,
BOOTSTRAPPER_ACTION_UNSAFE_UNINSTALL,
BOOTSTRAPPER_ACTION_UNINSTALL,
BOOTSTRAPPER_ACTION_CACHE,
BOOTSTRAPPER_ACTION_INSTALL,
BOOTSTRAPPER_ACTION_MODIFY,
BOOTSTRAPPER_ACTION_REPAIR,
BOOTSTRAPPER_ACTION_UPDATE_REPLACE,
BOOTSTRAPPER_ACTION_UPDATE_REPLACE_EMBEDDED,
};