Created
March 3, 2025 10:12
-
-
Save armm29393/c5d34eafacbe3ba512de9a98fdc09b49 to your computer and use it in GitHub Desktop.
How to install Windows Terminal on Windows Server
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
| 1. Open PS as Admin | |
| cd C:\Windows\System32\WindowsPowerShell\v1.0 | |
| start powershell.exe | |
| 2. In PS run following command.. | |
| Invoke-WebRequest -Uri https://aka.ms/Microsoft.VCLibs.x64.14.00.Desktop.appx -outfile $env:TEMP\1-Microsoft.VCLibs.x86.14.00.Desktop.appx | |
| Add-AppxPackage $env:TEMP\1-Microsoft.VCLibs.x86.14.00.Desktop.appx | |
| Invoke-WebRequest -Uri https://github.com/microsoft/microsoft-ui-xaml/releases/download/v2.8.6/Microsoft.UI.Xaml.2.8.x64.appx -OutFile $env:TEMP\2-Microsoft.UI.Xaml.2.8.x64.appx | |
| Add-AppxPackage $env:TEMP\2-Microsoft.UI.Xaml.2.8.x64.appx | |
| Invoke-WebRequest -Uri https://github.com/microsoft/terminal/releases/download/v1.22.10352.0/Microsoft.WindowsTerminal_1.22.10352.0_8wekyb3d8bbwe.msixbundle -outfile $env:TEMP\3-Microsoft.WindowsTerminal.msixbundle | |
| Add-AppxPackage $env:TEMP\3-Microsoft.WindowsTerminal.msixbundle | |
| # Add-AppxPackage .\1-Microsoft.VCLibs.x86.14.00.Desktop.appx | |
| # Add-AppxPackage .\2-Microsoft.UI.Xaml.2.8.x64.appx | |
| # Add-AppxPackage .\3-Microsoft.WindowsTerminal.msixbundle | |
| 3. Enjoy! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment