Group: Forum Members
Posts: 12K,
Visits: 71K
|
In addition, I'm noticing that as of 7.2.3858, the Rescue Media Builder status area and the Reflect Rescue title bar both just show "Windows RE". I checked a 7.2.3811 Rescue Media build and its title bar shows "Windows RE 10 Release 1803", and my recollection is that Rescue Media Builder on that version also showed that full readout.
I'm not a software developer, but speaking from some experience scripting, given that WinPE versions include version and build numbers that align with "real" Windows versions, and that those can be retrieved by checking a WIM file without even mounting it and of course from within the WinPE environment itself if it's running, wouldn't it be possible to have the contents of the RMBuilder Status readout and the Rescue title bar derived by having a simple hashtable with the WinPE "formal" version and build numbers as the keys and the "friendly versions" as the values? The choice between displaying "Windows PE" and "Windows RE" could be determined elsewhere, but the version hashtable could look like thisbe determined like this:
WinPE "formal" version on left as key, WinPE "friendly" version as value: 6.1.xxxx = 3.1 6.2.xxxx = 4 6.3.xxxx = 5 10.0.10240 = 10 1507 10.0.10586 = 10 1511 10.0.14393 = 10 1607 10.0.15063 = 10 1703 10.0.16299 = 10 1709 10.0.17134 = 10 1803 10.0.17763 = 10 1809
(If no match is found in the hashtable, e.g. for Windows Insider builds, display the "formal" version and build.)
|