Merge from 3.5

This commit is contained in:
Steve Dower 2015-10-08 10:00:55 -07:00
commit 6e8d6ed2f4
2 changed files with 10 additions and 0 deletions

View File

@ -437,6 +437,9 @@ Build
Windows
-------
- Issue #25089: Adds logging to installer for case where launcher is not
selected on upgrade.
- Issue #25165: Windows uninstallation should not remove launcher if other
versions remain

View File

@ -687,6 +687,13 @@ public: // IBootstrapperApplication
if (hr == S_FALSE) {
hr = LoadLauncherStateFromKey(_engine, HKEY_LOCAL_MACHINE);
}
if (FAILED(hr)) {
BalLog(
BOOTSTRAPPER_LOG_LEVEL_ERROR,
"Failed to load launcher state: error code 0x%08X",
hr
);
}
} else if (BOOTSTRAPPER_RELATED_OPERATION_NONE == operation) {
if (_command.action == BOOTSTRAPPER_ACTION_INSTALL) {
LOC_STRING *pLocString = nullptr;