Darn, so not all Win11 users can downgrade. That's so unfortunate to me. Now I'm disappointed. I followed ESD creation instructions to a tea, we even stamp the edition ID, and the regular UpDown_tool could do this. Really, really sad about this. Now all my work = wasted, nobody's gonna want to custom install Win10 and get all the drivers, ahahaha. Back to the drawing board we go. Updown tool somehow did this, but they definitely didn't stamp in Pro or home because in their image I could use it from Win10 LTSC, just as well as I could from Win11 Pro. Hmm.
Aryan
in reply to Tamas G • • •Tamas G
in reply to Aryan • • •dism /Export-Image /SourceImageFile:"%SRC_IMG%" /SourceIndex:1 /DestinationImageFile:"%OUT_WIM%" /Compress:max /CheckIntegrity
That will create you a larger install.wim. Use a tool called, wimlib-imagex at github.com/chris1111/Wimlib-Im… - and write the proper metadata to that .wim:
wimlib-imagex info "%OUT_WIM%" 1 --image-property FLAGS=IoTEnterpriseS
wimlib-imagex info "%OUT_WIM%" 1 --image-property WINDOWS/EDITIONID=IoTEnterpriseS
wimlib-imagex info "%OUT_WIM%" 1 --image-property DISPLAYNAME="Windows 10 IoT Enterprise LTSC 2021"
wimlib-imagex info "%OUT_WIM%" 1 --image-property DISPLAYDESCRIPTION="Windows 10 IoT Enterprise LTSC 2021"
(change to Windows 10 Pro instead of enterprise.)
This might get you a newer install.wim that has the proper flags and lets you upgrade.
GitHub - chris1111/Wimlib-Imagex-Package: wimlib is a C library for creating, modifying, extracting, and mounting files in the Windows Imaging Format (WIM files).
GitHubTamas G
in reply to Tamas G • • •oscdimg.exe" -m -o -u2 -udfver102 -lWIN10_IOT_6456 -bootdata:2#p0,eb"D:\iso_path_extracted\boot\etfsboot.com"#pEF,e,b"D:\iso_path_extracted\efi\microsoft\boot\efisys.bin" "D:\iso_path_extracted" "D:\path_to_destination\Win10_IoT_LTSC_6456.iso"
Aryan
in reply to Tamas G • • •Tamas G
in reply to Aryan • • •