From 98ff65045e7b6f6cda3bec644b5da4fd61bdf57a Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Wed, 2 May 2018 19:59:50 +0200 Subject: Windows: Support machines without "EFI\Boot" folder for EFI system encryption (e.g. Windows LTSB). Compatibility enhancements for EFI system encryption. --- src/Mount/Mount.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'src/Mount') 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; } -- cgit v1.2.3