Corrected and I don't think MS will release one more fake build 19045 since they will be promoting Windows 11 as the next gen OS.
Yes have added the tweak to disable check CPU, do check the latest uploaded Toolkit.cmd. Will be uploading a new Toolkit.cmd script today do download it.
WebP Image Extension appx adds support for viewing Google's WebP Images in the Windows Photo Viewer, Edge Classic, Edge Chromium and other image applications. You need to associate the .Webp image format with Windows Photo Viewer or other Image Viewers. As far the thumbnails it should display it in the explorer unless something has messed the thumbnail cache, do clear the thumbnail cache and see if it works.
@MSMG & @graver.x Sorry friends. I found out that the issue is actually not the non-integration of dotnet but the dotnet feature has been disabled through the disablefeaturelist.txt. Thats why dotnet features were shown as disabled under dotnet detector application. However its strange that this didnt affect 1909 but only 1809. Anyway After removing the dotnet related entries from the disablefeatureslist.txt everything is working fine. Thanx a lot for the help. @MSMG - Sir it will be better if you give us the list of removepkgslist.txt which correspond to the featureslist.txt So that it will be helpful to know which features to enable and disable depending upon the package we keep or remove. Thank you
Deleting the thumbnail cache does nothing, Associating .webp with Windows Photo Viewer does not work. WPV both says the file is damaged or corrupt and Paint says the format is not supported.
Yes, I think that. But some experience experimental insider 19045 should already be in the active... I suppose this because I saw this version in Abbodi scripts. Maybe he's getting advanced, as he had already done previously putting up a few lines for Windows 12, heheheh What about AdvertisingXAML in Windows 11? Is not it present because you are integrated with the new Windows Store? And about ServicesStoreEngagement? About the GamingApp that is present in InboxApps Integration, why is not it on the removal menu? Would it be only for integration because this is not even present in Windows 11? Thnx, man!
In Windows 11 the AdvertisingXAML and ServicesStoreEngagement is not present and so their integration is not required. The GamingApp is the new Xbox kind Front End App present in the Windows 11 and it will be removed within the Xbox App removal.
Has anybody tested the MSMG Toolkit with Windows-11-22449.1000-X64 version I can't convince my ASUS N751JX to install Windows 11 Pro
? Solve @RaiyvaN Code: if "%ImageVersion:~0,-6%" equ "10.0" ( if "%ImageBuild%" geq "10240" if "%ImageBuild%" lss "22000" ( set "SelectedSourceOS=w10" set "OSID=10" ) if "%ImageBuild%" geq "22000" ( set "SelectedSourceOS=w11" set "OSID=11" ) )
What can I do to use msmg produced ISO with boot camp? The last one I was able to install was 1903 I believe and the more recent build always say iso not recognized even if I do no change, just extract then remake with msmg. Any help is appreciated!
Extract ISO into the DVD folder. And open the Toolkit with Start.cmd. Alright then. You can already customize yours. The structure must be: ".\DVD\sources" If you are with the ".\DVD\Name_of_ISO\sources" path, it will not work.
The first image leak of Windows 11, which I have knowledge, was 21996. So this could be like this: Code: if "%ImageVersion%" equ "6.1.7601" set "SelectedSourceOS=w7" if "%ImageVersion%" equ "6.3.9600" set "SelectedSourceOS=w81" if "%ImageVersion:~0,-6%" equ "10.0" ( if "%ImageBuild%" lss "21996" ( set "SelectedSourceOS=w10" set "OSID=10" if "%ImageBuild%" geq "21996" ( set "SelectedSourceOS=w11" set "OSID=11" ) if "%ImageVersion:~0,-6%" equ "11.0" ( if "%ImageBuild%" geq "22000" ( set "SelectedSourceOS=w11" set "OSID=11" ) ) I do not see the need for this if "%ImageBuild%" geq "10240". Because below it would be Windows 8.1. But as it is within the scope of ImageVersion 10.0, it will not catch earlier versions of Windows.