Created
January 29, 2025 16:27
-
-
Save optinsoft/b80edef76ab87fde778922960cfacbb7 to your computer and use it in GitHub Desktop.
Install Windows Terminal on Windows 2022
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Invoke-WebRequest -Uri https://aka.ms/Microsoft.VCLibs.x64.14.00.Desktop.appx -OutFile Microsoft.VCLibs.x86.14.00.Desktop.appx | |
| Invoke-WebRequest -Uri https://github.com/microsoft/microsoft-ui-xaml/releases/download/v2.8.5/Microsoft.UI.Xaml.2.8.x64.appx -OutFile Microsoft.UI.Xaml.2.8.x64.appx | |
| Invoke-WebRequest -Uri https://github.com/microsoft/terminal/releases/download/v1.19.11213.0/Microsoft.WindowsTerminal_1.19.11213.0_8wekyb3d8bbwe.msixbundle -OutFile Microsoft.WindowsTerminal_1.19.11213.0_8wekyb3d8bbwe.msixbundle | |
| Add-AppxPackage Microsoft.VCLibs.x86.14.00.Desktop.appx | |
| Add-AppxPackage .\Microsoft.UI.Xaml.2.8.x64.appx | |
| Add-AppxPackage .\Microsoft.WindowsTerminal_1.19.11213.0_8wekyb3d8bbwe.msixbundle |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment