1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Install Windows Terminal on Windows Server 2022</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <meta name="keywords" content="Windows Terminal,Windows Server 2022,Windows Server 2022 Features,Microsoft,Windows Server,2022,Terminal,How To,Tutorial,i12bretro">
- <meta name="author" content="i12bretro">
- <meta name="description" content="Install Windows Terminal on Windows Server 2022">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
- <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
- <script type="text/javascript" src="includes/js/steps.js"></script>
- <link href="css/steps.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <div id="gridContainer">
- <div class="topMargin"></div>
- <div id="listName" class="topMargin">
- <h1>Install Windows Terminal on Windows Server 2022</h1>
- </div>
- <div></div>
- <div id="content">
- <h2>What is Windows Terminal?</h2>
- <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>
- <ol>
- <li>Log into the Server 2022 device</li>
- <li>Download the latest Windows Terminal release <a href="https://github.com/microsoft/terminal/releases" target="_blank">Download</a></li>
- <li>Open File Explorer and navigate to the download location</li>
- <li>Rename the downloaded msixbundle Microsoft.WindowsTerminal.msixbundle</li>
- <li>While holding Shift, right click in the whitespace > Open PowerShell window here</li>
- <li>Run the following command in Powershell
- <div class="codeBlock PS"># install Windows Terminal<br />
- Add-AppxPackage -Path .\Microsoft.WindowsTerminal.msixbundle</div>
- </li>
- <li>That's it! Windows Terminal is now installed on Server 2022</li>
- </ol>
- </div>
- </div>
- </body>
- </html>
-
|