Windows 11 LTSC (Long-Term Servicing Channel) versions are designed for specific enterprise scenarios, emphasizing stability and reduced feature churn. This focus, however, often means that certain components commonly found in consumer versions of Windows, such as the Microsoft Store, are absent by default. For users who require access to Store applications within an LTSC environment, installing the Microsoft Store becomes a necessary, albeit slightly unconventional, undertaking. This guide will walk you through the process, providing a comprehensive understanding of the steps involved and the underlying principles.
Understanding Windows 11 LTSC and the Microsoft Store Absence
Windows 11 LTSC releases are a departure from the typical feature update cadence of Windows 11. Instead of receiving new features every six months or so, LTSC versions are updated with security patches and critical bug fixes, but they do not incorporate new functionalities. This deliberate omission of features aims to provide a stable platform that requires less frequent and less disruptive re-validation for organizations deploying it across a large number of devices.
![]()
The Microsoft Store, a hub for applications, games, and entertainment content, is a prime example of a feature that is often excluded from LTSC editions. Its dynamic nature, with frequent updates and new app additions, runs counter to the LTSC’s core philosophy of long-term stability. For IT administrators, this means that if their organization relies on certain Store applications for operational needs, they need a method to provision them. For individual users who have opted for an LTSC installation for its perceived stability or minimal resource footprint, but still wish to access Store apps, a manual installation process is the solution.
It’s crucial to acknowledge that installing the Microsoft Store on an LTSC version of Windows 11 is not officially supported by Microsoft for the consumer audience. While the methods described here are functional, they may introduce complexities or potential compatibility issues down the line, especially with future LTSC updates. Therefore, proceed with caution and ensure you have adequate backup and recovery options in place.
Method 1: Using PowerShell with the winget Package Manager
The most streamlined and often successful method for installing the Microsoft Store on Windows 11 LTSC involves leveraging the winget command-line tool, a built-in package manager for Windows. winget allows users to discover, install, upgrade, and remove applications from their command line. While the Store itself isn’t directly packaged as a simple winget installable application, we can use it to install the necessary underlying components.
Prerequisites and Preparation
Before you begin, ensure that you have administrative privileges on your Windows 11 LTSC installation. You will also need an active internet connection to download the necessary packages. It’s a good practice to create a system restore point before making significant changes to your operating system. This will allow you to revert to a previous state if any issues arise.
-
Open PowerShell as Administrator:
- Click the Start button.
- Type “PowerShell”.
- Right-click on “Windows PowerShell” and select “Run as administrator.”
- Click “Yes” on the User Account Control (UAC) prompt.
-
Verify
wingetInstallation:- In the elevated PowerShell window, type the following command and press Enter:
powershell
winget --version
- If
wingetis installed, you will see its version number. If not, you may need to install the “App Installer” from the Microsoft Store, which is a bit of a catch-22 if the Store isn’t present. However, in many LTSC builds where the Store is absent,wingetis still included or can be installed separately through Microsoft Store packages available for download. Ifwingetis not found, you might need to download the latest version of the App Installer from the Microsoft Store website and install it manually.
- In the elevated PowerShell window, type the following command and press Enter:
Installing the Microsoft Store Components
The installation process involves installing the “Windows Store” and “Microsoft Store Package” using winget. These are the core components that enable the Store’s functionality.
-
Install the Windows Store:
- Execute the following command in the administrator PowerShell window:
powershell
winget install Microsoft.WindowsStore -e --source winget
- This command searches the
wingetsource for the official Microsoft Store package. The-eflag ensures an exact match, and--source wingetspecifies the defaultwingetrepository.wingetwill then download and install the necessary files.
- Execute the following command in the administrator PowerShell window:
-
Install the Microsoft Store Package:
- Following the successful installation of the Windows Store, you may also need to install its associated package for full functionality. Execute this command:
powershell
winget install Microsoft.WindowsAppRuntime -e --source winget
- The Windows App SDK Runtime (formerly Project Reunion) is a set of components that enable modern Windows app development and deployment, and it’s essential for the Microsoft Store to function correctly on newer Windows versions.
- Following the successful installation of the Windows Store, you may also need to install its associated package for full functionality. Execute this command:
-
Restart Your Computer:
- After the commands complete without errors, it is highly recommended to restart your computer for the changes to take full effect.
Once your system has rebooted, you should be able to find and launch the Microsoft Store by searching for it in the Start Menu.
Method 2: Manual Installation via a Script
If the winget method encounters issues or is unavailable, an alternative approach involves using a pre-packaged script that automates the download and installation of the Microsoft Store package. These scripts typically fetch the necessary .appx or .msix bundles from official sources and install them using PowerShell’s deployment cmdlets.

Obtaining and Preparing the Installation Script
There are several community-developed scripts available online that facilitate this process. A widely recognized and reliable approach involves using scripts that download the Store from sources like store.rg-adguard.net, which provides direct download links for Microsoft Store packages.
-
Find a Reputable Script:
- Search for “Windows 11 LTSC Microsoft Store installer script” on trusted technology forums or developer websites. Look for scripts that are frequently updated and have positive community feedback.
- Caution: Always be cautious when downloading and running scripts from unknown sources. It’s advisable to review the script’s content to understand what it does before execution.
-
Download the Script:
- Once you’ve found a suitable script (often a
.ps1file), download it to a location on your computer.
- Once you’ve found a suitable script (often a
-
Run the Script with Administrator Privileges:
- Open PowerShell as Administrator (as described in Method 1).
- Navigate to the directory where you saved the script using the
cdcommand (e.g.,cd D:Scripts). - Execute the script by typing its name and pressing Enter (e.g.,
.Install-Store.ps1). - You may need to adjust your PowerShell execution policy to allow script execution. You can do this temporarily by running:
powershell
Set-ExecutionPolicy RemoteSigned -Scope Process
Then, run the script. Remember to revert the execution policy if desired after the installation.
The script will typically perform the following actions:
- Download the necessary Microsoft Store framework packages and the Store application package.
- Use PowerShell’s
Add-AppxPackagecmdlet to install these packages. - Handle any dependencies that might be required.
Post-Installation Checks
After the script has finished, restart your computer. Then, search for the Microsoft Store in the Start Menu. If it appears and launches successfully, the installation has been completed.
Troubleshooting Common Issues
Despite following the steps meticulously, you might encounter certain issues. Here are some common problems and their potential solutions:
Store Not Appearing or Launching
- Check for Dependencies: The Microsoft Store relies on several framework packages. If any of these were not installed correctly, the Store may fail to launch. The
winget install Microsoft.WindowsAppRuntimecommand should address this. If using a script, ensure it installs all required framework packages. - Corrupted Installation: In rare cases, the installation files might become corrupted. You might need to uninstall the Store and its components and then attempt the installation again. To uninstall, you can use PowerShell with administrator privileges:
powershell
Get-AppxPackage *WindowsStore* | Remove-AppxPackage
Get-AppxPackage *Microsoft.WindowsAppRuntime* | Remove-AppxPackage
After removing, restart your computer and proceed with the installation methods described above. - Windows Updates: Ensure your LTSC installation has the latest available cumulative updates installed. Sometimes, these updates contain fixes or components necessary for Store functionality.
Package Dependency Errors
When running Add-AppxPackage manually or via a script, you might encounter errors related to missing dependencies.
- Identify the Missing Dependency: The error message usually specifies the missing package.
- Download and Install Dependencies: You can often find these dependencies by searching for their names (e.g., “Microsoft.NET.Native.Framework”) and downloading them from reputable sources, then installing them using
Add-AppxPackage. Usingwingetis generally more robust as it handles dependency resolution automatically.
User Account Control (UAC) Issues
If you encounter permission errors, ensure that you are always running PowerShell with “Run as administrator” privileges. This is a fundamental requirement for system-level package installations.

Considerations for LTSC Environments
When installing the Microsoft Store on Windows 11 LTSC, it’s vital to remember the nature of LTSC.
- Future Updates: Microsoft does not officially support the Store on LTSC. Future LTSC feature updates (though infrequent) or major servicing updates might overwrite or break the Store installation. You may need to re-apply the installation after such updates.
- System Stability: While the methods discussed are generally safe, there’s always a slight risk of introducing instability. Monitor your system’s performance and behavior closely after installation.
- Licensing: Be mindful of the licensing implications for any paid applications you download from the Microsoft Store. LTSC versions are typically licensed for commercial use, and while the Store can be installed, the primary purpose of LTSC is not for general consumer software distribution.
By following these guidelines and proceeding with an informed approach, you can successfully integrate the Microsoft Store into your Windows 11 LTSC environment, opening up a world of applications that can enhance your system’s functionality.
