mirror of
https://github.com/veracrypt/VeraCrypt.git
synced 2025-11-12 11:28:26 -06:00
Windows: in case of mounting system favorites, call driver to get list of drives instead of using SetupAPI in order to fix some rare issues where some disks were not detected at boot.
This commit is contained in:
@@ -495,7 +495,7 @@ static void InitMainDialog (HWND hwndDlg)
|
||||
}
|
||||
|
||||
// initialize the list of devices available for mounting as early as possible
|
||||
UpdateMountableHostDeviceList ();
|
||||
UpdateMountableHostDeviceList (false);
|
||||
|
||||
// Resize the logo bitmap if the user has a non-default DPI
|
||||
if (ScreenDPI != USER_DEFAULT_SCREEN_DPI
|
||||
@@ -7119,7 +7119,7 @@ BOOL CALLBACK MainDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa
|
||||
{
|
||||
if (wParam == TIMER_ID_UPDATE_DEVICE_LIST)
|
||||
{
|
||||
UpdateMountableHostDeviceList ();
|
||||
UpdateMountableHostDeviceList (false);
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -9168,7 +9168,7 @@ static VOID WINAPI SystemFavoritesServiceMain (DWORD argc, LPTSTR *argv)
|
||||
|
||||
SystemFavoritesServiceLogInfo (wstring (L"Initializing list of host devices"));
|
||||
// initialize the list of devices available for mounting as early as possible
|
||||
UpdateMountableHostDeviceList ();
|
||||
UpdateMountableHostDeviceList (true);
|
||||
|
||||
SystemFavoritesServiceLogInfo (wstring (L"Starting System Favorites mounting process"));
|
||||
|
||||
@@ -9702,7 +9702,7 @@ BOOL MountFavoriteVolumes (HWND hwnd, BOOL systemFavorites, BOOL logOnMount, BOO
|
||||
Sleep (5000);
|
||||
|
||||
SystemFavoritesServiceLogInfo (wstring (L"Updating list of host devices"));
|
||||
UpdateMountableHostDeviceList ();
|
||||
UpdateMountableHostDeviceList (true);
|
||||
|
||||
SystemFavoritesServiceLogInfo (wstring (L"Trying to mount skipped system favorites"));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user