1. 程式人生 > 其它 >Windows Termainal安裝與配置右鍵選單和ssh

Windows Termainal安裝與配置右鍵選單和ssh

安裝

win10的安裝非常簡單,按下win徽標鍵,進入微軟商店

直接搜尋Windows Termainal,點選獲取即可

配置右鍵選單

新版本會直接安裝右鍵選單,如果沒有安裝,可以按我這個步驟來

1. 安裝powershell-7

官方網站 Installing PowerShell on Windows - PowerShell | Microsoft Docs

2. 使用管理員身份執行powershell-7

3. 執行指令碼

Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/lextm/windowsterminal-shell/master/install.ps1'))

然後你的選單就配置完成了

配置遠端伺服器連線

我們首先在設定中開啟配置json檔案

list中,每個json物件都代表了一種終端,我們仿照其他終端寫一個json物件 其中guid可以在powershell中使用new-guid命令隨機生成一個 然後就在commandline中書寫連線遠端伺服器的連線命令,比如 ssh 使用者名稱@ip 然後我們就可以直接進行連線了