I used in my ISO a licence file from a computer with win10 installed. It works OK because that app is free. The downside is that licence file has an expiration date. IF store app is installed will take care of that. Note: Even are x64, some apps are checking for x86 dependecies too.
Although both the Client and Server do have Store back-end files which get updated through CU, only the Client has the Store front-end App to install the Apps. You can try installing the Store and it's dependencies for Server may be it will work, last I did tested with Server 2012 R2 and Server 2016. You may required to enable any store related policy using Policy Editor if the Store doesn't work. Will try with Server 2019/Server 2022 when I do get time.
The Integrate Microsoft Inbox Apps is only for integrating the updates Apps that will be bundled with the installation disc. Right now the updated apps for Windows 10 and 11 doesn't require both x86 and x64 dependency, though some other apps when installed through store app may require the x86 and install them before installing the Apps. Do specify any Inbox App requiring x86 dependency for 64-bit OS, will check out.
"msmg hi, thanks for your responce a question if you will regarding package removal and the packages list. if as an example i wanted to prevent the removal of a cirten package would adding # before the package name be enough for it to be retained? exammple #windows store when the toolkit helper methordaligy is used? you is a cool person Majid
I work in Windows 10 19044.1237 I make an image of Windows 11 22000.194.0 RU x64 There are no spaces in the paths. C:\msmg\* On version 11.8, everything works well, but in the new version that you posted on the forum, there is an error that you posted above.
Yes, but just to let it working for now. Even I left the original lines commented. today's cmd version from :: Setting Source OS variablesset SelectedSourceOS= to :: Setting Source OS variables set SelectedSourceOS= from Code: :: Setting Windows Media Feature Pack folder path according to selected Source OS if "%SelectedSourceOS%" neq "w10" set "MediaFeaturePack=%MediaFeaturePack%\%SelectedSourceOS%" if "%SelectedSourceOS%" neq "w7" if "%SelectedSourceOS%" neq "w81" set "MediaFeaturePack=%MediaFeaturePack%\%SelectedSourceOS%\%PackageVersion%" to Code: :: Setting Windows Media Feature Pack folder path according to selected Source OS if "%SelectedSourceOS%" neq "w10" if "%SelectedSourceOS%" neq "w11" set "MediaFeaturePack=%MediaFeaturePack%\%SelectedSourceOS%" if "%SelectedSourceOS%" neq "w7" if "%SelectedSourceOS%" neq "w81" set "MediaFeaturePack=%MediaFeaturePack%\%SelectedSourceOS%\%PackageVersion%" from /v22H2 to /v22H1
That is to comment certain lines so that the ToolkitHelper would exclude those lines, yes it's in work to add comments for list, the same can be used for excluding components too.
The same thing as previous cases: To prevent it from being able to find the path to the files: "Microsoft.VCLibs120.00.UWPDesktop" and "Microsoft.VCLibs.140.00.UWPDesktop" and set the variables "VCLibs12_Appx" and "VCLibs14_Appx" erroneously. You can reverse the positions *_ to _*. from Code: for /f %%i IN ('"dir /b Microsoft.VCLibs.110.00.UWPDesktop*_%ImageArchitecture%__8wekyb3d8bbwe.Appx" 2^>nul') do set "VCLibsUWPDesktop11_Appx=/DependencyPackagePath:%Apps%\%%i" for /f %%i IN ('"dir /b Microsoft.VCLibs.120.00.UWPDesktop*_%ImageArchitecture%__8wekyb3d8bbwe.Appx" 2^>nul') do set "VCLibsUWPDesktop12_Appx=/DependencyPackagePath:%Apps%\%%i" for /f %%i IN ('"dir /b Microsoft.VCLibs.140.00.UWPDesktop*_%ImageArchitecture%__8wekyb3d8bbwe.Appx" 2^>nul') do set "VCLibsUWPDesktop14_Appx=/DependencyPackagePath:%Apps%\%%i" for /f %%i IN ('"dir /b Microsoft.VCLibs.120.00*_%ImageArchitecture%__8wekyb3d8bbwe.Appx" 2^>nul') do set "VCLibs12_Appx=/DependencyPackagePath:%Apps%\%%i" for /f %%i IN ('"dir /b Microsoft.VCLibs.140.00*_%ImageArchitecture%__8wekyb3d8bbwe.Appx" 2^>nul') do set "VCLibs14_Appx=/DependencyPackagePath:%Apps%\%%i" to Code: for /f %%i IN ('"dir /b Microsoft.VCLibs.110.00.UWPDesktop*%ImageArchitecture%*.Appx" 2^>nul') do set "VCLibsUWPDesktop11_Appx=/DependencyPackagePath:%Apps%\%%i" for /f %%i IN ('"dir /b Microsoft.VCLibs.120.00.UWPDesktop*%ImageArchitecture%*.Appx" 2^>nul') do set "VCLibsUWPDesktop12_Appx=/DependencyPackagePath:%Apps%\%%i" for /f %%i IN ('"dir /b Microsoft.VCLibs.140.00.UWPDesktop*%ImageArchitecture%*.Appx" 2^>nul') do set "VCLibsUWPDesktop14_Appx=/DependencyPackagePath:%Apps%\%%i" for /f %%i IN ('"dir /b Microsoft.VCLibs.120.00_*%ImageArchitecture%*.Appx" 2^>nul') do set "VCLibs12_Appx=/DependencyPackagePath:%Apps%\%%i" for /f %%i IN ('"dir /b Microsoft.VCLibs.140.00_*%ImageArchitecture%*.Appx" 2^>nul') do set "VCLibs14_Appx=/DependencyPackagePath:%Apps%\%%i" and... Only in these "For" commands to avoid problems with files named with "_~_". from __8wekyb3d8bbwe*.Appx to *.Appx or to *8wekyb3d8bbwe*.Appx
@MSMG, Some doubles "%" below. Code: for /f %%i IN ('"dir /b Microsoft.UI.Xaml.2.0*%ImageArchitecture%%*.Appx" 2^>nul') do set "UIXaml20_Appx=/DependencyPackagePath:%Apps%\%%i" for /f %%i IN ('"dir /b Microsoft.UI.Xaml.2.1*%ImageArchitecture%%*.Appx" 2^>nul') do set "UIXaml21_Appx=/DependencyPackagePath:%Apps%\%%i" for /f %%i IN ('"dir /b Microsoft.UI.Xaml.2.2*%ImageArchitecture%%*.Appx" 2^>nul') do set "UIXaml22_Appx=/DependencyPackagePath:%Apps%\%%i" for /f %%i IN ('"dir /b Microsoft.UI.Xaml.2.3*%ImageArchitecture%%*.Appx" 2^>nul') do set "UIXaml23_Appx=/DependencyPackagePath:%Apps%\%%i" for /f %%i IN ('"dir /b Microsoft.UI.Xaml.2.4*%ImageArchitecture%%*.Appx" 2^>nul') do set "UIXaml24_Appx=/DependencyPackagePath:%Apps%\%%i" for /f %%i IN ('"dir /b Microsoft.UI.Xaml.2.5*%ImageArchitecture%%*.Appx" 2^>nul') do set "UIXaml25_Appx=/DependencyPackagePath:%Apps%\%%i" for /f %%i IN ('"dir /b Microsoft.UI.Xaml.2.6*%ImageArchitecture%%*.Appx" 2^>nul') do set "UIXaml26_Appx=/DependencyPackagePath:%Apps%\%%i" for /f %%i IN ('"dir /b Microsoft.UI.Xaml.2.7*%ImageArchitecture%%*.Appx" 2^>nul') do set "UIXaml27_Appx=/DependencyPackagePath:%Apps%\%%i" The same thing as previous cases: To prevent it from being able to find the path to the files: "Microsoft.VCLibs120.00.UWPDesktop" and "Microsoft.VCLibs.140.00.UWPDesktop" and set the variables "VCLibs12_Appx" and "VCLibs14_Appx" erroneously. from Code: for /f %%i IN ('"dir /b Microsoft.VCLibs.120.00*%ImageArchitecture%*.Appx" 2^>nul') do set "VCLibs12_Appx=/DependencyPackagePath:%Apps%\%%i" for /f %%i IN ('"dir /b Microsoft.VCLibs.140.00*%ImageArchitecture%*.Appx" 2^>nul') do set "VCLibs14_Appx=/DependencyPackagePath:%Apps%\%%i" to Code: for /f %%i IN ('"dir /b Microsoft.VCLibs.120.00_*%ImageArchitecture%*.Appx" 2^>nul') do set "VCLibs12_Appx=/DependencyPackagePath:%Apps%\%%i" for /f %%i IN ('"dir /b Microsoft.VCLibs.140.00_*%ImageArchitecture%*.Appx" 2^>nul') do set "VCLibs14_Appx=/DependencyPackagePath:%Apps%\%%i" from Code: if "%C_ClientWebExperience%" equ "-" RemoveFolder "%InstallMount%\%%i\Program Files\WindowsApps\MicrosoftWindows.Client.WebExperience_321.14700.0.9_x64__cw5n1h2txyewy" to Code: if "%C_ClientWebExperience%" equ "-" call :RemoveFolder "%InstallMount%\%%i\Program Files\WindowsApps\MicrosoftWindows.Client.WebExperience_321.14700.0.9_x64__cw5n1h2txyewy" Reporting. AV1 does not integrate into the build 17763 x86, even with /SkipLicense. StickyNotes on W11 Code: ------------------------------------------------------------------------------- Integrating Sticky Notes Provisioned Appx Package... ------------------------------------------------------------------------------- Deployment Image Servicing and Management tool Version: 10.0.22000.1 Image Version: 10.0.22000.1 Error: 0xc1570117 The specified package is not a bundle containing a stub package. A stub package is required when the InstallStub option is specfied, or the package family's stub preference is configured to install a stub package. Thnks!