Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tadghh/windows-fixes
Installs the latest version of Microsoft Store on Windows LTSC
https://github.com/tadghh/windows-fixes
install ltsc ltsc2021 powershell store
Last synced: 26 days ago
JSON representation
Installs the latest version of Microsoft Store on Windows LTSC
- Host: GitHub
- URL: https://github.com/tadghh/windows-fixes
- Owner: tadghh
- Created: 2024-08-06T16:02:57.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-09-07T19:06:11.000Z (2 months ago)
- Last Synced: 2024-09-30T09:21:30.131Z (about 1 month ago)
- Topics: install, ltsc, ltsc2021, powershell, store
- Language: HTML
- Homepage:
- Size: 103 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LTSC Microsoft Store Installer
There are other options online but they rely on using someone elses old crusty packages. This script will always download the latest version of Microsoft Store for your architecture along with all of its dependencies.
# Installing
The script is compatible with PowerShell 5 and later, just make sure to run with admin. If you run into issues please post in the issues tab.
> [!IMPORTANT]
> Run the following command with Admin.```powershell
Start-BitsTransfer -Source 'https://raw.githubusercontent.com/tadghh/windows-fixes/main/Install-MSStoreLTSC.ps1' -Destination ./store-install.ps1;
Set-ExecutionPolicy Unrestricted -Force;
./store-install.ps1;
Set-ExecutionPolicy RemoteSigned -Force
```