Top Related Projects
Universal MCT wrapper script for all Windows 10/11 versions from 1507 to 21H2!
Smart Activation Script
Open-source Windows and Office activator featuring HWID, Ohook, KMS38, and Online KMS activation methods, along with advanced troubleshooting.
The Reliable USB Formatting Utility
Quick Overview
The kkkgo/LTSC-Add-MicrosoftStore repository is a tool that allows users to add the Microsoft Store to Windows 10 LTSC (Long-Term Servicing Channel) editions, which typically do not include the Microsoft Store by default.
Pros
- Provides a way to access the Microsoft Store on Windows 10 LTSC editions, which can be useful for installing certain applications and updates.
- Relatively simple to use, with a straightforward installation process.
- Maintained and updated by the project's author.
- Can be helpful for users who need access to the Microsoft Store on their LTSC systems.
Cons
- Only works on Windows 10 LTSC editions, and not on other Windows versions.
- May require administrative privileges to install and use, which could be a concern for some users.
- Potential compatibility issues with certain system configurations or software.
- Limited documentation and community support compared to more widely used tools.
Getting Started
To use the LTSC-Add-MicrosoftStore tool, follow these steps:
- Download the latest release of the tool from the GitHub repository.
- Run the executable file as an administrator.
- Follow the on-screen instructions to install the Microsoft Store on your Windows 10 LTSC system.
- Once the installation is complete, you should be able to access the Microsoft Store from your Start menu or search bar.
Please note that the specific steps may vary depending on your system configuration and the version of the tool you are using. It's always a good idea to review the project's documentation and any relevant release notes before proceeding.
Competitor Comparisons
Universal MCT wrapper script for all Windows 10/11 versions from 1507 to 21H2!
Pros of MediaCreationTool.bat
- Provides a simple and user-friendly way to create a Windows installation media
- Supports both 32-bit and 64-bit versions of Windows
- Allows for customization of the installation media, such as including additional drivers or updates
Cons of MediaCreationTool.bat
- Requires manual download and execution of the script
- May not be as up-to-date as the official Microsoft Media Creation Tool
- Limited to creating installation media, and does not provide additional functionality like LTSC-Add-MicrosoftStore
Code Comparison
LTSC-Add-MicrosoftStore:
$ErrorActionPreference = 'SilentlyContinue'
$ProgressPreference = 'SilentlyContinue'
$Reg = [Microsoft.Win32.RegistryKey]::OpenBaseKey([Microsoft.Win32.RegistryHive]::LocalMachine, [Microsoft.Win32.RegistryView]::Registry64)
$Key = $Reg.OpenSubKey('SOFTWARE\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore\Applications\Microsoft.WindowsStore_8wekyb3d8bbwe')
MediaCreationTool.bat:
@echo off
setlocal enabledelayedexpansion
rem Check if running as admin
net session >nul 2>&1
if %errorLevel% neq 0 (
echo This script requires administrative privileges.
pause
exit /b
)
rem Check Windows version
wmic os get Caption | findstr /i "Windows 10" >nul
if %errorLevel% neq 0 (
echo This script is only for Windows 10.
pause
exit /b
)
Smart Activation Script
Pros of KMS_VL_ALL_AIO
- More comprehensive activation solution for various Microsoft products
- Supports both online and offline KMS activation methods
- Regular updates and active community support
Cons of KMS_VL_ALL_AIO
- More complex setup and usage compared to LTSC-Add-MicrosoftStore
- Potential security concerns due to its nature as an activation tool
- May require more frequent updates to maintain functionality
Code Comparison
LTSC-Add-MicrosoftStore:
$Host.UI.RawUI.WindowTitle = "Microsoft Store Installer for Windows 10 Enterprise LTSC 2021"
$ErrorActionPreference = "SilentlyContinue"
$ProgressPreference = 'SilentlyContinue'
KMS_VL_ALL_AIO:
@echo off
set KMS_Emulation=1
set KMS_IP=172.16.0.2
set KMS_Port=1688
set KMS_ActivationInterval=120
set KMS_RenewalInterval=10080
The LTSC-Add-MicrosoftStore script focuses on adding the Microsoft Store to LTSC editions, while KMS_VL_ALL_AIO is designed for activating various Microsoft products using KMS emulation. The code snippets reflect their different purposes and implementation approaches.
Open-source Windows and Office activator featuring HWID, Ohook, KMS38, and Online KMS activation methods, along with advanced troubleshooting.
Pros of Microsoft-Activation-Scripts
- Offers a wider range of activation options for various Microsoft products
- Provides both GUI and CLI interfaces for user flexibility
- Regularly updated with new activation methods and fixes
Cons of Microsoft-Activation-Scripts
- More complex to use, especially for novice users
- Potentially raises more security concerns due to its activation methods
- Not specifically tailored for LTSC editions of Windows
Code Comparison
LTSC-Add-MicrosoftStore:
$Host.UI.RawUI.WindowTitle = "Microsoft Store Installer for Windows 10 Enterprise LTSC 2021"
Microsoft-Activation-Scripts:
@echo off
mode con cols=98 lines=30
title Microsoft Activation Scripts All-in-One
Both projects use similar techniques to set the console window title, but Microsoft-Activation-Scripts also adjusts the window size for better visibility.
Summary
LTSC-Add-MicrosoftStore is a focused tool for adding Microsoft Store to LTSC editions, while Microsoft-Activation-Scripts is a comprehensive suite for activating various Microsoft products. The former is simpler and more specific, while the latter offers more features but with increased complexity.
The Reliable USB Formatting Utility
Pros of Rufus
- Multi-purpose tool for creating bootable USB drives, supporting various formats and operating systems
- Actively maintained with frequent updates and a large user base
- Open-source project with extensive documentation and community support
Cons of Rufus
- Focused on USB drive creation, not specifically tailored for adding Microsoft Store to LTSC
- Requires more technical knowledge to use for specific tasks like modifying Windows installations
Code Comparison
While a direct code comparison is not particularly relevant due to the different purposes of these projects, we can highlight some key differences in their implementation:
LTSC-Add-MicrosoftStore:
$Host.UI.RawUI.WindowTitle = "Add Microsoft Store for LTSC"
Rufus:
static __inline BOOL CreatePartition(HANDLE hDrive, LONGLONG PartitionOffset, LONGLONG PartitionSize, DWORD PartitionType)
LTSC-Add-MicrosoftStore is primarily written in PowerShell, focusing on Windows-specific modifications. Rufus, on the other hand, is written in C and deals with low-level disk operations for broader compatibility across different systems.
Convert designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual CopilotREADME
Add Store to Windows 10 Enterprise LTSC
For Windows 10 Enterprise LTSC 2019
Download
To install, run Add-Store.cmd as Administrator
If you do not want App Installer / Purchase App / Xbox identity, delete each one appxbundle before running to install. However, if you plan on installing games or any app with in-purchase options, you should include everything.
If the store still will not function, reboot. If still not working, open the command prompt as the administrator and run the following command, then reboot once more.
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
Addition troubleshooting
Right click start
Select Run
Type in: WSReset.exe
This will clear the cache if needed.
为Windows 10 Enterprise LTSCå¢å åºç¨ååº
éç¨äºWindows 10 Enterprise LTSC 2019
ä¸è½½å°å
è¦å¼å§å®è£ , 请æå ä¸è½½åç¨å³é®ç®¡çåè¿è¡ Add-Store.cmd
å¦ææ¨ä¸æ³å®è£
App Installer / Purchase App / Xboxï¼è¯·å¨è¿è¡å®è£
ä¹åå é¤å¯¹åºç.appxbundleåç¼çæ件ãä½æ¯ï¼å¦ææ¨è®¡åå®è£
游æï¼æ带æè´ä¹°é项çåºç¨ï¼åä¸è¦å é¤ã
å¦æè£
å®ä¹åååºä»ç¶æä¸å¼ï¼è¯·å
éå¯è¯è¯ãå¦æä»ç¶ä¸è¡ï¼è¯·ä»¥ç®¡çå身份æå¼å½ä»¤æ示符并è¿è¡ä»¥ä¸å½ä»¤ä¹åï¼ç¶ååéå¯è¯è¯ã
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
ååºä¿®å¤
Win+Ræå¼è¿è¡ï¼è¾å
¥WSReset.exeå车ã
该å½ä»¤ä¼æ¸
空并éç½®Windows Storeååºçææç¼åã
该èæ¬ç±abbodi1406è´¡ç®ï¼
https://forums.mydigitallife.net/threads/add-store-to-windows-10-enterprise-ltsc-LTSC.70741/page-30#post-1468779
Top Related Projects
Universal MCT wrapper script for all Windows 10/11 versions from 1507 to 21H2!
Smart Activation Script
Open-source Windows and Office activator featuring HWID, Ohook, KMS38, and Online KMS activation methods, along with advanced troubleshooting.
The Reliable USB Formatting Utility
Convert designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual Copilot