Ссылка на статью
Если в каталоге каталог C:\Program Files\WindowsApps
не сохранилось каталога с файлами Windows Store, то при попытке зарегистрировать приложение с помощью Add-AppxPackage появятся ошибки вида:
Add-AppxPackage : Cannot find path.
Add-AppxPackage : Deployment failed with HRESULT: 0x80073CF6, Package could not be registered.
Сannot register the Microsoft.WindowsStore package because there was a merge failure.
В этом случае вы можете вручную скачать файлы WindowsStore и все зависимости с сайта Microsoft, и установить APPX приложения вручную.
- Откройте консоль PowerShell с правами администратора;
- Выполните следующую команду, чтобы убедиться, что приложение WindowsStore полностью удалено:
Get-AppXPackage -AllUsers |where-object {$_.Name -like "*WindowsStore*"}
-
- Перейдите на сайт https://store.rg-adguard.net/ (сайт позволяет получить прямые ссылки и скачать установочные APPX файлы приложений магазина с сайта Microsoft) , вставьте в строку поиска ссылку на Microsoft Store (
https://www.microsoft.com/store/productId/9wzdncrfjbmp
), в выпадающем списке выберите Retail; - Для корректной работы Store вам нужно скачать шесть APPX файлов c зависимостями для вашей версии Windows (x64 или x86):
Microsoft.NET.Native.Framework.1.7
,Microsoft.NET.Native.Framework.2.2
,Microsoft.NET.Native.Runtime.1.7
,Microsoft.NET.Native.Runtime.2.2
,Microsoft.VCLibs
,Microsoft.UI.Xaml.2.4
; -
- В моем случае у меня получился такой список файлов:
Microsoft.NET.Native.Framework.1.7_1.7.27413.0_x64__8wekyb3d8bbwe.Appx Microsoft.NET.Native.Framework.2.2_2.2.29512.0_x64__8wekyb3d8bbwe.Appx Microsoft.NET.Native.Runtime.1.7_1.7.27422.0_x64__8wekyb3d8bbwe.Appx Microsoft.NET.Native.Runtime.2.2_2.2.28604.0_x64__8wekyb3d8bbwe.Appx Microsoft.VCLibs.140.00_14.0.29231.0_x64__8wekyb3d8bbwe.Appx Microsoft.UI.Xaml.2.4_2.42007.9001.0_x64__8wekyb3d8bbwe.Appx
- Теперь аналогичным образом скачайте пакет Microsoft.WindowsStore с расширением appxbundle (например,
Microsoft.WindowsStore_12104.1001.113.0_neutral_~_8wekyb3d8bbwe.appxbundle
). Если у скачанного файла нет расширения, добавьте расширение.appxbundle
вручную; - Скопируйте все пакеты в один каталог и установите их следующими командами PowerShell:
$Path = 'C:\PS\Store'
Get-Childitem $Path -filter *.appx| %{Add-AppxPackage -Path $_.FullName}
Get-Childitem $Path -filter *.appxbundle | %{Add-AppxPackage -Path $_.FullName} -
Если при установке Microsoft.WindowsStore появятся ошибки с зависимостями, скачайте и установите указанные appx пакеты вручную.
- Проверьте, что Windows Store восстановился, и его значок появился в меню Пуск.
-
Introduction
As a gamer, you’re likely familiar with the Microsoft Store, a digital distribution platform that offers a wide range of games, apps, and other content for Windows devices. However, when trying to access the Microsoft Store on a Windows Server 2019 instance on AWS EC2, you may encounter some challenges. In this article, we’ll explore the Microsoft Store on Windows Server 2019, its limitations, and how to access it.
What is Windows Server 2019?
Windows Server 2019 is a server operating system developed by Microsoft. It’s designed for businesses and organizations that require a reliable and secure server environment. Windows Server 2019 offers a range of features, including improved security, enhanced networking, and better performance.
Microsoft Store on Windows Server 2019
The Microsoft Store on Windows Server 2019 is not enabled by default. This is because Windows Server 2019 is a server operating system, and the Microsoft Store is designed for client operating systems like Windows 10. However, you can enable the Microsoft Store on Windows Server 2019 by following these steps:
Step 1: Enable the Microsoft Store
To enable the Microsoft Store on Windows Server 2019, you need to run the following command in PowerShell:
Add-WindowsCapability -Online -Name Microsoft.Store
This command will add the Microsoft Store capability to your Windows Server 2019 instance.
Step 2: Install the Microsoft Store
After enabling the Microsoft Store, you need to install it. You can do this by running the following command in PowerShell:
Get-WindowsCapability -Online -Name Microsoft.Store | Add-WindowsCapability -Online
This command will install the Microsoft Store on your Windows Server 2019 instance.
Step 3: Configure the Microsoft Store
After installing the Microsoft Store, you need to configure it. You can do this by running the following command in PowerShell:
Set-WindowsCapability -Online -Name Microsoft.Store -State Enabled
This command will enable the Microsoft Store on your Windows Server 2019 instance.
Limitations of the Microsoft Store on Windows Server 2019
While you can enable the Microsoft Store on Windows Server 2019, there are some limitations to be aware of:
- Gaming: The Microsoft Store on Windows Server 2019 is not optimized for gaming. You may encounter performance issues or errors when trying to play games.
- App availability: The Microsoft Store on Windows Server 2019 may not have the same app availability as the Microsoft Store on Windows 10.
- Security: The Microsoft Store on Windows Server 2019 may not have the same security features as the Microsoft Store on Windows 10.
Using Xbox Game Pass on Windows Server 2019
If you’re trying to use Xbox Game Pass on Windows Server 2019, you may encounter some challenges. Xbox Game Pass is a subscription-based service that offers access to a library of games for Windows 10 devices. However, Windows Server 2019 is not a supported device for Xbox Game Pass.
Conclusion
In, while you can enable the Microsoft Store on Windows Server 2019, there are some limitations to be aware of. The Microsoft Store on Windows Server 2019 is not optimized for gaming, and app availability may be limited. If you’re trying to use Xbox Game Pass on Windows Server 2019, you may encounter some challenges.
Troubleshooting the Microsoft Store on Windows Server 2019
If you’re experiencing issues with the Microsoft Store on Windows Server 2019, here are some troubleshooting steps you can try:
- Check the event logs: Check the event logs to see if there are any errors or warnings related to the Microsoft Store.
- Run the Microsoft Store troubleshooter: Run the Microsoft Store troubleshooter to diagnose and fix any issues.
- Reinstall the Microsoft Store: Reinstall the Microsoft Store by running the following command in PowerShell:
Get-WindowsCapability -Online -Name Microsoft.Store | Remove-WindowsCapability -Online
This command will remove the Microsoft Store capability from your Windows Server 2019 instance.
Conclusion
In conclusion, while the Microsoft Store on Windows Server 2019 is not enabled by default, you can enable it by following the steps outlined in this article. However, be aware of the limitations of the Microsoft Store on Windows Server 2019, including gaming performance issues and limited app availability. If you’re trying to use Xbox Game Pass on Windows Server 2019, you may encounter some challenges.
Frequently Asked Questions
Here are some frequently asked questions about the Microsoft Store on Windows Server 2019:
- Q: Can I enable the Microsoft Store on Windows Server 2019?
A: Yes, you can enable the Microsoft Store on Windows Server 2019 by following the steps outlined in this article. - Q: What are the limitations of the Microsoft Store on Windows Server 2019?
A: The Microsoft Store on Windows Server 2019 is not optimized for gaming, and app availability may be limited. - Q: Can I use Xbox Game Pass on Windows Server 2019?
A: No, Windows Server 2019 is not a supported device for Xbox Game Pass.
Conclusion
Q: What is the Microsoft Store on Windows Server 2019?
A: The Microsoft Store on Windows Server 2019 is a digital distribution platform that offers a wide range of games, apps, and other content for Windows devices. However, it’s not enabled by default on Windows Server 2019.
Q: Can I enable the Microsoft Store on Windows Server 2019?
A: Yes, you can enable the Microsoft Store on Windows Server 2019 by following the steps outlined in our previous article. However, be aware of the limitations of the Microsoft Store on Windows Server 2019.
Q: What are the limitations of the Microsoft Store on Windows Server 2019?
A: The Microsoft Store on Windows Server 2019 is not optimized for gaming, and app availability may be limited. Additionally, the Microsoft Store on Windows Server 2019 may not have the same security features as the Microsoft Store on Windows 10.
Q: Can I use Xbox Game Pass on Windows Server 2019?
A: No, Windows Server 2019 is not a supported device for Xbox Game Pass. Xbox Game Pass is a subscription-based service that offers access to a library of games for Windows 10 devices.
Q: How do I troubleshoot issues with the Microsoft Store on Windows Server 2019?
A: If you’re experiencing issues with the Microsoft Store on Windows Server 2019, try the following troubleshooting steps:
- Check the event logs: Check the event logs to see if there are any errors or warnings related to the Microsoft Store.
- Run the Microsoft Store troubleshooter: Run the Microsoft Store troubleshooter to diagnose and fix any issues.
- Reinstall the Microsoft Store: Reinstall the Microsoft Store by running the following command in PowerShell:
Get-WindowsCapability -Online -Name Microsoft.Store | Remove-WindowsCapability -Online
This command will remove the Microsoft Store capability from your Windows Server 2019 instance.
Q: Can I use the Microsoft Store on Windows Server 2019 for business purposes?
A: Yes, you can use the Microsoft Store on Windows Server 2019 for business purposes. However, be aware of the limitations of the Microsoft Store on Windows Server 2019, including gaming performance issues and limited app availability.
Q: How do I configure the Microsoft Store on Windows Server 2019?
A: To configure the Microsoft Store on Windows Server 2019, follow these steps:
- Enable the Microsoft Store: Enable the Microsoft Store by running the following command in PowerShell:
Add-WindowsCapability -Online -Name Microsoft.Store
This command will add the Microsoft Store capability to your Windows Server 2019 instance.
- Install the Microsoft Store: Install the Microsoft Store by running the following command in PowerShell:
Get-WindowsCapability -Online -Name Microsoft.Store | Add-WindowsCapability -Online
This command will install the Microsoft Store on your Windows Server 2019 instance.
- Configure the Microsoft Store: Configure the Microsoft Store by running the following command in PowerShell:
Set-WindowsCapability -Online -Name Microsoft.Store -State Enabled
This command will enable the Microsoft Store on your Windows Server 2019 instance.
Q: Can I use the Microsoft Store on Windows Server 2019 for gaming?
A: While you can use the Microsoft Store on Windows Server 2019 for gaming, be aware of the limitations of the Microsoft Store on Windows Server 2019, including gaming performance issues and limited app availability.
Q: How do I uninstall the Microsoft Store on Windows Server 2019?
A: To uninstall the Microsoft Store on Windows Server 2019, follow these steps:
- Remove the Microsoft Store capability: Remove the Microsoft Store capability by running the following command in PowerShell:
Get-WindowsCapability -Online -Name Microsoft.Store | Remove-WindowsCapability -Online
This command will remove the Microsoft Store capability from your Windows Server 2019 instance.
Conclusion
In conclusion, the Microsoft Store on Windows Server 2019 is a complex topic, and there are many factors to consider. By following the steps outlined in this article and being aware of the limitations, you can successfully enable and configure the Microsoft Store on your Windows Server 2019 instance.
method one:
Open the URLhttps://store.rg-adguard.net/
Search Microsoft.WindowsStore_8wekyb3d8bbwe by way of PackageFamilyName
1: Select the corresponding package according to the system, download each column category
2: Create a new folder on the desktop, such as «123», put the downloaded installation package into the folder, and run «Powershell» as an administrator, CD to «123», and execute
# Install all packages in this path
Add-AppxPackage *
Method Two:
Use the tool to install the app store.
download link: WindowsStore_LTSC2019.exe
SHA1: adb12a6488efb1771a2e29a4661393deaffc6c82
Download link of the integrated installation package:Baidu cloud network disk download (c5zr)
After the download is complete, run the installation directly, an error may be reported during the running process, just ignore it
Please register to participate in our discussions with 2 million other members — it’s free and quick! Some forums can only be seen by registered members. After you create your account, you’ll be able to customize options and access all our 15,000 new posts/day with fewer ads.
06-30-2020, 08:08 AM |
|||
|
|||
Can Microsoft Store be installed on Windows Server 2019? I haven’t been able to get it to work so far? |
06-30-2020, 08:13 AM |
|||
|
|||
No. |
06-30-2020, 08:27 AM |
|||
|
|||
Quote: Originally Posted by Peregrine No. Thanks for the reply, also so just curious as a brief quick follow-up question please, there is no way to «unofficially» install it, in the form of a tweak or a roundabout method? I did find a way to create a «Business Store» account (if I am hopefully recalling the naming convention correctly, it’s been a while since I last accessed it or created the account; sorry if I am accidentally misremembering here), and while it in theory is supposed to give you the ability to download Store apps using a different method than Microsoft Store, it also refuses to install any apps — it only allows you to claim licenses iirc(?), at least ime? |
06-30-2020, 10:33 AM |
|||
|
|||
I don’t know of any hack to allow it. A business account is something that I, as the IT Admin, would setup so I can restrict my users from what they are allowed to download from the store. |
06-30-2020, 10:35 AM |
|||
|
|||
Why would you need that for server? It is not made for consumer grade apps, it will run them but what is it that you need? There’s always another way. What app is it? |
06-30-2020, 01:37 PM |
|||
|
|||
Quote: Originally Posted by gguerra Why would you need that for server? It is not made for consumer grade apps, it will run them but what is it that you need? There’s always another way. What app is it? Well tbh, I am actually using Windows Server 2019 as a workstation, and so certain Microsoft Store apps such as the following would definitely be very useful, if there was a viable way to install them on Server 2019, just for example: (1) OneNote (app version, not the Office 2016 desktop version) …and similar apps |
06-30-2020, 02:11 PM |
|||
|
|||
Quote: Originally Posted by Phoenix2017 Well tbh, I am actually using Windows Server 2019 as a workstation, and so certain Microsoft Store apps such as the following would definitely be very useful, if there was a viable way to install them on Server 2019, just for example: (1) OneNote (app version, not the Office 2016 desktop version) …and similar apps For the OneNote cloud version, there may be a way to download it from somewhere else but most likely you will still need to use Onedrive as storage. I googled it. Here is one. https://www.techspot.com/downloads/5…t-onenote.html Paint3d you can download from many sites. I’ve never used it but that is possible. Just download it from somewhere other than the microsoft store like this. https://paint-3d.en.softonic.com/ Same with whiteboard and other apps. Try searching for another place to download. |
07-01-2020, 04:04 PM |
|||
|
|||
Quote: Originally Posted by gguerra For the OneNote cloud version, there may be a way to download it from somewhere else but most likely you will still need to use Onedrive as storage. I googled it. Here is one. https://www.techspot.com/downloads/5…t-onenote.html Paint3d you can download from many sites. I’ve never used it but that is possible. Just download it from somewhere other than the microsoft store like this. https://paint-3d.en.softonic.com/ Same with whiteboard and other apps. Try searching for another place to download. Thanks! |
Please register to post and access all features of our very popular forum. It is free and quick. Over $68,000 in prizes has already been given out to active posters on our forum. Additional giveaways are planned.
Detailed information about all U.S. cities, counties, and zip codes on our site: City-data.com.
All times are GMT -6.
-
Hi
I’m running a VM with windows server 2019. I wanted to see how well it would run Microsoft Flight Sim. I own the game through the Windows store. Is there any way of getting Windows Store on to Server 2019 or even just the UWP app itself.
Thanks
-
Stop hovering to collapse…
Click to collapse…
Hover to expand…
Click to expand…
-
Thanks
But unfortunately this is not for Windows server…. Appears to only be for Windows 10 LTSB
-
I personally put the store on server 2019 and everything worked. Guys, if you see LTSB, this does not mean that not for the server! Do you know how an ordinary Windows differs from a server?
A couple of lines in the registry differ!
The core is the same.
Read for your practice Mark Russinovich: On Working at Microsoft, Windows Server 2008 Kernel, MinWin vs ServerCore, HyperV.
At least this!
Or do not engage in amateur performances if you do not understand.
I don’t understand Linux — I just pay the guys money and they do what I want!
Stop hovering to collapse…
Click to collapse…
Hover to expand…
Click to expand…
-
«I personally put the store on server 2019 and everything worked’
Maybe so and I appreciate your input… but based on the instructions you gave. It doesn’t appear to install like this.
-
I installed the store myself but could not stand it — I deleted it. Recently, Windows annoys just everyone!
Stop hovering to collapse…
Click to collapse…
Hover to expand…
Click to expand…
-
So after getting store installed. No apps download from it. When I click install on any app nothing happens. Where you able to download apps ok? Thanks
-
Have you got the installed apps to auto update? On my installation, the store apps updater is broken.
-
Hi yes…. Apps auto update. Including the store itself. But cant download anything from the store.
-
Can you send me link to the store package?
-
All applications were downloaded from the web store separately and installed.
Guys — do not engage in masochism, if you need a store, then put 10
Stop hovering to collapse…
Click to collapse…
Hover to expand…
Click to expand…
-
Look… it’s not about engaging in masochism or whatever you want to call it.
In case you didnt know Most if not all cloud providers only support Windows Server, so it’s not about choice if It was I would of course take the easy option and install Windows 10.
The fact is cloud VMs are running Server so it’s impossible to install apps from the store. Im just very very surprised more people on here are not looking for a solution also.
And so basically your method is useless. Great Thanks
-
I
Hi it’s in this thread… check above.
But its useless you cant install anything from it.. .
Some people would neglect to tell you this before hand and come across as all high and mighty
-
How can I deinstall the store and xbox app? Installation told me succesful, but both apps are crashing when started.
-
now just need an updated version for server 2022 as it doesn’t work on this
-
The point for me and many others is true GPU/PCI passthrough