1. ultimate_live

    ultimate_live MDL Expert

    Mar 15, 2011
    1,022
    671
    60
  2. graver.x

    graver.x MDL Senior Member

    Jan 18, 2020
    347
    484
    10
    #21683 graver.x, Nov 28, 2021
    Last edited: Nov 29, 2021
    @MSMG,
    During the integration of Microsoft Inbox Apps into Ent LTSC 2021, the license .xml files in the Toolkit_v11.10\Bin\AppLicense\ folder were not used

    Toolkit showed an error. I had to copy the required .xml license files to the Inbox Apps files folder (Toolkit_v11.10\Packs\Apps\w10\). Only after that the integration was successful.

    Additional questions:

    1. I didn't see the license file and the option in the Toolkit integration menu for the Microsoft.RawImageExtension. It's not available yet?

    2. What application is meant by: [36] Store Experience Host ?
     
  3. graver.x

    graver.x MDL Senior Member

    Jan 18, 2020
    347
    484
    10
    #21684 graver.x, Nov 29, 2021
    Last edited: Nov 29, 2021
  4. Ace2

    Ace2 MDL Expert

    Oct 10, 2014
    1,857
    1,520
    60
  5. iamspa

    iamspa MDL Novice

    Mar 20, 2017
    26
    0
    0
    upload_2021-11-29_11-25-47.png
    i download v11.10, but when iam running the app, it detect v11.9
     
  6. 正义羊

    正义羊 MDL Senior Member

    Feb 21, 2016
    258
    152
    10
    #21687 正义羊, Nov 29, 2021
    Last edited: Dec 3, 2021
    See the latest thread in page 1088
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. longbeard

    longbeard MDL Novice

    Oct 23, 2021
    35
    18
    0
  8. Why quoting me & tagging anybody else in post ?
    Reason for any Strategy deployed behind it ?
     
  9. longbeard

    longbeard MDL Novice

    Oct 23, 2021
    35
    18
    0
    i forgot to take out your tag but i know @crypticus would b einterested in your reply :)
     
  10. then ypou must send PM to him rather you are quoting me in your quotes. ok no issue . stay blessed
     
  11. longbeard

    longbeard MDL Novice

    Oct 23, 2021
    35
    18
    0
    didnt know i could pm here. done :)
     
  12. graver.x

    graver.x MDL Senior Member

    Jan 18, 2020
    347
    484
    10
    Try removing the CapturePicker component from your RemovePkgsList.txt
     
  13. jinvidia

    jinvidia MDL Member

    Aug 7, 2016
    238
    35
    10
    Thank you. Could be that because from v11.6 i see this capturepicker component in the removepkgs template. Will try that.
     
  14. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,748
    3,575
    60
    #21695 inTerActionVRI, Nov 29, 2021
    Last edited: Dec 1, 2021
    @MSMG, you added suggested changes but missed removing the following lines:

    Code:
    for /f "tokens=3 delims= " %%r in ('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v "UBR" ^| find "REG_DWORD"') do (set /a HostServicePackBuild=%%r)
    for /f "tokens=4-5 delims=. " %%s in ('ver 2^>nul') do set "HostVersion=%%s.%%t"
    
    remove the unused command line:
    Code:
    for /f "tokens=3 delims= " %%j in ('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v "BuildBranch" ^| find "REG_SZ"') do (set HostBuildBranch=%%j)
    
    and change from:
    set HostBuildBranch=
    to
    set HostReleaseVersion=

    This will be like this:
    Code:
    :: Setting Host OS version, architecture and language variables
    set HostArchitecture=
    set HostBuild=
    set HostReleaseVersion=
    set HostDisplayVersion=
    set HostEdition=
    set HostInstallationType=
    set HostLanguage=
    set HostOSName=
    set HostServicePackBuild=
    set HostVersion=
    
    if exist "%WinDir%\SysWOW64" (set "HostArchitecture=x64") else (set "HostArchitecture=x86")
    for /f "tokens=3 delims= " %%i in ('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v "CurrentBuild" ^| find "REG_SZ"') do (set HostBuild=%%i)
    for /f "tokens=3 delims= " %%j in ('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /f "ReleaseId" ^| find "REG_SZ"') do (set /A HostReleaseVersion=%%j & if "%%j" lss "2004" set /A HostDisplayVersion=%%j)
    if "%HostDisplayVersion%" equ "" for /f "tokens=3 delims= " %%k in ('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v "DisplayVersion" ^| find "REG_SZ"') do (set "HostDisplayVersion=^(%HostReleaseVersion% %%k^) ")
    for /f "tokens=3 delims= " %%l in ('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v "EditionID" ^| find "REG_SZ"') do (set HostEdition=%%l)
    for /f "tokens=3 delims= " %%m in ('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v "InstallationType" ^| find "REG_SZ"') do (set HostInstallationType=%%m)
    for /f "tokens=6 delims= " %%o in ('DISM /Online /English /Get-Intl ^| findstr /i /C:"Default system UI language"') do (set HostLanguage=%%o)
    for /f "tokens=7 delims=[]. " %%r in ('ver 2^>nul') do (set /A HostServicePackBuild=%%r)
    for /f "tokens=4-5 delims=[]. " %%s in ('ver 2^>nul') do (set "HostVersion=%%s.%%t" & set "HostOSVersion=%%s")
    if "%HostVersion%" equ "6.1" set "HostOSVersion=7 SP1"
    if "%HostVersion%" equ "6.2" set "HostOSVersion=8"
    if "%HostVersion%" equ "6.3" set "HostOSVersion=8.1"
    if "%HostBuild%" geq "21996" set "HostOSVersion=11"
    set "HostOSName=Windows %HostOSVersion% %HostEdition% %HostInstallationType%"
    
    and change from
    Code:
    echo.%HostOSName% ^(%HostDisplayVersion%^) - v%HostVersion%.%HostBuild%.%HostServicePackBuild% %HostArchitecture% %HostLanguage%
    
    to
    The parentheses were added directly to the value of the HostDisplayVersion variable, to prevent empty displayed in W7, W8 and W8.1.
    Code:
    echo.%HostOSName% %HostDisplayVersion%- v%HostVersion%.%HostBuild%.%HostServicePackBuild% %HostArchitecture% %HostLanguage%
    
    edit: Fix for W7, W8 and W8.1
     
  15. ORZpasserAtw

    ORZpasserAtw MDL Novice

    Sep 8, 2020
    18
    4
    0
    How do I bring Windows 10 LTSC 2021 stock apps back?
    Toolkit v11.10
    I integrated abbodi1406's Store-LTSC2021-2021-11-17.7z it works
    Work prefectly: MicrosoftStickyNotes, WindowsStore
    Installed, but doesn't launch or not showing in start:MSPaint, ScreenSketch, Windows.Photos, WindowsAlarms,WindowsCalculator, WindowsCamera.

    am I missed xml or something?

    Here's my Toolkit_v11.10\Packs\Apps\w10\
    Code:
    2021/11/28  下午 10:35         1,812,037 Microsoft.HEIFImageExtension_1.0.43012.0_x64__8wekyb3d8bbwe.Appx
    2021/11/28  下午 10:04        43,234,010 Microsoft.MicrosoftStickyNotes_4.1.9.0_neutral___8wekyb3d8bbwe.Msixbundle
    2021/11/28  下午 10:32        65,525,310 Microsoft.MSPaint_2021.2105.4017.0_neutral___8wekyb3d8bbwe.AppxBundle
    2020/11/20  上午 08:12         5,204,216 Microsoft.NET.Native.Framework.2.2_2.2.29512.0_x64__8wekyb3d8bbwe.Appx
    2020/11/20  上午 08:12         4,642,818 Microsoft.NET.Native.Framework.2.2_2.2.29512.0_x86__8wekyb3d8bbwe.Appx
    2020/03/17  上午 02:19           244,530 Microsoft.NET.Native.Runtime.2.2_2.2.28604.0_x64__8wekyb3d8bbwe.Appx
    2020/03/17  上午 02:19           199,111 Microsoft.NET.Native.Runtime.2.2_2.2.28604.0_x86__8wekyb3d8bbwe.Appx
    2021/11/28  下午 10:40         3,366,351 Microsoft.RawImageExtension_2.0.23022.0_neutral___8wekyb3d8bbwe.AppxBundle
    2021/11/28  下午 09:34         7,396,110 Microsoft.ScreenSketch_2020.814.2355.0_neutral___8wekyb3d8bbwe.AppxBundle
    2021/10/22  上午 06:54        51,043,120 Microsoft.StorePurchaseApp_12109.1001.10.0_neutral_~_8wekyb3d8bbwe.AppxBundle
    2019/12/07  下午 02:45             2,677 Microsoft.StorePurchaseApp_8wekyb3d8bbwe.xml
    2021/08/21  上午 01:04         4,877,060 Microsoft.UI.Xaml.2.6_2.62108.18004.0_x64__8wekyb3d8bbwe.Appx
    2021/08/21  上午 01:04         4,529,715 Microsoft.UI.Xaml.2.6_2.62108.18004.0_x86__8wekyb3d8bbwe.Appx
    2021/09/15  上午 02:42         5,097,691 Microsoft.UI.Xaml.2.7_7.2109.13004.0_x64__8wekyb3d8bbwe.Appx
    2021/09/15  上午 02:42         4,738,254 Microsoft.UI.Xaml.2.7_7.2109.13004.0_x86__8wekyb3d8bbwe.Appx
    2021/10/13  上午 05:11         6,638,831 Microsoft.VCLibs.140.00.UWPDesktop_14.0.30704.0_x64__8wekyb3d8bbwe.Appx
    2021/10/13  上午 05:11         5,952,589 Microsoft.VCLibs.140.00.UWPDesktop_14.0.30704.0_x86__8wekyb3d8bbwe.Appx
    2021/10/13  上午 05:07           859,530 Microsoft.VCLibs.140.00_14.0.30704.0_x64__8wekyb3d8bbwe.Appx
    2021/10/13  上午 05:07           731,418 Microsoft.VCLibs.140.00_14.0.30704.0_x86__8wekyb3d8bbwe.Appx
    2021/11/28  下午 09:44           559,370 Microsoft.WebpImageExtension_1.0.42351.0_x64__8wekyb3d8bbwe.Appx
    2021/11/28  下午 10:32       206,151,864 Microsoft.Windows.Photos_2021.21090.29009.0_neutral___8wekyb3d8bbwe.AppxBundle
    2021/11/28  下午 10:44        24,594,175 Microsoft.WindowsAlarms_2022.2109.1.0_neutral___8wekyb3d8bbwe.Msixbundle
    2021/11/28  下午 10:42        23,307,148 Microsoft.WindowsCalculator_2021.2109.9.0_neutral___8wekyb3d8bbwe.AppxBundle
    2021/11/28  下午 10:42        11,713,365 Microsoft.WindowsCamera_2022.2110.0.0_neutral___8wekyb3d8bbwe.Msixbundle
    2021/11/28  下午 10:30         9,129,769 Microsoft.WindowsSoundRecorder_2021.2103.28.0_neutral___8wekyb3d8bbwe.AppxBundle
    2021/11/05  下午 07:15        79,097,939 Microsoft.WindowsStore_22110.1401.16.0_neutral_~_8wekyb3d8bbwe.Msixbundle
    2019/12/07  下午 02:45             2,665 Microsoft.WindowsStore_8wekyb3d8bbwe.xml
    2021/11/13  下午 12:04        14,316,694 Microsoft.XboxIdentityProvider_12.83.12001.0_neutral_~_8wekyb3d8bbwe.AppxBundle
    2019/12/07  下午 02:47             2,693 Microsoft.XboxIdentityProvider_8wekyb3d8bbwe.xml
     
  16. NepNoireX

    NepNoireX MDL Novice

    Jul 16, 2018
    15
    1
    0
    Where's the .net framework 3.5 pack?
     
  17. 正义羊

    正义羊 MDL Senior Member

    Feb 21, 2016
    258
    152
    10

    Why not v12.0?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  18. 正义羊

    正义羊 MDL Senior Member

    Feb 21, 2016
    258
    152
    10
    @MSMG , When I use Toolkit in Windows 7, it speaks:

    Microsoft Windows 6 Ultimate Edition () (v6.1.7601.24546) x86 zh-CN

    Instead of:

    Microsoft Windows 7 Ultimate Edition (v6.1.7601.24546) x86 zh-CN

    This issue was found in my test locali
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...