mirror of
https://github.com/pbatard/rufus.git
synced 2025-05-24 19:54:25 -04:00
[core] add file System detection from superblock
* Also prevent GitHub Actions from failing on VirusTotal upload
This commit is contained in:
parent
036f6260c5
commit
ebaa7d561a
6 changed files with 140 additions and 7 deletions
|
@ -406,7 +406,8 @@ static BOOL IsRefsAvailable(MEDIA_TYPE MediaType)
|
|||
return FALSE;
|
||||
if (nWindowsVersion < WINDOWS_8_1 || nWindowsBuildNumber <= 0)
|
||||
return FALSE;
|
||||
if (nWindowsBuildNumber < 16000)
|
||||
// Per https://gist.github.com/0xbadfca11/da0598e47dd643d933dc
|
||||
if (nWindowsBuildNumber < 16226)
|
||||
return TRUE;
|
||||
switch (nWindowsEdition) {
|
||||
case 0x0000000A: // Enterprise Server
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue