---
How to Download Microsoft Store Apps Without the Store App
If you're running Windows LTSC, an enterprise build, or your Microsoft Store is broken, you've probably searched for "store.rg-adguard.net" — a popular tool that generates direct download links for Microsoft Store apps.
There are better alternatives now. Here's how to download any MS Store app without the Store app itself.
The Problem
Windows LTSC editions don't include the Microsoft Store. Enterprise builds often have it disabled. But many essential apps — Calculator, Photos, Notepad — are only available through the Store.
The Solution: Direct CDN Links
Microsoft hosts all Store app packages on their CDN. You just need the right URL structure to access them directly.
Method 1: PowerShell (No Browser Needed)
Run this in PowerShell:
irm nexatools.in/ms/9WZDNCRFJBMP | iex
Replace 9WZDNCRFJBMP with your app's Product ID.
What it does:
- Downloads the script from
nexatools.in/ms/YOUR_APP_IDdynamically - Calls the NexaTools API to query the Microsoft Store
- Prints all link formats (web, store protocol) in color
- Shows available direct package installers (.msix, .exe, etc.)
- Downloads packages directly and executes the installer if you wish
No browser needed. Everything runs from your terminal.
Method 2: Web Interface
If you prefer a browser:
- Go to https://nexatools.in/utility-tools/microsoft-store-generator
- Paste the Store URL or Product ID
- Select release channel (Retail, RP, Slow, Fast)
- Click Generate Links
- Download the
.msixbundle,.appx, or.exe
The tool also auto-generates:
- PowerShell one-liner — installs the app with all VCLib and framework dependencies in one command
- Batch file (.bat) — double-click to install on any Windows PC without opening PowerShell manually
PowerShell Install Commands
# Install a single app
Add-AppxPackage -Path "C:\Downloads\app.msixbundle"
# Install with dependencies
Add-AppxPackage -Path "C:\Downloads\app.msixbundle" -DependencyPackagePath "C:\Downloads\dependency.appx"
When This Is Useful
| Scenario | Why It Matters |
|---|---|
| Windows LTSC | No Microsoft Store included |
| Enterprise PCs | Store disabled by group policy |
| Offline deployment | Need installers without Store access |
| App archiving | Save versions before they're updated |
| SCCM/Intune | Need offline packages for deployment |
Conclusion
If you need to download Microsoft Store apps without the Store app, NexaTools is free, private, and generates everything you need — from PowerShell one-liners to batch files to direct CDN download links.
Try it: https://nexatools.in/utility-tools/microsoft-store-generator

Top comments (0)