mirror of
https://github.com/pbatard/rufus.git
synced 2025-05-28 13:44:15 -04:00
[core] fix VHD detection for Windows 7
* Windows 8 or later uses "Microsoft Virtual Disk" whereas Windows 7 uses "Msft Virtual Disk SCSI Disk Device", so we just search for a "Virtual Disk" substring. * Closes #306
This commit is contained in:
parent
3f0d9d108f
commit
0def2bacef
3 changed files with 9 additions and 8 deletions
|
@ -633,7 +633,7 @@ static BOOL GetUSBDevices(DWORD devnum)
|
|||
// The rest are the vendor UASP drivers I know of so far - list may be incomplete!
|
||||
const char* storage_name[] = { "USBSTOR", "UASPSTOR", "VUSBSTOR", "ETRONSTOR" };
|
||||
const char* scsi_name = "SCSI";
|
||||
const char* vhd_name = "Microsoft Virtual Disk";
|
||||
const char* vhd_name = "Virtual Disk";
|
||||
char letter_name[] = " (?:)";
|
||||
BOOL found = FALSE, is_SCSI, is_UASP, is_VHD;
|
||||
HDEVINFO dev_info = NULL;
|
||||
|
@ -713,7 +713,7 @@ static BOOL GetUSBDevices(DWORD devnum)
|
|||
uprintf("SetupDiGetDeviceRegistryProperty (Friendly Name) failed: %s\n", WindowsErrorString());
|
||||
// We can afford a failure on this call - just replace the name with "USB Storage Device (Generic)"
|
||||
safe_strcpy(buffer, sizeof(buffer), lmprintf(MSG_045));
|
||||
} else if (safe_stricmp(buffer, vhd_name) == 0) {
|
||||
} else if (safe_strstr(buffer, vhd_name) != NULL) {
|
||||
is_VHD = TRUE;
|
||||
} else {
|
||||
// Get the VID:PID of the device. We could avoid doing this lookup every time by keeping
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue