├── Add-Store.cmd ├── LICENSE └── README.md /Add-Store.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | :: Check Windows version (Windows 11 24H2 minimum required) 4 | for /f "tokens=6 delims=[]. " %%G in ('ver') do if %%G lss 16299 goto :version 5 | 6 | :: Check if script is run with administrative privileges 7 | %windir%\system32\reg.exe query "HKU\S-1-5-19" 1>nul 2>nul || goto :uac 8 | 9 | :: Enable extensions and set architecture type 10 | setlocal enableextensions 11 | if /i "%PROCESSOR_ARCHITECTURE%" equ "AMD64" ( 12 | set "arch=x64" 13 | ) else ( 14 | set "arch=arm64" 15 | ) 16 | 17 | :: Navigate to script directory 18 | cd /d "%~dp0" 19 | 20 | :: Verify necessary files exist 21 | if not exist "*WindowsStore*.msixbundle" goto :nofiles 22 | if not exist "*WindowsStore*.xml" goto :nofiles 23 | 24 | :: Set file variables 25 | for /f %%i in ('dir /b *WindowsStore*.msixbundle 2^>nul') do set "Store=%%i" 26 | for /f %%i in ('dir /b *NET.Native.Framework*.appx 2^>nul ^| find /i "x64"') do set "FrameworkX64=%%i" 27 | for /f %%i in ('dir /b *NET.Native.Framework*.appx 2^>nul ^| find /i "arm64"') do set "Frameworkarm64=%%i" 28 | for /f %%i in ('dir /b *NET.Native.Runtime*.appx 2^>nul ^| find /i "x64"') do set "RuntimeX64=%%i" 29 | for /f %%i in ('dir /b *NET.Native.Runtime*.appx 2^>nul ^| find /i "arm64"') do set "Runtimearm64=%%i" 30 | for /f %%i in ('dir /b *VCLibs*.appx 2^>nul ^| find /i "x64"') do set "VCLibsX64=%%i" 31 | for /f %%i in ('dir /b *VCLibs*.appx 2^>nul ^| find /i "arm64"') do set "VCLibsarm64=%%i" 32 | for /f %%i in ('dir /b *UX.Xaml*.appx 2^>nul ^| find /i "x64"') do set "UXXamlX64=%%i" 33 | for /f %%i in ('dir /b *UX.Xaml*.appx 2^>nul ^| find /i "arm64"') do set "UXXamlarm64=%%i" 34 | 35 | :: Check optional components 36 | if exist "*StorePurchaseApp*.appxbundle" if exist "*StorePurchaseApp*.xml" ( 37 | for /f %%i in ('dir /b *StorePurchaseApp*.appxbundle 2^>nul') do set "PurchaseApp=%%i" 38 | ) 39 | if exist "*DesktopAppInstaller*.msixbundle" if exist "*DesktopAppInstaller*.xml" ( 40 | for /f %%i in ('dir /b *DesktopAppInstaller*.msixbundle 2^>nul') do set "AppInstaller=%%i" 41 | ) 42 | 43 | :: Set dependencies based on architecture 44 | if /i %arch%==x64 ( 45 | set "DepStore=%VCLibsX64%,%FrameworkX64%,%RuntimeX64%,%UXXamlX64%" 46 | set "DepPurchase=%VCLibsX64%,%FrameworkX64%,%RuntimeX64%,%UXXamlX64%" 47 | set "DepInstaller=%VCLibsX64%,%UXXamlX64%" 48 | ) else ( 49 | set "DepStore=%VCLibsarm64%,%Frameworkarm64%,%Runtimearm64%,%UXXamlarm64%" 50 | set "DepPurchase=%VCLibsarm64%,%Frameworkarm64%,%Runtimearm64%,%UXXamlarm64%" 51 | set "DepInstaller=%VCLibsarm64%,%UXXamlarm64%" 52 | ) 53 | 54 | :: Verify all dependencies exist 55 | for %%i in (%DepStore%) do ( 56 | if not exist "%%i" goto :nofiles 57 | ) 58 | 59 | :: PowerShell command setup 60 | set "PScommand=PowerShell -NoLogo -NoProfile -NonInteractive -InputFormat None -ExecutionPolicy Bypass" 61 | 62 | :: Add Microsoft Store 63 | echo. 64 | echo ============================================================ 65 | echo Installing Microsoft Store 66 | echo ============================================================ 67 | echo. 68 | 1>nul 2>nul %PScommand% Add-AppxProvisionedPackage -Online -PackagePath %Store% -DependencyPackagePath %DepStore% -LicensePath Microsoft.WindowsStore_8wekyb3d8bbwe.xml 69 | for %%i in (%DepStore%) do ( 70 | %PScommand% Add-AppxPackage -Path %%i 71 | ) 72 | %PScommand% Add-AppxPackage -Path %Store% 73 | 74 | :: Optional components installation 75 | if defined PurchaseApp ( 76 | echo. 77 | echo ============================================================ 78 | echo Installing Store Purchase App 79 | echo ============================================================ 80 | echo. 81 | 1>nul 2>nul %PScommand% Add-AppxProvisionedPackage -Online -PackagePath %PurchaseApp% -DependencyPackagePath %DepPurchase% -LicensePath Microsoft.StorePurchaseApp_8wekyb3d8bbwe.xml 82 | %PScommand% Add-AppxPackage -Path %PurchaseApp% 83 | ) 84 | 85 | if defined AppInstaller ( 86 | echo. 87 | echo ============================================================ 88 | echo Installing App Installer 89 | echo ============================================================ 90 | echo. 91 | 1>nul 2>nul %PScommand% Add-AppxProvisionedPackage -Online -PackagePath %AppInstaller% -DependencyPackagePath %DepInstaller% -LicensePath Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.xml 92 | %PScommand% Add-AppxPackage -Path %AppInstaller% 93 | ) 94 | 95 | goto :fin 96 | 97 | :uac 98 | echo. 99 | echo ============================================================ 100 | echo Error: Please run the script as Administrator 101 | echo ============================================================ 102 | echo. 103 | echo Press any key to exit. 104 | pause >nul 105 | exit 106 | 107 | :version 108 | echo. 109 | echo ============================================================ 110 | echo Error: Windows 11 24H2 (build 26100 or later) required 111 | echo ============================================================ 112 | echo. 113 | echo Press any key to exit. 114 | pause >nul 115 | exit 116 | 117 | :nofiles 118 | echo. 119 | echo ============================================================ 120 | echo Error: Required files are missing in the current directory 121 | echo ============================================================ 122 | echo. 123 | echo Press any key to exit. 124 | pause >nul 125 | exit 126 | 127 | :fin 128 | echo. 129 | echo ============================================================ 130 | echo Installation Complete 131 | echo ============================================================ 132 | echo. 133 | echo Press any key to exit. 134 | pause >nul 135 | exit 136 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | This License applies only to the files: 2 | Add-Store.cmd 3 | README.md 4 | The remaining files are Microsoft property from: 5 | https://learn.microsoft.com/en-us/azure/virtual-desktop/windows-11-language-packs 6 | (usually LanguagePacks and InboxApps ISOs are linked here) 7 | 8 | Deeplinks as of October '24: 9 | https://software-static.download.prss.microsoft.com/dbazure/888969d5-f34g-4e03-ac9d-1f9786c66749/26100.1742.240904-1906.ge_release_svc_prod1_amd64fre_InboxApps.iso 10 | https://software-static.download.prss.microsoft.com/dbazure/888969d5-f34g-4e03-ac9d-1f9786c66749/26100.1.240331-1435.ge_release_amd64fre_CLIENT_LOF_PACKAGES_OEM.iso 11 | 12 | This is free and unencumbered software released into the public domain. 13 | 14 | Anyone is free to copy, modify, publish, use, compile, sell, or 15 | distribute this software, either in source code form or as a compiled 16 | binary, for any purpose, commercial or non-commercial, and by any 17 | means. 18 | 19 | In jurisdictions that recognize copyright laws, the author or authors 20 | of this software dedicate any and all copyright interest in the 21 | software to the public domain. We make this dedication for the benefit 22 | of the public at large and to the detriment of our heirs and 23 | successors. We intend this dedication to be an overt act of 24 | relinquishment in perpetuity of all present and future rights to this 25 | software under copyright law. 26 | 27 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 28 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 29 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 30 | IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR 31 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 32 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 33 | OTHER DEALINGS IN THE SOFTWARE. 34 | 35 | For more information, please refer to 36 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # LTSC-Add-MicrosoftStore 2 | Add Windows Store to Windows 11 24H2 LTSC 3 | 4 | The LTSC variant of Windows 11 24H2 does not include the Microsoft Store app by default. If you need to use it, you'll have to install the app manually, as Microsoft does not provide a straightforward installation method. The process is similar to customizing a Windows 11 Enterprise system, as outlined in the article ["Add languages to a Windows 11 Enterprise image"](https://learn.microsoft.com/en-us/azure/virtual-desktop/windows-11-language-packs). However, since Microsoft's installation includes a lot of additional apps, this guide provides the minimal components required to get the Microsoft Store app working with your Windows 11 24H2 LTSC installation. 5 | 6 | ## OPTION 1: manual install 7 | 8 | [Download full Package](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/LTSC-Add-MicrosoftStore-24H2.zip) 9 | 10 | > [!NOTE] 11 | > to install required components: 12 | > 1. Microsoft Store
13 | > requires: [VCLibs](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip), [NET.Native.Framework, NET.Native.Runtime](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.NET.Native.zip), [UI.Xaml](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.UI.Xaml.zip) 14 | > 3. Store Purchase App
15 | > requires: [VCLibs](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip), [NET.Native.Framework, NET.Native.Runtime](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.NET.Native.zip), [UI.Xaml](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.UI.Xaml.zip) 16 | > 5. Desktop App Installer
17 | > requires: [VCLibs](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip), [UI.Xaml](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.UI.Xaml.zip) 18 | 19 | ## To install, follow these steps: 20 | Run `Add-Store.cmd` as Administrator 21 | > [!IMPORTANT] 22 | > Ensure you have administrative privileges when executing this file to allow for proper installation. 23 | 24 | ### Customize Your Installation 25 | > [!TIP] 26 | > If you do not require certain features such as Desktop App Installer or Purchase App, you can delete their corresponding `.appxbundle` / `.msixbundle` files before running the installation. See below list of optional InboxApps. 27 | 28 | ### Troubleshooting the Store Functionality 29 | - If the Microsoft Store is not functioning correctly after installation, first try rebooting your system. 30 | 31 | - If the issue persists, open the Command Prompt as an administrator and run the following command: 32 | 33 | ```PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"``` 34 | 35 | After running the command, reboot your system again. 36 | 37 | ## Addition troubleshooting 38 | - right click start 39 | - select `Run` 40 | - type in: `WSReset.exe` 41 | 42 | > [!NOTE] 43 | > This will clear the cache if needed. 44 | 45 | ## InboxApps (optional and manually to install) 46 | 47 | After installing the Store App from this package, you can simply double klick to install each of the remaining packages as needed (after extracting the content per .ZIP archive). 48 | 49 | |Name|Size|Link|Requirements*| 50 | |:---|---:|---:|---:| 51 | |AV1VideoExtension|4.56 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.AV1VideoExtension.zip)|-| 52 | |AVCEncoderVideoExtension|7.91 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.AVCEncoderVideoExtension.zip)|-| 53 | |Alarms|29.4 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.WindowsAlarms.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip) [2](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.UI.Xaml.zip) [3](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.NET.Native.zip) [4](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.WindowsAppRuntime.zip)| 54 | |AppRuntime|120 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.WindowsAppRuntime.zip)|-| 55 | |ApplicationCompatibilityEnhancements|6.6 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.ApplicationCompatibilityEnhancements.zip)|-| 56 | |AutoSuperResolution|11 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.AutoSuperResolution.zip)|-| 57 | |BingNews|35 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.BingNews.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip) [2](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.UI.Xaml.zip) [3](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.NET.Native.zip) [a] [b]| 58 | |BingSearch|1.11 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.BingSearch.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip)| 59 | |BingWeather|36 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.BingWeather.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip) [2](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.UI.Xaml.zip) [3](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.NET.Native.zip) [a] [b]| 60 | |Calculator|27.6 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.WindowsCalculator.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip) [2](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.UI.Xaml.zip) [3](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.NET.Native.zip)| 61 | |Camera|21.4 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.WindowsCamera.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip) [2](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.UI.Xaml.zip) [3](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.NET.Native.zip)| 62 | |Client.WebExperience|36.6 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/MicrosoftWindows.Client.WebExperience.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip) [4](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.WindowsAppRuntime.zip)| 63 | |Clipchamp|15.2 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Clipchamp.Clipchamp.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip)| 64 | |CrossDevice|7.68 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/MicrosoftWindows.CrossDevice.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip) [4](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.WindowsAppRuntime.zip)| 65 | |D3DMappingLayers|105 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.D3DMappingLayers.zip)|-| 66 | |DevHome|379 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/DevHome.zip)|-| 67 | |Family|1.06 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/MicrosoftCorporationII.MicrosoftFamily.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip) [4](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.WindowsAppRuntime.zip)| 68 | |FeedbackHub|35.7 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.WindowsFeedbackHub.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip) [2](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.UI.Xaml.zip) [3](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.NET.Native.zip)| 69 | |FlipGridPWA|49.3 KB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/FlipGridPWA.zip)|-| 70 | |GamingApp|331 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.GamingApp.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip) [a]| 71 | |GetHelp|20.8 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.GetHelp.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip) [2](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.UI.Xaml.zip) [3](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.NET.Native.zip) [4](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.WindowsAppRuntime.zip)| 72 | |HEIFImageExtension|6.5 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.HEIFImageExtension.zip)|-| 73 | |Journal|487 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.MicrosoftJournal.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip) [2](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.UI.Xaml.zip) [3](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.NET.Native.zip)| 74 | |MPEG2VideoExtension|2.3 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.MPEG2VideoExtension.zip)|-| 75 | |Messaging|32.7 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.Messaging.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip) [2](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.UI.Xaml.zip) [3](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.NET.Native.zip)| 76 | |NET.Native.Framework/Runtime|4.93 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.NET.Native.zip)|-| 77 | |Notepad|11.4 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.WindowsNotepad.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip) [2](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.UI.Xaml.zip)| 78 | |OfficeHub|14.4 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.MicrosoftOfficeHub.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip)| 79 | |OneConnect|14.6 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.OneConnect.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip) [2](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.UI.Xaml.zip) [3](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.NET.Native.zip)| 80 | |OutlookForWindows|24.6 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.OutlookForWindows.zip)|-| 81 | |PCManager|26.1 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.MicrosoftPCManager.zip)|[4](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.WindowsAppRuntime.zip)| 82 | |Paint|8.26 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.Paint.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip) [a]| 83 | |Photos|20.8 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.Windows.Photos.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip) [2](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.UI.Xaml.zip) [3](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.NET.Native.zip) [4](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.WindowsAppRuntime.zip) [5](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.Services.Store.Engagement.zip)| 84 | |PowerAutomateDesktop|430 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.PowerAutomateDesktop.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip)| 85 | |QuickAssist|4.32 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/MicrosoftCorporationII.QuickAssist.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip)| 86 | |RawImageExtension|2.84 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.RawImageExtension.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip)| 87 | |ScreenSketch|6.77 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.ScreenSketch.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip) [2](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.UI.Xaml.zip) [4](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.WindowsAppRuntime.zip)| 88 | |SecHealthUI|14.2 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.SecHealthUI.zip)|-| 89 | |Services.Store.Engagement|580 KB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.Services.Store.Engagement.zip)|-| 90 | |SolitaireCollection|124 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.MicrosoftSolitaireCollection.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip) [2](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.UI.Xaml.zip) [3](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.NET.Native.zip)| 91 | |SoundRecorder|8.33 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.WindowsSoundRecorder.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip) [2](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.UI.Xaml.zip) [3](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.NET.Native.zip)| 92 | |StickyNotes|41.8 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.MicrosoftStickyNotes.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip) [3](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.NET.Native.zip) [5](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.Services.Store.Engagement.zip)| 93 | |Teams|8.04 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/MSTeams.zip)|-| 94 | |Terminal|19.8 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.WindowsTerminal.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip) [2](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.UI.Xaml.zip)| 95 | |Todos|84.3 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.Todos.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip) [2](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.UI.Xaml.zip) [3](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.NET.Native.zip) [5](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.Services.Store.Engagement.zip)| 96 | |UI.Xaml|23.7 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.UI.Xaml.zip)|-| 97 | |VCLibs|2.93 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip)|-| 98 | |VP9VideoExtensions|6.62 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VP9VideoExtensions.zip)|-| 99 | |WebMediaExtensions|3.05 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.WebMediaExtensions.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip)| 100 | |WebpImageExtension|1.09 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.WebpImageExtension.zip)|-| 101 | |Whiteboard|604 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.Whiteboard.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip) [3](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.NET.Native.zip)| 102 | |Xbox.TCUI|10.6 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.Xbox.TCUI.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip) [3](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.NET.Native.zip)| 103 | |XboxGamingOverlay|6.43 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.XboxGamingOverlay.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip) [2](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.UI.Xaml.zip)| 104 | |XboxIdentityProvider|18.1 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.XboxIdentityProvider.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip) [3](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.NET.Native.zip)| 105 | |XboxSpeechToTextOverlay|1.49 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.XboxSpeechToTextOverlay.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip)| 106 | |YourPhone|395 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.YourPhone.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip) [2](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.UI.Xaml.zip) [3](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.NET.Native.zip) [4](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.WindowsAppRuntime.zip)| 107 | |ZuneMusic|36.7 MB|[Download](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.ZuneMusic.zip)|[1](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.VCLibs.zip) [3](https://github.com/minihub/LTSC-Add-MicrosoftStore/releases/download/LTSC-Add-MicrosoftStore-24H2/Microsoft.NET.Native.zip) [c]| 108 | 109 | Requirements*: 110 | 1. VCLibs 111 | 2. UI.Xaml 112 | 3. NET.Native .Framework & .Runtime 113 | 4. AppRuntime 114 | 5. Services.Store.Engagement 115 | 116 | Requirements* (but embedded in installer):

117 | [a] Advertising.Xaml
118 | [b] WinJs
119 | [c] Media.PlayReadyClient
120 | 121 | ## OPTION 2: automatic install 122 | 123 | LTSC editions do not come with store apps pre-installed. To install them, follow the steps below. 124 | 125 | 1. Make sure the Internet is connected. 126 | 2. Open Powershell as admin and enter: `wsreset -i` 127 | 3. Wait for a notification to appear that the store app is installed, it may take a few minutes. 128 | 4. install [App Installer](https://apps.microsoft.com/detail/9nblggh4nns1). This app is very useful; it includes WinGet, enabling easy installation of .appx packages. 129 | --------------------------------------------------------------------------------