1. xinso

    xinso MDL Guru

    Mar 5, 2009
    15,089
    15,292
    340
    Is there Store for Server? If not, how about 0 "Client"?
     
  2. Titanos

    Titanos MDL Novice

    Dec 11, 2019
    31
    28
    0
    #20503 Titanos, Sep 28, 2021
    Last edited: Sep 28, 2021
    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.
     
  3. abhijeetv2

    abhijeetv2 MDL Novice

    Aug 28, 2018
    8
    3
    0
    Thank you so much, Microsoft just loves screwing with normal joe.
     
  4. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    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.

     
  5. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    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.

     
  6. mhussain

    mhussain MDL Senior Member

    Oct 1, 2012
    384
    161
    10
    "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
     
  7. forslaey

    forslaey MDL Novice

    Mar 4, 2021
    12
    6
    0
    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.
     
  8. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    #20510 inTerActionVRI, Sep 28, 2021
    Last edited: Sep 28, 2021
    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
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    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.

     
  10. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    Have fixed the issue, do download the Toolkit.cmd again.

     
  11. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    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
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. xlincn

    xlincn MDL Junior Member

    Nov 9, 2013
    59
    18
    0
    9/29,Toolkit.cmd line 8874 is not much "C"?!
     
  13. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    Fixed.

     
  14. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    @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!
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  15. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    Thanks, have fixed the code now and uploaded.

    Will check with AV1 Codec and Sticky Notes.

     
  16. kovadimka

    kovadimka MDL Novice

    Mar 19, 2020
    40
    12
    0
    Windows 11, getting error while removing ClientWebExperience with ToolkitHelper, latest Toolkit.cmd.
     
  17. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    Redownload the Toolkit.cmd.