mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
[uefi] fix UEFI bootloader extraction when case doesn't match
* With ISO-9660 being case sensitive, we could end up in situations where trying to extract '/efi/boot/bootx64.efi' for revocation validation would fail if the file on the image was stored as '/EFI/boot/bootx64.efi' (e.g. Debian 12). * Fox this by storing the exact UEFI bootloader path we detected during ISO scan, and using this path for file extraction. * Also add a Cancel choice to the revocation dialog and harmonize whitespaces.
This commit is contained in:
parent
bb66dfc492
commit
ef345bf106
4 changed files with 58 additions and 44 deletions
24
src/iso.c
24
src/iso.c
|
@ -55,7 +55,6 @@
|
||||||
// How often should we update the progress bar (in 2K blocks) as updating
|
// How often should we update the progress bar (in 2K blocks) as updating
|
||||||
// the progress bar for every block will bring extraction to a crawl
|
// the progress bar for every block will bring extraction to a crawl
|
||||||
#define PROGRESS_THRESHOLD 128
|
#define PROGRESS_THRESHOLD 128
|
||||||
#define FOUR_GIGABYTES 4294967296LL
|
|
||||||
|
|
||||||
// Needed for UDF symbolic link testing
|
// Needed for UDF symbolic link testing
|
||||||
#define S_IFLNK 0xA000
|
#define S_IFLNK 0xA000
|
||||||
|
@ -243,6 +242,15 @@ static BOOL check_iso_props(const char* psz_dirname, int64_t file_length, const
|
||||||
img_report.has_bootmgr = TRUE;
|
img_report.has_bootmgr = TRUE;
|
||||||
}
|
}
|
||||||
if (safe_stricmp(psz_basename, bootmgr_efi_name) == 0) {
|
if (safe_stricmp(psz_basename, bootmgr_efi_name) == 0) {
|
||||||
|
// We may extract the bootloaders for revocation validation later but
|
||||||
|
// to do so, since we're working with case sensitive file systems, we
|
||||||
|
// must store all found UEFI bootloader paths with the right case.
|
||||||
|
for (j = 0; j < ARRAYSIZE(img_report.efi_boot_path); j++) {
|
||||||
|
if (img_report.efi_boot_path[j][0] == 0) {
|
||||||
|
static_strcpy(img_report.efi_boot_path[j], psz_fullpath);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
img_report.has_efi |= 1;
|
img_report.has_efi |= 1;
|
||||||
img_report.has_bootmgr_efi = TRUE;
|
img_report.has_bootmgr_efi = TRUE;
|
||||||
}
|
}
|
||||||
|
@ -273,9 +281,17 @@ static BOOL check_iso_props(const char* psz_dirname, int64_t file_length, const
|
||||||
|
|
||||||
// Check for the EFI boot entries
|
// Check for the EFI boot entries
|
||||||
if (safe_stricmp(psz_dirname, efi_dirname) == 0) {
|
if (safe_stricmp(psz_dirname, efi_dirname) == 0) {
|
||||||
for (i = 0; i < ARRAYSIZE(efi_bootname); i++)
|
for (i = 0; i < ARRAYSIZE(efi_bootname); i++) {
|
||||||
if (safe_stricmp(psz_basename, efi_bootname[i]) == 0)
|
if (safe_stricmp(psz_basename, efi_bootname[i]) == 0) {
|
||||||
img_report.has_efi |= (2 << i); // start at 2 since "bootmgr.efi" is bit 0
|
img_report.has_efi |= (2 << i); // start at 2 since "bootmgr.efi" is bit 0
|
||||||
|
for (j = 0; j < ARRAYSIZE(img_report.efi_boot_path); j++) {
|
||||||
|
if (img_report.efi_boot_path[j][0] == 0) {
|
||||||
|
static_strcpy(img_report.efi_boot_path[j], psz_fullpath);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (psz_dirname != NULL) {
|
if (psz_dirname != NULL) {
|
||||||
|
@ -312,7 +328,7 @@ static BOOL check_iso_props(const char* psz_dirname, int64_t file_length, const
|
||||||
if (props->is_old_c32[i])
|
if (props->is_old_c32[i])
|
||||||
img_report.has_old_c32[i] = TRUE;
|
img_report.has_old_c32[i] = TRUE;
|
||||||
}
|
}
|
||||||
if (file_length >= FOUR_GIGABYTES)
|
if (file_length >= 4 * GB)
|
||||||
img_report.has_4GB_file = TRUE;
|
img_report.has_4GB_file = TRUE;
|
||||||
// Compute projected size needed (NB: ISO_BLOCKSIZE = UDF_BLOCKSIZE)
|
// Compute projected size needed (NB: ISO_BLOCKSIZE = UDF_BLOCKSIZE)
|
||||||
if (file_length != 0)
|
if (file_length != 0)
|
||||||
|
|
37
src/rufus.c
37
src/rufus.c
|
@ -1429,7 +1429,7 @@ static DWORD WINAPI BootCheckThread(LPVOID param)
|
||||||
const char* ldlinux = "ldlinux";
|
const char* ldlinux = "ldlinux";
|
||||||
const char* syslinux = "syslinux";
|
const char* syslinux = "syslinux";
|
||||||
const char* ldlinux_ext[3] = { "sys", "bss", "c32" };
|
const char* ldlinux_ext[3] = { "sys", "bss", "c32" };
|
||||||
char tmp[MAX_PATH], tmp2[MAX_PATH], efi[MAX_PATH], c;
|
char tmp[MAX_PATH], tmp2[MAX_PATH], c;
|
||||||
|
|
||||||
syslinux_ldlinux_len[0] = 0; syslinux_ldlinux_len[1] = 0;
|
syslinux_ldlinux_len[0] = 0; syslinux_ldlinux_len[1] = 0;
|
||||||
safe_free(grub2_buf);
|
safe_free(grub2_buf);
|
||||||
|
@ -1449,7 +1449,7 @@ static DWORD WINAPI BootCheckThread(LPVOID param)
|
||||||
goto out;
|
goto out;
|
||||||
if ((size_check) && (img_report.projected_size > (uint64_t)SelectedDrive.DiskSize)) {
|
if ((size_check) && (img_report.projected_size > (uint64_t)SelectedDrive.DiskSize)) {
|
||||||
// This ISO image is too big for the selected target
|
// This ISO image is too big for the selected target
|
||||||
MessageBoxExU(hMainDialog, lmprintf(MSG_089), lmprintf(MSG_088), MB_OK|MB_ICONERROR|MB_IS_RTL, selected_langid);
|
MessageBoxExU(hMainDialog, lmprintf(MSG_089), lmprintf(MSG_088), MB_OK | MB_ICONERROR | MB_IS_RTL, selected_langid);
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
if (IS_DD_BOOTABLE(img_report)) {
|
if (IS_DD_BOOTABLE(img_report)) {
|
||||||
|
@ -1489,14 +1489,14 @@ static DWORD WINAPI BootCheckThread(LPVOID param)
|
||||||
if (is_windows_to_go) {
|
if (is_windows_to_go) {
|
||||||
if (fs_type != FS_NTFS) {
|
if (fs_type != FS_NTFS) {
|
||||||
// Windows To Go only works for NTFS
|
// Windows To Go only works for NTFS
|
||||||
MessageBoxExU(hMainDialog, lmprintf(MSG_097, "Windows To Go"), lmprintf(MSG_092), MB_OK|MB_ICONERROR|MB_IS_RTL, selected_langid);
|
MessageBoxExU(hMainDialog, lmprintf(MSG_097, "Windows To Go"), lmprintf(MSG_092), MB_OK | MB_ICONERROR | MB_IS_RTL, selected_langid);
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
if (SelectedDrive.MediaType != FixedMedia) {
|
if (SelectedDrive.MediaType != FixedMedia) {
|
||||||
if ((target_type == TT_UEFI) && (partition_type == PARTITION_STYLE_GPT) && (WindowsVersion.BuildNumber < 15000)) {
|
if ((target_type == TT_UEFI) && (partition_type == PARTITION_STYLE_GPT) && (WindowsVersion.BuildNumber < 15000)) {
|
||||||
// Up to Windows 10 Creators Update (1703), we were screwed, since we need access to 2 partitions at the same time.
|
// Up to Windows 10 Creators Update (1703), we were screwed, since we need access to 2 partitions at the same time.
|
||||||
// Thankfully, the newer Windows allow mounting multiple partitions on the same REMOVABLE drive.
|
// Thankfully, the newer Windows allow mounting multiple partitions on the same REMOVABLE drive.
|
||||||
MessageBoxExU(hMainDialog, lmprintf(MSG_198), lmprintf(MSG_190), MB_OK|MB_ICONERROR|MB_IS_RTL, selected_langid);
|
MessageBoxExU(hMainDialog, lmprintf(MSG_198), lmprintf(MSG_190), MB_OK | MB_ICONERROR | MB_IS_RTL, selected_langid);
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1623,22 +1623,19 @@ static DWORD WINAPI BootCheckThread(LPVOID param)
|
||||||
if (target_type == TT_UEFI) {
|
if (target_type == TT_UEFI) {
|
||||||
// coverity[swapped_arguments]
|
// coverity[swapped_arguments]
|
||||||
if (GetTempFileNameU(temp_dir, APPLICATION_NAME, 0, tmp) != 0) {
|
if (GetTempFileNameU(temp_dir, APPLICATION_NAME, 0, tmp) != 0) {
|
||||||
for (i = 0; i < ARRAYSIZE(efi_bootname) + 1; i++) {
|
// ExtractISOFile() is case sensitive, so we must use
|
||||||
if ((img_report.has_efi & (1 << i)) == 0)
|
for (i = 0; i < ARRAYSIZE(img_report.efi_boot_path) && img_report.efi_boot_path[i][0] != 0; i++) {
|
||||||
continue;
|
if (ExtractISOFile(image_path, img_report.efi_boot_path[i], tmp, FILE_ATTRIBUTE_NORMAL) == 0) {
|
||||||
if (i == 0)
|
uprintf("Warning: Failed to extract '%s' to check for UEFI revocation", img_report.efi_boot_path[i]);
|
||||||
static_strcpy(efi, bootmgr_efi_name);
|
|
||||||
else
|
|
||||||
static_sprintf(efi, "%s/%s", efi_dirname, efi_bootname[i - 1]);
|
|
||||||
if (ExtractISOFile(image_path, efi, tmp, FILE_ATTRIBUTE_NORMAL) == 0) {
|
|
||||||
uprintf("Warning: Failed to extract '%s' to check for UEFI revocation", efi);
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
r = IsBootloaderRevoked(tmp);
|
r = IsBootloaderRevoked(tmp);
|
||||||
if (r > 0) {
|
if (r > 0) {
|
||||||
MessageBoxExU(hMainDialog, lmprintf(MSG_339,
|
r = MessageBoxExU(hMainDialog, lmprintf(MSG_339,
|
||||||
(r == 1) ? lmprintf(MSG_340) : lmprintf(MSG_341, "Error code: 0xc0000428")),
|
(r == 1) ? lmprintf(MSG_340) : lmprintf(MSG_341, "Error code: 0xc0000428")),
|
||||||
lmprintf(MSG_338), MB_ICONWARNING | MB_IS_RTL, selected_langid);
|
lmprintf(MSG_338), MB_OKCANCEL | MB_ICONWARNING | MB_IS_RTL, selected_langid);
|
||||||
|
if (r == IDCANCEL)
|
||||||
|
goto out;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1677,7 +1674,7 @@ static DWORD WINAPI BootCheckThread(LPVOID param)
|
||||||
fclose(fd);
|
fclose(fd);
|
||||||
} else {
|
} else {
|
||||||
r = MessageBoxExU(hMainDialog, lmprintf(MSG_116, img_report.grub2_version, GRUB2_PACKAGE_VERSION),
|
r = MessageBoxExU(hMainDialog, lmprintf(MSG_116, img_report.grub2_version, GRUB2_PACKAGE_VERSION),
|
||||||
lmprintf(MSG_115), MB_YESNOCANCEL|MB_ICONWARNING|MB_IS_RTL, selected_langid);
|
lmprintf(MSG_115), MB_YESNOCANCEL | MB_ICONWARNING | MB_IS_RTL, selected_langid);
|
||||||
if (r == IDCANCEL)
|
if (r == IDCANCEL)
|
||||||
goto out;
|
goto out;
|
||||||
else if (r == IDYES) {
|
else if (r == IDYES) {
|
||||||
|
@ -1735,7 +1732,7 @@ static DWORD WINAPI BootCheckThread(LPVOID param)
|
||||||
} else {
|
} else {
|
||||||
PrintInfo(0, MSG_204, old_c32_name[i]);
|
PrintInfo(0, MSG_204, old_c32_name[i]);
|
||||||
if (MessageBoxExU(hMainDialog, lmprintf(MSG_084, old_c32_name[i], old_c32_name[i]),
|
if (MessageBoxExU(hMainDialog, lmprintf(MSG_084, old_c32_name[i], old_c32_name[i]),
|
||||||
lmprintf(MSG_083, old_c32_name[i]), MB_YESNO|MB_ICONWARNING|MB_IS_RTL, selected_langid) == IDYES) {
|
lmprintf(MSG_083, old_c32_name[i]), MB_YESNO | MB_ICONWARNING | MB_IS_RTL, selected_langid) == IDYES) {
|
||||||
static_sprintf(tmp, "%s-%s", syslinux, embedded_sl_version_str[0]);
|
static_sprintf(tmp, "%s-%s", syslinux, embedded_sl_version_str[0]);
|
||||||
IGNORE_RETVAL(_mkdir(tmp));
|
IGNORE_RETVAL(_mkdir(tmp));
|
||||||
static_sprintf(tmp, "%s/%s-%s/%s", FILES_URL, syslinux, embedded_sl_version_str[0], old_c32_name[i]);
|
static_sprintf(tmp, "%s/%s-%s/%s", FILES_URL, syslinux, embedded_sl_version_str[0], old_c32_name[i]);
|
||||||
|
@ -1775,7 +1772,7 @@ static DWORD WINAPI BootCheckThread(LPVOID param)
|
||||||
} else {
|
} else {
|
||||||
r = MessageBoxExU(hMainDialog, lmprintf(MSG_114, img_report.sl_version_str, img_report.sl_version_ext,
|
r = MessageBoxExU(hMainDialog, lmprintf(MSG_114, img_report.sl_version_str, img_report.sl_version_ext,
|
||||||
embedded_sl_version_str[1], embedded_sl_version_ext[1]),
|
embedded_sl_version_str[1], embedded_sl_version_ext[1]),
|
||||||
lmprintf(MSG_115), MB_YESNO|MB_ICONWARNING|MB_IS_RTL, selected_langid);
|
lmprintf(MSG_115), MB_YESNO | MB_ICONWARNING | MB_IS_RTL, selected_langid);
|
||||||
if (r != IDYES)
|
if (r != IDYES)
|
||||||
goto out;
|
goto out;
|
||||||
for (i=0; i<2; i++) {
|
for (i=0; i<2; i++) {
|
||||||
|
@ -1834,7 +1831,7 @@ static DWORD WINAPI BootCheckThread(LPVOID param)
|
||||||
PrintInfo(0, MSG_206, tmp);
|
PrintInfo(0, MSG_206, tmp);
|
||||||
// MSG_104: "Syslinux v5.0 or later requires a '%s' file to be installed"
|
// MSG_104: "Syslinux v5.0 or later requires a '%s' file to be installed"
|
||||||
r = MessageBoxExU(hMainDialog, lmprintf(MSG_104, "Syslinux v5.0", tmp, "Syslinux v5+", tmp),
|
r = MessageBoxExU(hMainDialog, lmprintf(MSG_104, "Syslinux v5.0", tmp, "Syslinux v5+", tmp),
|
||||||
lmprintf(MSG_103, tmp), MB_YESNOCANCEL|MB_ICONWARNING|MB_IS_RTL, selected_langid);
|
lmprintf(MSG_103, tmp), MB_YESNOCANCEL | MB_ICONWARNING | MB_IS_RTL, selected_langid);
|
||||||
if (r == IDCANCEL)
|
if (r == IDCANCEL)
|
||||||
goto out;
|
goto out;
|
||||||
if (r == IDYES) {
|
if (r == IDYES) {
|
||||||
|
@ -1883,7 +1880,7 @@ static DWORD WINAPI BootCheckThread(LPVOID param)
|
||||||
static_sprintf(tmp, "grldr");
|
static_sprintf(tmp, "grldr");
|
||||||
PrintInfo(0, MSG_206, tmp);
|
PrintInfo(0, MSG_206, tmp);
|
||||||
r = MessageBoxExU(hMainDialog, lmprintf(MSG_104, "Grub4DOS 0.4", tmp, "Grub4DOS", tmp),
|
r = MessageBoxExU(hMainDialog, lmprintf(MSG_104, "Grub4DOS 0.4", tmp, "Grub4DOS", tmp),
|
||||||
lmprintf(MSG_103, tmp), MB_YESNOCANCEL|MB_ICONWARNING|MB_IS_RTL, selected_langid);
|
lmprintf(MSG_103, tmp), MB_YESNOCANCEL | MB_ICONWARNING | MB_IS_RTL, selected_langid);
|
||||||
if (r == IDCANCEL)
|
if (r == IDCANCEL)
|
||||||
goto out;
|
goto out;
|
||||||
if (r == IDYES) {
|
if (r == IDYES) {
|
||||||
|
|
31
src/rufus.h
31
src/rufus.h
|
@ -364,12 +364,28 @@ typedef struct {
|
||||||
uint16_t revision;
|
uint16_t revision;
|
||||||
} winver_t;
|
} winver_t;
|
||||||
|
|
||||||
|
/* We can't use the Microsoft enums as we want to have RISC-V */
|
||||||
|
enum ArchType {
|
||||||
|
ARCH_UNKNOWN = 0,
|
||||||
|
ARCH_X86_32,
|
||||||
|
ARCH_X86_64,
|
||||||
|
ARCH_ARM_32,
|
||||||
|
ARCH_ARM_64,
|
||||||
|
ARCH_IA_64,
|
||||||
|
ARCH_RISCV_32,
|
||||||
|
ARCH_RISCV_64,
|
||||||
|
ARCH_RISCV_128,
|
||||||
|
ARCH_EBC,
|
||||||
|
ARCH_MAX
|
||||||
|
};
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
char label[192]; // 3*64 to account for UTF-8
|
char label[192]; // 3*64 to account for UTF-8
|
||||||
char usb_label[192]; // converted USB label for workaround
|
char usb_label[192]; // converted USB label for workaround
|
||||||
char cfg_path[128]; // path to the ISO's isolinux.cfg
|
char cfg_path[128]; // path to the ISO's isolinux.cfg
|
||||||
char reactos_path[128]; // path to the ISO's freeldr.sys or setupldr.sys
|
char reactos_path[128]; // path to the ISO's freeldr.sys or setupldr.sys
|
||||||
char wininst_path[MAX_WININST][64]; // path to the Windows install image(s)
|
char wininst_path[MAX_WININST][64]; // path to the Windows install image(s)
|
||||||
|
char efi_boot_path[ARCH_MAX][30]; // paths of detected UEFI bootloaders
|
||||||
char efi_img_path[128]; // path to an efi.img file
|
char efi_img_path[128]; // path to an efi.img file
|
||||||
uint64_t image_size;
|
uint64_t image_size;
|
||||||
uint64_t archive_size;
|
uint64_t archive_size;
|
||||||
|
@ -476,21 +492,6 @@ typedef enum TASKBAR_PROGRESS_FLAGS
|
||||||
TASKBAR_PAUSED = 0x8
|
TASKBAR_PAUSED = 0x8
|
||||||
} TASKBAR_PROGRESS_FLAGS;
|
} TASKBAR_PROGRESS_FLAGS;
|
||||||
|
|
||||||
/* We can't use the Microsoft enums as we want to have RISC-V */
|
|
||||||
enum ArchType {
|
|
||||||
ARCH_UNKNOWN = 0,
|
|
||||||
ARCH_X86_32,
|
|
||||||
ARCH_X86_64,
|
|
||||||
ARCH_ARM_32,
|
|
||||||
ARCH_ARM_64,
|
|
||||||
ARCH_IA_64,
|
|
||||||
ARCH_RISCV_32,
|
|
||||||
ARCH_RISCV_64,
|
|
||||||
ARCH_RISCV_128,
|
|
||||||
ARCH_EBC,
|
|
||||||
ARCH_MAX
|
|
||||||
};
|
|
||||||
|
|
||||||
static __inline USHORT GetApplicationArch(void)
|
static __inline USHORT GetApplicationArch(void)
|
||||||
{
|
{
|
||||||
#if defined(_M_AMD64)
|
#if defined(_M_AMD64)
|
||||||
|
|
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 4.2.2064"
|
CAPTION "Rufus 4.2.2065"
|
||||||
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
|
||||||
|
@ -392,8 +392,8 @@ END
|
||||||
//
|
//
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION 4,2,2064,0
|
FILEVERSION 4,2,2065,0
|
||||||
PRODUCTVERSION 4,2,2064,0
|
PRODUCTVERSION 4,2,2065,0
|
||||||
FILEFLAGSMASK 0x3fL
|
FILEFLAGSMASK 0x3fL
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
FILEFLAGS 0x1L
|
FILEFLAGS 0x1L
|
||||||
|
@ -411,13 +411,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", "4.2.2064"
|
VALUE "FileVersion", "4.2.2065"
|
||||||
VALUE "InternalName", "Rufus"
|
VALUE "InternalName", "Rufus"
|
||||||
VALUE "LegalCopyright", "© 2011-2023 Pete Batard (GPL v3)"
|
VALUE "LegalCopyright", "© 2011-2023 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-4.2.exe"
|
VALUE "OriginalFilename", "rufus-4.2.exe"
|
||||||
VALUE "ProductName", "Rufus"
|
VALUE "ProductName", "Rufus"
|
||||||
VALUE "ProductVersion", "4.2.2064"
|
VALUE "ProductVersion", "4.2.2065"
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
BLOCK "VarFileInfo"
|
BLOCK "VarFileInfo"
|
||||||
|
|
Loading…
Reference in a new issue