docs
docs copied to clipboard
Windows 10 Enterprise LTSC setup instructions
The documentation for installation using MSIX should expanded for Windows 10 Enterprise LTSC
If you need a graphical installer, install the Windows Package Manager separately:
- Download Dependencies.zip, License1.xml and the MSIXBundle from the Package Manager repository
- Extract the Dependencies.zip
- Install Desktop App Installer by
Add-AppxProvisionedPackage -Online ^
-LicensePath e53e159d00e04f729cc2180cffd1c02e_License1.xml ^
-DependencyPackagePath (Get-Item x64\*.appx) ^
-PackagePath Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle
Alternatively, use the bundled Dism.exe or PowerShell commands to add or provision the application bundle.
Add-AppxPackage and Add-AppxProvisionedPackage are available despite the Microsoft Store, Desktop App Installer and winget not being installed by default.
You may have to allow sideloaded apps in the Windows Settings, or via PowerShell:
Set-ItemProperty HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock -Name AllowAllTrustedApps -Value 1 -Type DWord