Not advises, that ISO should still work for installs but on 24H2 you have to test what setup still works, iirc the legacy one, when option 1 (UFWS) is used.
Superb work IMHO. Thanks a lot for such a gem. Capable of modifying the ISO such that you can keep progs and settings with the upgrade. One reason to upgrade while keeping progs and settings is to avoid the pain of installing the whole stuff again.
here universal file with permission + ownership fixed Code: # Restore Permission and Ownership from origional `UpgradeMatrix.xml` $acl = Get-Acl 'c:\Windows\servicing\Editions\UpgradeMatrix.xml' Set-Acl -Path '.\UpgradeMatrix.xml' -AclObject $acl
The attached xml is the one from @snayper For this to work you need to mount the wim, we don't mount the wim, we inject the fixed xml by wimlib-imagex so no mounting/unmounting is needed.
what you can do (if you want ..) extract the original one, and use it as a `source` and restore permission + ownership to your file and add it back to wim Code: $acl = Get-Acl '.\UpgradeMatrix.xml' # source file Set-Acl -Path '.\UpgradeMatrix.xml' -AclObject $acl # your file
works here with one liner "ALL" upgrades scenario from @snayper https://forums.mydigitallife.net/th...-fix-tool-very-beta.88518/page-3#post-1858480 Win7 Ultimate need Win10/11 Enterprise product key (but with 24H2 unable to upgrade from Win7 to Win11, error about Microsoft-Client-License-Platform-Service-Migration / ClipMigPlugin.dll failed, hr=[0x8007007f] , only pre-24H2 works )