How to Install Microsoft Store or Appx/MSIX Apps on Windows Server (Without Store)

How to Install Microsoft Store or Appx/MSIX Apps on Windows Server (Without Store)

By default, Windows Server (and some LTSC editions of Windows) do not come with Microsoft Store. This can be inconvenient when you want to install modern apps like Windows Terminal, Visual Studio Code, or others that normally require the Store.

But don’t worry! You can still:

Install Microsoft Store manually
Install .appx or .msix app packages without the Store

This guide will walk you through both options — step-by-step, even if you’re new to Windows administration.


Option 1: Install Microsoft Store on Windows Server

⚠️ Warning: This method is unofficial and not supported by Microsoft. Use at your own risk — ideally on test or non-critical systems.

🔹 Step 1: Enable Desktop Experience (if not enabled)

  1. Open Server Manager

  2. Go to Add Roles and Features

  3. Proceed through the wizard → Under User Interfaces and Infrastructure, check Desktop Experience

  4. Click Next → Install → Restart if required


🔹 Step 2: Download Microsoft Store Appx Files

You’ll need to download a few app packages from Windows 10 or Microsoft’s servers.

Required files:

  • Microsoft.WindowsStore.appx

  • Microsoft.StorePurchaseApp.appx

  • Microsoft.DesktopAppInstaller.appx

  • Microsoft.VCLibs.x64.14.00.appx

  • Microsoft.UI.Xaml.2.x.appx (optional)

Where to get them:

Use this tool: https://store.rg-adguard.net

  1. Select: ProductID

  2. Paste: 9wzdncrfjbmp (Store ID)

  3. Click the dropdown to choose Retail

  4. Download the files ending in .appx or .msixbundle


🔹 Step 3: Install with PowerShell

Open PowerShell as Administrator and install in this order:

Add-AppxPackage -Path "C:\Install\Microsoft.VCLibs.x64.14.00.appx"
Add-AppxPackage -Path "C:\Install\Microsoft.UI.Xaml.2.x.appx"
Add-AppxPackage -Path "C:\Install\Microsoft.DesktopAppInstaller.appx"
Add-AppxPackage -Path "C:\Install\Microsoft.StorePurchaseApp.appx"
Add-AppxPackage -Path "C:\Install\Microsoft.WindowsStore.appx"

Replace "C:\Install\..." with the actual path to your downloaded files.


🔹 Step 4: Open Microsoft Store

Once installed, search Microsoft Store” in the Start Menu, or launch it via:

Start-Process "ms-windows-store:"

Option 2: Install Appx / MSIX Apps Without Microsoft Store

If you don’t need the full Store interface, and just want to install apps like Windows Terminal, you can install them directly.


🔹 Step 1: Allow App Sideloading

If your system blocks sideloading apps, enable it via Group Policy:

  1. Open gpedit.msc

  2. Go to:
    Computer Configuration > Administrative Templates > Windows Components > App Package Deployment

  3. Enable the following:

    • Allow all trusted apps to install

    • Allow development of Windows Store apps

Or use PowerShell:

reg add "HKLM\Software\Policies\Microsoft\Windows\Appx" /v AllowAllTrustedApps /t REG_DWORD /d 1 /f

🔹 Step 2: Download the App You Want

For example: Windows Terminal
Go to: https://github.com/microsoft/terminal/releases
Download the latest .msixbundle file

You also need dependencies like:

  • Microsoft.VCLibs.140.00.x64.appx

  • Microsoft.UI.Xaml.2.x.appx

Get these from the Microsoft Store CDN using:
https://store.rg-adguard.net
(Search for Microsoft.VCLibs, etc.)


🔹 Step 3: Install Using PowerShell

Example for installing Windows Terminal:

Add-AppxPackage -Path "C:\Install\Microsoft.VCLibs.x64.14.00.appx"
Add-AppxPackage -Path "C:\Install\Microsoft.UI.Xaml.2.7.appx"
Add-AppxPackage -Path "C:\Install\Microsoft.WindowsTerminal.msixbundle"

Done! You can now run Windows Terminal, or any other Appx/MSIX app.


🛠️ Troubleshooting

  • Error: Missing dependencyInstall the required .appx packages first.

  • Store not launchingCheck if all packages were installed in the correct order.

  • Permission issuesRun PowerShell as Administrator.


🔚 Conclusion

Whether you want the full Microsoft Store or just want to install .appx apps manually, now you know how — even on Windows Server 2022. This guide works great for dev environments, server-side tools, and LTSC versions without Store support.

If you’d like a ready-made PowerShell script that automates the download and installation, just ask!

Comments

No comments yet. Why don’t you start the discussion?

Leave a Reply

Your email address will not be published. Required fields are marked *