mirror of
				https://github.com/pbatard/rufus.git
				synced 2024-08-14 23:57:05 +00:00 
			
		
		
		
	[ui] fix Windows 11 customization options not appearing with MBR
* Fixes #1956
This commit is contained in:
		
							parent
							
								
									65f05f4d58
								
							
						
					
					
						commit
						d457a0bafe
					
				
					 3 changed files with 36 additions and 36 deletions
				
			
		|  | @ -4,14 +4,14 @@ o Version 3.19 (2022.07.??) | ||||||
|       - Also allows to bypass the mandatory requirement for a Microsoft account on Windows 11 22H2 |       - Also allows to bypass the mandatory requirement for a Microsoft account on Windows 11 22H2 | ||||||
|         (NB: Network *MUST* be temporarily disabled for the local account creation to be proposed) |         (NB: Network *MUST* be temporarily disabled for the local account creation to be proposed) | ||||||
|       - Also add an option to skip all collection questions (Sets all answers to "Don't allow") |       - Also add an option to skip all collection questions (Sets all answers to "Don't allow") | ||||||
|       - Also add an option for setting internal drives offline with Windows To Go |       - Also add an option for setting internal drives offline for Windows To Go | ||||||
|       Note: These customization options are only be proposed when using a Windows 11 image. |       Note: These customization options are only proposed when using a Windows 11 image. | ||||||
|     Add support for distros using a nonstandard GRUB 2.0 prefix directory (openSUSE Live, GeckoLinux) |     Add support for distros using a nonstandard GRUB 2.0 prefix directory (openSUSE Live, GeckoLinux) | ||||||
|     Add the ability to ignore USBs (See https://github.com/pbatard/rufus/blob/master/res/rufus.ini) |     Add the ability to ignore USBs (See https://github.com/pbatard/rufus/blob/master/res/rufus.ini) | ||||||
|     Change drive listing to always list in increasing order of size |     Change drive listing to always list in increasing order of size | ||||||
|     Update exceptions needed by Red Hat and derivatives for latest versions |     Update exceptions needed by Red Hat and derivatives for the 9.x releases | ||||||
|     Update UEFI:NTFS drivers to latest |     Update UEFI:NTFS drivers to latest | ||||||
|     Reassign a letter for drives written in DD mode that don't have an ESP (CoreELEC) |     Reassign a letter for drives written in DD mode that don't have an ESP (e.g. CoreELEC) | ||||||
|     Fix Windows refusing to mount Linux MBR partitions on FIXED drives |     Fix Windows refusing to mount Linux MBR partitions on FIXED drives | ||||||
| 
 | 
 | ||||||
| o Version 3.18 (2022.03.11) | o Version 3.18 (2022.03.11) | ||||||
|  |  | ||||||
							
								
								
									
										36
									
								
								src/rufus.c
									
										
									
									
									
								
							
							
						
						
									
										36
									
								
								src/rufus.c
									
										
									
									
									
								
							|  | @ -1652,6 +1652,24 @@ static DWORD WINAPI BootCheckThread(LPVOID param) | ||||||
| 					ShellExecuteA(hMainDialog, "open", SEVENZIP_URL, NULL, NULL, SW_SHOWNORMAL); | 					ShellExecuteA(hMainDialog, "open", SEVENZIP_URL, NULL, NULL, SW_SHOWNORMAL); | ||||||
| 				goto out; | 				goto out; | ||||||
| 			} | 			} | ||||||
|  | 		} else if ( ((fs_type == FS_NTFS) && !HAS_WINDOWS(img_report) && !HAS_GRUB(img_report) &&  | ||||||
|  | 					 (!HAS_SYSLINUX(img_report) || (SL_MAJOR(img_report.sl_version) <= 5))) | ||||||
|  | 				 || ((IS_FAT(fs_type)) && (!HAS_SYSLINUX(img_report)) && (!allow_dual_uefi_bios) && !IS_EFI_BOOTABLE(img_report) && | ||||||
|  | 					 (!HAS_REACTOS(img_report)) && !HAS_KOLIBRIOS(img_report) && (!HAS_GRUB(img_report))) | ||||||
|  | 				 || ((IS_FAT(fs_type)) && (HAS_WINDOWS(img_report) || HAS_WININST(img_report)) && (!allow_dual_uefi_bios)) ) { | ||||||
|  | 			// Incompatible FS and ISO
 | ||||||
|  | 			MessageBoxExU(hMainDialog, lmprintf(MSG_096), lmprintf(MSG_092), MB_OK | MB_ICONERROR | MB_IS_RTL, selected_langid); | ||||||
|  | 			goto out; | ||||||
|  | 		} else if ((fs_type == FS_FAT16) && HAS_KOLIBRIOS(img_report)) { | ||||||
|  | 			// KolibriOS doesn't support FAT16
 | ||||||
|  | 			MessageBoxExU(hMainDialog, lmprintf(MSG_189), lmprintf(MSG_099), MB_OK | MB_ICONERROR | MB_IS_RTL, selected_langid); | ||||||
|  | 			goto out; | ||||||
|  | 		} | ||||||
|  | 		if ((IS_FAT(fs_type)) && (img_report.has_4GB_file)) { | ||||||
|  | 			// This ISO image contains a file larger than 4GB file (FAT32)
 | ||||||
|  | 			MessageBoxExU(hMainDialog, lmprintf(MSG_100), lmprintf(MSG_099), MB_OK | MB_ICONERROR | MB_IS_RTL, selected_langid); | ||||||
|  | 			goto out; | ||||||
|  | 		} | ||||||
| 		if ((nWindowsVersion >= WINDOWS_8) && IS_WINDOWS_11(img_report)) { | 		if ((nWindowsVersion >= WINDOWS_8) && IS_WINDOWS_11(img_report)) { | ||||||
| 			StrArray options; | 			StrArray options; | ||||||
| 			int arch = _log2(img_report.has_efi >> 1); | 			int arch = _log2(img_report.has_efi >> 1); | ||||||
|  | @ -1679,24 +1697,6 @@ static DWORD WINAPI BootCheckThread(LPVOID param) | ||||||
| 			unattend_xml_mask &= ~(remap8(0xff, map, TRUE)); | 			unattend_xml_mask &= ~(remap8(0xff, map, TRUE)); | ||||||
| 			unattend_xml_mask |= i; | 			unattend_xml_mask |= i; | ||||||
| 		} | 		} | ||||||
| 		} else if ( ((fs_type == FS_NTFS) && !HAS_WINDOWS(img_report) && !HAS_GRUB(img_report) &&  |  | ||||||
| 					 (!HAS_SYSLINUX(img_report) || (SL_MAJOR(img_report.sl_version) <= 5))) |  | ||||||
| 				 || ((IS_FAT(fs_type)) && (!HAS_SYSLINUX(img_report)) && (!allow_dual_uefi_bios) && !IS_EFI_BOOTABLE(img_report) && |  | ||||||
| 					 (!HAS_REACTOS(img_report)) && !HAS_KOLIBRIOS(img_report) && (!HAS_GRUB(img_report))) |  | ||||||
| 				 || ((IS_FAT(fs_type)) && (HAS_WINDOWS(img_report) || HAS_WININST(img_report)) && (!allow_dual_uefi_bios)) ) { |  | ||||||
| 			// Incompatible FS and ISO
 |  | ||||||
| 			MessageBoxExU(hMainDialog, lmprintf(MSG_096), lmprintf(MSG_092), MB_OK | MB_ICONERROR | MB_IS_RTL, selected_langid); |  | ||||||
| 			goto out; |  | ||||||
| 		} else if ((fs_type == FS_FAT16) && HAS_KOLIBRIOS(img_report)) { |  | ||||||
| 			// KolibriOS doesn't support FAT16
 |  | ||||||
| 			MessageBoxExU(hMainDialog, lmprintf(MSG_189), lmprintf(MSG_099), MB_OK | MB_ICONERROR | MB_IS_RTL, selected_langid); |  | ||||||
| 			goto out; |  | ||||||
| 		} |  | ||||||
| 		if ((IS_FAT(fs_type)) && (img_report.has_4GB_file)) { |  | ||||||
| 			// This ISO image contains a file larger than 4GB file (FAT32)
 |  | ||||||
| 			MessageBoxExU(hMainDialog, lmprintf(MSG_100), lmprintf(MSG_099), MB_OK | MB_ICONERROR | MB_IS_RTL, selected_langid); |  | ||||||
| 			goto out; |  | ||||||
| 		} |  | ||||||
| 
 | 
 | ||||||
| 		if ((img_report.projected_size < MAX_ISO_TO_ESP_SIZE * MB) && HAS_REGULAR_EFI(img_report) && | 		if ((img_report.projected_size < MAX_ISO_TO_ESP_SIZE * MB) && HAS_REGULAR_EFI(img_report) && | ||||||
| 			(partition_type == PARTITION_STYLE_GPT) && IS_FAT(fs_type) && !esp_already_asked) { | 			(partition_type == PARTITION_STYLE_GPT) && IS_FAT(fs_type) && !esp_already_asked) { | ||||||
|  |  | ||||||
							
								
								
									
										10
									
								
								src/rufus.rc
									
										
									
									
									
								
							
							
						
						
									
										10
									
								
								src/rufus.rc
									
										
									
									
									
								
							|  | @ -33,7 +33,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL | ||||||
| IDD_DIALOG DIALOGEX 12, 12, 232, 326 | IDD_DIALOG DIALOGEX 12, 12, 232, 326 | ||||||
| STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | ||||||
| EXSTYLE WS_EX_ACCEPTFILES | EXSTYLE WS_EX_ACCEPTFILES | ||||||
| CAPTION "Rufus 3.19.1906" | CAPTION "Rufus 3.19.1907" | ||||||
| FONT 9, "Segoe UI Symbol", 400, 0, 0x0 | FONT 9, "Segoe UI Symbol", 400, 0, 0x0 | ||||||
| BEGIN | BEGIN | ||||||
|     LTEXT           "Drive Properties",IDS_DRIVE_PROPERTIES_TXT,8,6,53,12,NOT WS_GROUP |     LTEXT           "Drive Properties",IDS_DRIVE_PROPERTIES_TXT,8,6,53,12,NOT WS_GROUP | ||||||
|  | @ -395,8 +395,8 @@ END | ||||||
| // | // | ||||||
| 
 | 
 | ||||||
| VS_VERSION_INFO VERSIONINFO | VS_VERSION_INFO VERSIONINFO | ||||||
|  FILEVERSION 3,19,1906,0 |  FILEVERSION 3,19,1907,0 | ||||||
|  PRODUCTVERSION 3,19,1906,0 |  PRODUCTVERSION 3,19,1907,0 | ||||||
|  FILEFLAGSMASK 0x3fL |  FILEFLAGSMASK 0x3fL | ||||||
| #ifdef _DEBUG | #ifdef _DEBUG | ||||||
|  FILEFLAGS 0x1L |  FILEFLAGS 0x1L | ||||||
|  | @ -414,13 +414,13 @@ BEGIN | ||||||
|             VALUE "Comments", "https://rufus.ie" |             VALUE "Comments", "https://rufus.ie" | ||||||
|             VALUE "CompanyName", "Akeo Consulting" |             VALUE "CompanyName", "Akeo Consulting" | ||||||
|             VALUE "FileDescription", "Rufus" |             VALUE "FileDescription", "Rufus" | ||||||
|             VALUE "FileVersion", "3.19.1906" |             VALUE "FileVersion", "3.19.1907" | ||||||
|             VALUE "InternalName", "Rufus" |             VALUE "InternalName", "Rufus" | ||||||
|             VALUE "LegalCopyright", "© 2011-2022 Pete Batard (GPL v3)" |             VALUE "LegalCopyright", "© 2011-2022 Pete Batard (GPL v3)" | ||||||
|             VALUE "LegalTrademarks", "https://www.gnu.org/licenses/gpl-3.0.html" |             VALUE "LegalTrademarks", "https://www.gnu.org/licenses/gpl-3.0.html" | ||||||
|             VALUE "OriginalFilename", "rufus-3.19.exe" |             VALUE "OriginalFilename", "rufus-3.19.exe" | ||||||
|             VALUE "ProductName", "Rufus" |             VALUE "ProductName", "Rufus" | ||||||
|             VALUE "ProductVersion", "3.19.1906" |             VALUE "ProductVersion", "3.19.1907" | ||||||
|         END |         END | ||||||
|     END |     END | ||||||
|     BLOCK "VarFileInfo" |     BLOCK "VarFileInfo" | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue