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: 13 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 (over 1 year ago)
- Default Branch: main
- Last Pushed: 2026-01-23T01:03:10.000Z (22 days ago)
- Last Synced: 2026-01-23T18:38:35.899Z (21 days ago)
- Topics: install, ltsc, ltsc2021, powershell, store
- Language: PowerShell
- Homepage:
- Size: 103 MB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LTSC Microsoft Store Installer
Downloads the latest version of Microsoft Store and its dependencies. Providing a minimal installation, and dependencies doesn't mean bs like candycrush.
## Installing
> [!IMPORTANT]
> Run the following commands with Admin.
```powershell
Start-BitsTransfer -Source 'https://raw.githubusercontent.com/tadghh/windows-fixes/main/Install-MSStoreLTSC.ps1' -Destination ./store-install.ps1;
Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass -Force;
./store-install.ps1;
Set-ExecutionPolicy RemoteSigned -Force
```
# Other Utilities
These are just some utility functions, to use these add them to your `$PROFILE`. You can find this file by running `notepad $PROFILE` from within powershell (note that different installs of powershell use various locations to store the profile, the preinstalled powershell uses a different location than for example a fresh install of powershell 7).
## Copy-SSHId
Its just ssh-copy-id but for Windows. Add the function inside your `$PROFILE`. Find the function [here](https://github.com/tadghh/windows-fixes/blob/main/Copy-SSHId.ps1) also consider adding the following alias to your `$PROFILE`.
```ps1
Set-Alias -Name ssh-copy-id -Value Copy-SSHId
```
## Power plan 'unlocker'
A [script](https://github.com/tadghh/windows-fixes/blob/main/Toggle-PowerSettingsVisibility.ps1) that allows you to enable access and configuration to any/all power plan options.
## Skip pending update reboots
The following [script](https://github.com/tadghh/windows-fixes/blob/main/Skip-UpdateReboot.ps1) remove the pending updates file. Think of this like a dirty update/reboot. You might encounter errors by using this bypass but I would find that unlikely (theres a lot of 'you must reboot to complete install' that dont actually need a reboot)