2020. 05 업데이트
1. 윈도우 터미널 다운 설치
GitHub: github.com/microsoft/terminal
Store: aka.ms/terminal
Winget:
검색: winget search terminal
설치: winget install terminal
패키지 관리 : winget source (add/list/update/remove/reset)
**Winget GitHub: github.com/microsoft/winget-cli
**Winget msstore: app installer
*ms-windows-store:/pdp/?productid=9nblggh4nns1
*www.microsoft.com/ko-kr/p/앱-설치-관리자/9nblggh4nns1?activetab=pivot:overviewtab
2.활성
Powershell:
확인: Get-WindowsCapability -Online | ? Name -like 'OpenSSH*'
설치:
# OpenSSH Client 설치 Add-WindowsCapability -Online -Name OpenSSH.Client~~~~0.0.1.0 # OpenSSH Server 설치 Add-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0
제거:
# OpenSSH Client 삭제 Remove-WindowsCapability -Online -Name OpenSSH.Client~~~~0.0.1.0 # OpenSSH Server 삭제 Remove-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0
'cmd' 카테고리의 다른 글
nslookup (0) | 2015.02.10 |
---|---|
win8 무선 wifi 프로필 확인 및 삭제 (0) | 2014.11.29 |
msiexec <msi 파일 확장 (압축풀기)> (0) | 2014.08.18 |