A lightweight utility that allows you to download and install Microsoft Store applications directly using only their Store URL.
The program automatically detects your system architecture, retrieves all available .appx and .msixbundle packages, downloads them, and installs them through PowerShell.
No Microsoft Store app required. No manual file searching. Everything is automated.
-
Automatic architecture detection Detects Windows architecture (
x64,x86,arm64) based onruntime.GOARCH. -
User-provided Microsoft Store URL No hardcoded tokens — you simply paste the link.
-
Automatic parsing of available download packages Extracts
.appxand.msixbundlefiles from the publicstore.rg-adguard.netAPI. -
Batch download and installation Downloads dependency packages first, then installs the main
.msixbundle. -
Full PowerShell integration Uses
Add-AppxPackageto perform proper app installation. -
Structured download folders Files are stored under
downloads/<token>for clarity. -
Clear logging Console logs show each step: parsing, selecting files, downloading, installation.
-
You paste a Microsoft Store app URL, for example:
https://apps.microsoft.com/detail/9NKSQGP7F2NH -
The program submits the link to the public API (
store.rg-adguard.net). -
An HTML table with all package links is returned.
-
The app:
- Parses the table
- Filters files based on architecture
- Downloads
.appxdependencies - Downloads and installs
.msixbundlemain package
-
Uses PowerShell to install everything cleanly.
https://github.com/DmitroXD/apps-without-store
cd apps-without-storego build -o installer.exeinstaller.exeExample:
Enter Microsoft Store app URL:
https://www.microsoft.com/store/apps/9NKSQGP7F2NH
The downloader and installer will begin automatically.
- Windows 10 or 11
- Go 1.21+
- PowerShell (built into Windows)
- Internet connection
https://apps.microsoft.com/detail/9NKSQGP7F2NH
https://www.microsoft.com/store/apps/9WZDNCRFHVN5
The installer executes:
Add-AppxPackage -Path "<downloaded file>"Dependencies (.appx) are installed first.
Main bundles (.msixbundle) are installed last.
- The application uses publicly available URLs generated by
store.rg-adguard.net. - It does not modify files, remove DRM, or bypass licensing.
- Users are responsible for ensuring that downloaded packages are legally allowed in their region.
This project is licensed under the MIT License, allowing personal and commercial use.
Pull requests are welcome!
Give it a star ⭐ on GitHub — it helps the project grow!