diff options
Diffstat (limited to 'src/Mount/Mount.c')
-rw-r--r-- | src/Mount/Mount.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/Mount/Mount.c b/src/Mount/Mount.c index 8965984f..e5f7b6fa 100644 --- a/src/Mount/Mount.c +++ b/src/Mount/Mount.c @@ -9386,7 +9386,16 @@ int WINAPI wWinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, wchar_t *lpsz if (argv && argc == 2 && wstring (VC_WINDOWS_UPGRADE_POSTOOBE_CMDLINE_OPTION) == argv[1]) { InitOSVersionInfo(); - BootEncryption::UpdateSetupConfigFile (true); + try + { + BootEncryption::UpdateSetupConfigFile (true); + // re-install our bootloader again in case the upgrade process has removed it. + BootEncryption bootEnc (NULL, true); + bootEnc.InstallBootLoader (true); + } + catch (...) + { + } return 0; } |