-
Notifications
You must be signed in to change notification settings - Fork 182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MigrateFeatures not behaving as expected #750
Comments
It is an interesting problem. Remember, we have found that I am not sure where and how WiX/MSI keeps the installed features information but something tells me it does. If you are not in deferred (elevated) CA you can always try and see if And if it does then I will speedup delivery of #737 which then can be used in a new extension method Finding right semantics of the method names can be a challenge:
But let's see if my guess about |
Hah, totally forgot that I'd previous opened the related #737! You are correct, |
- Issue #750: MigrateFeatures not behaving as expected - Issue #756: Fix Extensions.SaveBinary - Issue #748: error for FirewallException - Issue #758: PVS-Studio report - Issue #756: Fix Extensions.Combine(this List<>, List<>) - Added fallback language setting to demonstrate safe localization technique in the 'Firewall Exception' sample. - Add Interface element for COM registration - Added extra content to the `SetupArgs.Data` documentation.
- Issue #750: MigrateFeatures not behaving as expected - Issue #756: Fix Extensions.SaveBinary - Issue #748: error for FirewallException - Issue #758: PVS-Studio report - Issue #756: Fix Extensions.Combine(this List<>, List<>) - Added fallback language setting to demonstrate safe localization technique in the 'Firewall Exception' sample. - Add Interface element for COM registration - Added extra content to the `SetupArgs.Data` documentation.
I'm configuring upgrades like this:
When an upgrade is done, Windows Installer appears to behave as expected, as far as I can tell from the logs.
However, in custom actions I'm unable to determine which features are selected -
session["ADDLOCAL"]
is always empty, and as a result of courseSession.IsFeatureEnabled(FEATURE_ID)
is always false.Is there any way to determine what features are installed in a custom action during an upgrade?
The text was updated successfully, but these errors were encountered: