Skip to content

Instantly share code, notes, and snippets.

@optinsoft
Created January 29, 2025 16:27
Show Gist options
  • Select an option

  • Save optinsoft/b80edef76ab87fde778922960cfacbb7 to your computer and use it in GitHub Desktop.

Select an option

Save optinsoft/b80edef76ab87fde778922960cfacbb7 to your computer and use it in GitHub Desktop.
Install Windows Terminal on Windows 2022
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