0658.html 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Install Windows Terminal on Windows Server 2022</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="Windows Terminal,Windows Server 2022,Windows Server 2022 Features,Microsoft,Windows Server,2022,Terminal,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Install Windows Terminal on Windows Server 2022">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  12. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  13. <script type="text/javascript" src="includes/js/steps.js"></script>
  14. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  15. </head>
  16. <body>
  17. <div id="gridContainer">
  18. <div class="topMargin"></div>
  19. <div id="listName" class="topMargin">
  20. <h1>Install Windows Terminal on Windows Server 2022</h1>
  21. </div>
  22. <div></div>
  23. <div id="content">
  24. <h2>What is Windows Terminal?</h2>
  25. <blockquote><em>The Windows Terminal is a modern, fast, efficient, powerful, and productive terminal application for users of command-line tools and shells like Command Prompt, PowerShell, and WSL. Its main features include multiple tabs, panes, Unicode and UTF-8 character support, a GPU accelerated text rendering engine, and custom themes, styles, and configurations.</em> -<a href="https://www.microsoft.com/en-US/p/windows-terminal/9n0dx20hk701" target="_blank">https://www.microsoft.com/en-US/p/windows-terminal/9n0dx20hk701</a></blockquote>
  26. <ol>
  27. <li>Log into the Server 2022 device</li>
  28. <li>Download the latest Windows Terminal release <a href="https://github.com/microsoft/terminal/releases" target="_blank">Download</a></li>
  29. <li>Open File Explorer and navigate to the download location</li>
  30. <li>Rename the downloaded msixbundle Microsoft.WindowsTerminal.msixbundle</li>
  31. <li>While holding Shift, right click in the whitespace &gt; Open PowerShell window here</li>
  32. <li>Run the following command in Powershell
  33. <div class="codeBlock PS"># install Windows Terminal<br />
  34. Add-AppxPackage -Path .\Microsoft.WindowsTerminal.msixbundle</div>
  35. </li>
  36. <li>That&#39;s it! Windows Terminal is now installed on Server 2022</li>
  37. </ol>
  38. </div>
  39. </div>
  40. </body>
  41. </html>