Если вы удалили Microsoft Store с компьютера, или его изначально не было, например, в версиях LTSC/LTSB, магазин приложений сравнительно просто можно установить.
В этой пошаговой инструкции о том, как установить Microsoft Store в Windows 11 и Windows 10 несколькими способами: один из них, вероятнее всего, сработает в вашей ситуации.
Установка Microsoft Store с помощью WSReset.exe
В Windows 11/10, причем даже в версиях, поставляющихся без магазина Microsoft Store (ранее — Windows Store), присутствует встроенная утилита wsreset.exe, позволяющая, в том числе, выполнить переустановку магазина приложений.
Шаги будут следующими:
- Запустите Windows PowerShell или Терминал от имени Администратора: нажмите правой кнопкой мыши по кнопке «Пуск» и выберите соответствующий пункт в контекстном меню.
- Введите команду
wsreset -i
и нажмите Enter.
- Выполнение команды займет время, при этом процесс отображаться не будет: дождитесь, когда снова появится приглашение для ввода команды — окно консоли можно закрыть.
- Через некоторое время (не моментально) вы увидите уведомление о том, что Microsoft Store был установлен в системе.
- Значок Microsoft Store появится в меню Пуск, при необходимости вы можете закрепить его в панели задач — нажмите по нему правой кнопкой мыши и выберите нужный пункт меню.
Этот способ работает как обычных домашней и профессиональной, так и в корпоративных редакциях Windows.
Windows PowerShell
Ещё одна возможность установки магазина Microsoft Store — использование команды развертывания пакета приложения, может не работать в некоторых редакциях Windows 11/10:
- Запустите PowerShell или Терминал от имени Администратора, используя контекстное меню кнопки «Пуск».
- Введите команду
Get-AppxPackage *windowsstore* -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppxManifest.xml"}и нажмите Enter.
- Дождитесь завершения установки пакета.
В результате Microsoft Store будет установлен и доступен в меню «Пуск».
Если команда сообщила об ошибках, можно попробовать следующий вариант:
- Введите команду
Get-AppxPackage -AllUsers | Select Name, PackageFullName
в Windows PowerShell.
- Отобразится список приложений, доступных в системе среди них может оказаться Microsoft.WindowsStore. При его наличии, выделите полное имя приложения в правом столбце и скопируйте его в буфер обмена (Ctrl+C).
- Введите команду (вставив вместо полное_имя скопированный текст):
Add-AppxPackage -DisableDevelopmentMode -Register "C:\Program Files\WindowsApps\полное_имя\AppxManifest.xml"
и нажмите Enter.
- Дождитесь завершения установки.
Скачивание Microsoft Store и его установка вручную
Вы можете скачать файл приложения «Microsoft Store» последней версии и установить его вручную, так же с помощью PowerShell:
- Зайдите на сайт https://store.rg-adguard.net/ выберите «ProductId», укажите значение 9wzdncrfjbmp а в последнем поле выберите «Retail» и нажмите по кнопке с «галочкой».
- Отобразится список пакетов с указанным ID, нас интересует файл (версия может отличаться)
Microsoft.WindowsStore_22301.1401.6.0_neutral_~_8wekyb3d8bbwe.msixbundle
нажмите по нему правой кнопкой мыши, выберите пункт «Сохранить ссылку как» и укажите место сохранение (простое нажатие по файлу для скачивания может работать неправильно). Не закрывайте страницу, она может пригодиться далее.
- Скопируйте путь к скачанному файлу (правый клик по файлу в проводнике — копировать как путь).
- Откройте PowerShell или Терминал от имени Администратора.
- Введите команду (путь можно вставить из буфера обмена):
Add-AppxPackage -Path путь_к_файлу.msixbundle
и дождитесь завершения установки Microsoft Store.
- Если на 5-м шаге вы получили сообщение об ошибке, дополнительно скачайте
Microsoft.UI.Xaml.2.7_7.2109.13004.0_x64__8wekyb3d8bbwe.appx
с той же страницы, выполните установку приложения с помощью той же команды, а уже после этого — установите первый скачанный файл.
Теоретически, могут потребоваться также пакеты NET.Native.Runtime и VCLibs (x86 и x64) с той же страницы загрузок, но обычно они уже установлены на компьютере.
Вероятнее всего, один из предложенных способов, при наличии необходимых для работы Microsoft Store компонентов (.NET, распространяемые компоненты Visual C++) сработает. Если же этого не произошло, несколько дополнительных вариантов:
- Использовать установщик LTSC-Add-MicrosoftStore — он устанавливает старую версию Microsoft Store, но в дальнейшем она обновляется автоматически. Использование: скачать архив ZIP, распаковать, запустить Add-Store.cmd от имени администратора.
- С другого компьютера или из виртуальной машины скопировать папки, относящиеся к WindowsStore из папки C:\Program Files\WindowsApps (потребуется получать права на доступ к папке, может привести к проблемам с работой встроенных приложений) в аналогичную папку на текущем компьютере, затем использовать команду PowerShell
ForEach ($folder in get-childitem) {Add-AppxPackage -DisableDevelopmentMode -Register "C:\Program Files\WindowsApps\$folder\AppxManifest.xml"} - Запустить сброс системы (если изначально она поставлялась с магазином приложений), это можно сделать и с сохранением данных: Как сбросить Windows 11, Как сбросить Windows 10.
Надеюсь, один из предложенных вариантов помог выполнить установку Microsoft Store на вашем компьютере или ноутбуке.
Все способы:
- Способ 1: Встроенная утилита
- Сброс магазина
- Команда установки магазина
- Способ 2: Ручная установка
- Дополнительные способы
- Вариант 1: Установщик LTSC-Add-MicrosoftStore
- Вариант 2: Сброс системы
- Вариант 3: Копирование папки с другого ПК
- Вопросы и ответы: 6
Поскольку Microsoft Store является предустановленным инструментом, как и в предыдущей ОС, установить его стандартными методами (например, через EXE-файл) не получится, но можно воспользоваться одним из альтернативных вариантов.
Способ 1: Встроенная утилита
В Windows 11, несмотря на то что система может поставляться без встроенного магазина Microsoft Store, у некоторых пользователей он есть, просто не работает. Далее вы увидите две инструкции: первая сбрасывает все настройки приложения, а вторая предназначена для установки. Все это выполняется через консоль.
Сброс магазина
- Вызовите «Терминал» или «Windows PowerShell» с расширенными правами – нажмите на «Пуск» правой кнопкой мыши и из появившегося меню выберите соответствующий пункт.
- Введите команду
wsreset -iи нажмите на клавишу «Enter», чтобы выполнить ее.
На этом установка завершена. Учитывайте, что приложение Microsoft Store появится не сразу, а спустя некоторое время, – вы увидите на экране соответствующее уведомление.
Команда установки магазина
Если предыдущая рекомендация не помогла, попробуйте другое решение – команду развертывания пакета приложения. Но здесь есть нюанс – если предыдущий вариант подходит для всех редакций операционной системы, то это в этом случае в некоторых версиях выполнение инструкции может ни к чем не привести. Но в любом случае можете воспользоваться руководством ниже:
- Таким же образом запустите консоль «Windows PowerShell» или «Терминал» от имени администратора, затем скопируйте и выполните команду
Get-AppxPackage *windowsstore* -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppxManifest.xml"} - После этого приложение Microsoft Store будет инсталлировано на ПК, и найти магазин можно будет в главном меню «Пуска». Если же в окне консоли отобразилось сообщение об ошибке, используйте команду
Get-AppxPackage -AllUsers | Select Name, PackageFullName. - Вы увидите обширный список приложений, которые доступны в системе. Отыщите в перечне строку Microsoft.WindowsStore. При ее наличии скопируйте значение справа – выделите все содержимое и одновременно нажмите на клавиши «Ctrl + C». Таким образом все скопируется в буфер обмена Windows 11.
- Далее введите команду ниже, где вместо слов «скопированное значение» нужно вставить то, что было помещено в буфер (клавиши «Ctrl + V»). Для выполнения команды не забудьте нажать на «Enter».
Add-AppxPackage -DisableDevelopmentMode -Register "C:\Program Files\WindowsApps\скопированное значение\AppxManifest.xml"
После этого вам останется дождаться завершения установки приложения. Если все пройдет успешно, в меню «Пуск» появится Microsoft Store.
Способ 2: Ручная установка
Есть еще один вариант установки Microsoft Store в Windows 11 – это ручная инсталляция после предварительного скачивания пакета приложения с отдельного сервиса в интернете, а затем запуск инсталлятора с помощью специальной команды:
Перейти на сайт Онлайн генератор ссылок для Microsoft Store
- Нажмите на кнопку выше и перейдите на сайт, где нужно из выпадающего меню у поисковой строки выбрать «ProductId», в саму строку вставьте «9wzdncrfjbmp», а из меню справа выберите пункт «Retail». Чтобы начать поиск, нажмите по кнопке, на которой изображена галочка.
- Найдите в списке пакетов с ID приложений строку Microsoft.WindowsStore_22301.1401.6.0_neutral_~_8wekyb3d8bbwe.msixbundle. Версия может быть другой, но перед ней должно быть название приложения — «Microsoft.WindowsStore», также обратите внимание на расширение — оно должно быть «.msixbundle». Кликните по строке правой кнопкой мыши и из контекстного меню выберите пункт «Сохранить ссылку как». Останется указать путь сохранения и дождаться окончания скачивания файла.
- Перейдите к загруженному файлу с помощью системного «Проводника». Кликните правой кнопкой мыши по адресной строке вверху и скопируйте путь к файлу – неважно, куда он был сохранен, но адрес должен разместиться в буфере обмена.
- Запустите «Терминал» или «Windows PowerShell» с правами администратора, затем выполните команду
Add-AppxPackage -Path путь.msixbundle, где нужно вставить адрес, скопированный из строки «Проводника» вместо слова «путь».
На этом инсталляция должна быть завершена. Если после выполнения команды вы столкнулись с ошибкой, попробуйте скачать файл Microsoft.UI.Xaml аналогичным образом, затем с помощью той же консольной команды, которая упоминалась на Шаге 4, попытайтесь выполнить установку сначала этого компонента, затем самого магазина Microsoft Store.
Дополнительные способы
Если рассмотренные выше способы не помогли, то воспользуйтесь несколькими дополнительными решениями.
Вариант 1: Установщик LTSC-Add-MicrosoftStore
В качестве альтернативы можете использовать проверенный установщик LTSC-Add-MicrosoftStore, с помощью которого можно инсталлировать более раннюю версию магазина Microsoft Store — впоследствии она автоматически обновится.
Скачать LTSC-Add-MicrosoftStore с сайта Github.com
- Перейдите на сайт и скачайте архив «Source code», нажав по ссылке.
- После скачивания достаточно открыть архив, запустить установочный файл и следовать инструкции пошагового мастера.
Вариант 2: Сброс системы
Если изначально в вашей системе был предустановлен Microsoft Store, то можно попробовать сбросить настройки Windows 11 до заводских. Этот вариант наименее предпочтителен, поскольку все приложения и настройки также сбросятся, но при этом сброс можно выполнить с сохранением некоторых пользовательских данных. Как это сделать, читайте в нашем отдельном руководстве на сайте.
Подробнее: Сброс Windows 11 к заводским настройкам
Вариант 3: Копирование папки с другого ПК
Следующий вариант также можно использовать, но не всегда он приводит к желаемому результату, но, если предыдущие способы не помогли, скопируйте содержимое папки, которая относится к Microsoft Store, с другого компьютера. Как правило, оно находится по адресу C:\Program Files\WindowsApps.
Зачастую проще всего это сделать, установив на компьютер виртуальную машину с Windows 11. Это может быть даже неактивированная копия — вам достаточно скопировать системные папки в свою Виндовс 11.
Подробнее:
Установка виртуальной машины в Windows 11
Установка Windows 11 на виртуальную машину Oracle VM VirtualBox
Скопированные файлы перенесите в ту же директорию, но на компьютере с Windows 11, на который нужно установить приложение, затем запустите «Терминал» или Windows PowerShell от имени администратора и выполните команду ForEach ($folder in get-childitem) {Add-AppxPackage -DisableDevelopmentMode -Register "C:\Program Files\WindowsApps\$folder\AppxManifest.xml"}.
После этого запустите исполняемый файл магазина Microsoft Store и проверить его работоспособность.
Наша группа в TelegramПолезные советы и помощь
Readers help support Windows Report. We may get a commission if you buy through our links.
Read our disclosure page to find out how can you help Windows Report sustain the editorial team. Read more
For those who are having a hard time finding it, this article will explain how to download and install the Microsoft Store on Windows 11.
Some noticed after installing the preview build of the new OS that the new Microsoft Store was nowhere to be found. Fortunately, this guide contains easy ways to install Microsoft Store on Windows 11.
How do I install Microsoft Store on Windows 11?
1. Reinstall Microsoft Store using PowerShell
- Press the Windows key, type PowerShell, and click Run as administrator under Windows PowerShell.
- Copy and paste the command below and hit Enter:
Get-AppXPackage *WindowsStore* -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"} - Finally, restart your PC.
The first thing to try to fix this issue is to install the Microsoft Store app on Windows 11 using PowerShell. The above command will help to reinstall the app and all the needed packages when you start your PC.
2. Run the executable file WSReset
- Go to Search, type wsreset, and click Open to run the command.
- A command-line window will open and run the executable file WSReset.exe. Wait for a few seconds, and the command-line windows will close automatically.
- The Microsoft Store app will now open up.
By running this command, Microsoft Store will reset and clear the cache without altering the account settings and disabling the installed applications.
Run this command and try the previous solution again to successfully install the new Microsoft Store on your Windows 11 PC.
- Fix: Microsoft Store missing after update [Windows 10 & 11]
- Recent Windows 11 update lets you disable profanity filter in voice typing
3. Update the Store manually
- Once again, open Microsoft Store by clicking the icon from the taskbar.
- Click on the three dots in the corner of the screen.
- Choose Downloads and updates.
- Click the Get updates button.
- The system will now check all apps for updates, including the Microsoft Store. Note that after the updating process is complete, the app store will close automatically.
Updating the Microsoft Store manually only works if you use the preview version of Windows 11. With this, you should have a preview version of the Store app that only needs to be updated.
4. Repair and install Windows 11
- Download the Windows 11 ISO file and open the downloaded file.
- Please wait for it to mount the installation file to a separate drive on File Explorer and launch the drive.
- Now, double-click on the setup.exe file.
- Click the Next button on the Install Windows 11 page.
- Wait for the necessary updates to be downloaded and click the Accept button on the license page.
- Choose the Keep personal files and apps option and click the Next button.
- From here, follow the simple onscreen instructions to complete the setup.
Why is the Microsoft Store missing from my computer?
You might find that the Microsoft Store app is blocked or unavailable if you sign in to a local account. Also, if you are using a work or school Windows 11 PC, the Store app might be disabled by the admin.
In this case, you need to contact the admin to enable the app.
Can you uninstall Microsoft Store?
No, you can’t completely uninstall Microsoft Store. It’s part of core system apps. However, you can disable or hide it through Powershell.
Wrapping up
There you have it; everything you need to install the Microsoft Store app on Windows 11 easily. With the info in this guide, you should be able to reinstall the app or update it to the whole package if you use the preview.
Feel free to let us know the solution that helped you get the Store app working on Windows 11 in the comments below.
Loredana Harsana
Windows Software Expert
Loredana is a passionate writer with a keen interest in PC software and technology. She started off writing about mobile phones back when Samsung Galaxy S II was on top of the world and she fell in love with tech of all sorts.
Whenever she’s not at her work desk, you’ll find her enjoying refreshing tea flavors, spilling stories on paper, and listening to the radio.
-
Home
-
News
- How to Install Microsoft Store on Windows 11 LTSC? Top 3 Ways
How to Install Microsoft Store on Windows 11 LTSC? Top 3 Ways
By Vera | Follow |
Last Updated
Is Microsoft Store missing in Windows 11 LTSC 24H2? How can you install Microsoft Store on Windows 11 LTSC? Here are three simple methods for you to add the missing Store to your PC. Continue reading the comprehensive guide from MiniTool.
Does Windows 11 LTSC Support Microsoft Store?
Windows 11 IoT Enterprise LTSC and Windows 11 Enterprise LTSC 2024, built on the popular Windows operating system, are used for fixed-function and special-purpose devices. These two Windows 11 LTSC releases have similar features to Windows 11 24H2.
However, support for LTSC by apps and tools designed for Windows general availability channel release, such as Microsoft Store, may be finite. That is, you have the issue of missing Microsoft Store on Windows 11 LTSC.
Although this app seems underwhelming to some of you, it enables you to easily install automatic updates for some apps. Besides, you can exclusively install certain apps through Microsoft Store. This is why you are looking for ways to install Microsoft Store on Windows 11 LTSC.
Way 1: Run PowerShell
This is the easiest way to add Microsoft Store to Windows 11 LTSC. So, take the following steps.
Step 1: Type PowerShell into Windows Search and click Run as Administrator from the right side.
Step 2: Execute the wsreset -i command in the Windows PowerShell window. Wait for the installation to be accomplished.
For some users, they receive the 0x80070520 error code. If you also meet such a case, skip to other methods below to install Microsoft Store on Windows 11 LTSC.
Way 2: Install Xbox App for Windows
Aside from the first way, there is an indirect way mentioned by some users in a forum such as Reddit, which is downloading & installing the Xbox app for Windows and then installing missing Microsoft Store.
See the instructions here:
Step 1: In a web browser, open the official website of Xbox App on Windows PC, and then click the link of DOWNLOAD THE APP to get the XboxInstaller.exe file.
Step 2: Double-click on this file and accept Microsoft Software License Terms, then click INSTALL to initialize the installation.
Step 3: After installing the Xbox app, click LET’S GO to launch it.
Step 4: In the new window, proceed by hitting BROWSE THE CATALOG and you should see a banner on the top saying Missing components for the Xbox app. Click Review now to go ahead.
Step 5: Under General, click INSTALL next to Microsoft Store to begin installing this missing component.
Way 3: Download and Install LTSC-Add-MicrosoftStore
Besides these two ways, you can install Microsoft Store on Windows 11 LTSC by using an open-source project on GitHub, LTSC-Add-MicrosoftStore, recommended by some forum users.
Here is how to do this task:
Step 1: Open the GitHub website and click Code > Download ZIP to get the toolkit.
Sep 2: Next, fully extract all the contents in this ZIP file and run Add-Store.cmd as an administrator. The script will proceed with the deployment process to install missing Microsoft Store on Windows 11 LTSC 24H2.
Further Reading: Install Regular Windows 11 24H2
In Windows 11 LTSC, some apps are missing, including Microsoft Store, Game Bar, Feedback Hub, etc. If needed, installing them one by one wastes time and energy. So, consider installing the regular version like Windows 11 24H2.
A clean installation erases your data, thus, remember to run the PC backup software, MiniTool ShadowMaker to back up your vital files and folders. This tool works well in Windows 11/10/8/7.
MiniTool ShadowMaker TrialClick to Download100%Clean & Safe
Later, download Windows 11 24H2 ISO, burn it to a USB drive, and perform an installation using the USB. For details, refer to this guide on Clean Install Windows 11 24H2.
Bottom Line
Missing Microsoft Store in Windows 11 LTSC? It’s nothing. With these three methods, you can install Microsoft Store on Windows 11 LTSC with ease. Take action!
About The Author
Position: Columnist
Vera is an editor of the MiniTool Team since 2016 who has more than 7 years’ writing experiences in the field of technical articles. Her articles mainly focus on disk & partition management, PC data recovery, video conversion, as well as PC backup & restore, helping users to solve some errors and issues when using their computers. In her spare times, she likes shopping, playing games and reading some articles.
Whether you are using Tiny Windows 11 or any regular Windows 11, if you don’t have Microsoft Store on your OS then this can help. While using Tiny Windows 11, you won’t find Microsoft Store. Same for some who are using regular Windows 11 and still can’t find it.
While the issue might occur due to many reasons; you can fix it either by reinstalling or to download Microsoft Store for Windows 11.
And here you are going to download Microsoft Store for Windows 11 and Tiny Windows 11. But first, let’s try to reinstall it.
Note: Tiny Windows 11 users should go straight to the download section. Perform tasks as given and use Microsoft Store.
Table of Contents
How to install Microsoft Store on Windows 11?
Method 1: Reinstall Microsoft Store with PowerShell
The first method will be to reinstall the Store. We have provided the required command which you are going to use on PowerShell.
The command provided is used in PowerShell to reinstall Microsoft Store for all users on the system in addition to all applications inside Microsoft Store too. However, it’s worth noting that modifying or reinstalling Windows Store apps can sometimes cause issues with the functionality of those apps.
It’s recommended to proceed with caution and consider creating a system restore point or backup before making any changes.
Okay, now open PowerShell from the Start menu. You can search “powershell” in the Start menu too.
Right-click on it and select Run as Administrator option. Paste the command below:
Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
Press Enter to use the command.
This command retrieves a list of all Windows Store apps installed for all users on the system using `Get-AppXPackage -AllUsers`. Then, it uses a `ForEach` loop to iterate through each app and reinstall it using `Add-AppxPackage` with the `-DisableDevelopmentMode` and `-Register` parameters.
Please keep in mind that running this command may take some time, and it’s important to ensure you have the necessary permissions to execute it. Additionally, make sure to copy the command exactly as provided, including any quotation marks, to avoid syntax errors.
NOTE: if you encountered any sort of issues after or before the command given on PowerShell then you are recommended to apply the next method given. As this method will fix all sorts of Microsoft Store issues.
Method 2: Download Microsoft Store using Installer Packages
No matter whether you want to download Microsoft Store for Windows 11 as you have no Microsoft Store. Or your Microsoft Store is corrupted. We will use “Appx packages” for installing a totally new Store on Windows 11.
Step 1: Visit Store RG AdGuard
The first step will be to visit Store.rg.adguard.net. This is an official online link generator to download Microsoft Store applications. Here we are going to download all the necessary installers.
Step 2: Find the Installers
Now you are going to click on the search bar and paste this “https://www.microsoft.com/en-us/p/microsoft-store/9wzdncrfjbmp” link. This link will be used to find all the installers required.
After pasting the URL, you will click on the drop-down menu and select the Retail option. Now click on the Tick icon.
Step 3: Download Installers and bundles
In the next window, you will find a list of different installers and bundles. You are going to find the following;
- Microsoft.NET.Native.Framework.2.2_2.2.29512.0_x64__8wekyb3d8bbwe.appx
- Microsoft.NET.Native.Runtime.2.2_2.2.28604.0_x64__8wekyb3d8bbwe.appx
- Microsoft.VCLibs.140.00_14.0.30704.0_x64__8wekyb3d8bbwe.appx
- Microsoft.WindowsStore_12107.1001.15.0_neutral_~_8wekyb3d8bbwe.appxbundle
Once found then you are going to download them one by one.
NOTE: Don’t forget to use the “.appx” extension for each one of them. All should be “.appx” except “WindowsStore” which should have a “.appxbundle” extension.
By default, you can change their extension. For changing the extensions, you are going to right-click on the download button and select Save as. Keep names as default, just change the extension.
Step 4: Remove old packages
Now you will open PowerShell as administrator. Then you will use the command below on PowerShell:
Get-AppxPackage *windowsstore* | Remove-AppxPackage
Loading will take place and all the packages installed before will be removed.
Step 5: Install new packages
Now you are going to install new packages on your Windows 11. After the command above, you will use this command for installing new packages. Use the command given for each installer:
Add-AppxPackage -Path "x:\Path\filename.appx"
NOTE: you are going to replace “x:\Path\filename.appx” from the command above and use the location of each installer inside your command.
To find and use the location of the installer, here is what you are going to do. Find the downloaded installers on your PC.
Right-click on the installer and select Copy as path option.
Now go to PowerShell and paste the location using right click option or CTRL+V. Then press Enter.
Apply this method, one by one for all of the installers and do the bundle at the last.
Give your system a restart once all of them are installed.
Related Topic: Fix Microsoft Store/Windows Update Error 0x80040154
Related Topic: How to Fix Microsoft Store Error 0x800704cf?
Related Topic: WSA (Windows Subsystem for Android) on Windows 11
Related Topic: How to Install WSL (Windows Subsystem for Linux) on Windows 11
