1803 버전 Windows 10에서는 ssh 클라이언트가 내장되어 Linux를 관리할 수 있다. powershell이나 cmd에서 ssh root@100.100.100.100 으로 접속하면 된다.
굳이 ssh 클라이언트를 설치하지 않아도 된다
1803 버전 Windows 10에서는 ssh 클라이언트가 내장되어 Linux를 관리할 수 있다. powershell이나 cmd에서 ssh root@100.100.100.100 으로 접속하면 된다.
굳이 ssh 클라이언트를 설치하지 않아도 된다
PowerShell v5.0부터는 Module 및 Package를 Online에서 설치할 수 있다
1) Get-Parameter가 소속 Module 찾기
Find-Module | Where-Object {$_.Includes.Command -like ‘Get-Parameter’}
2) pscx 모듈 설치하기
Install-Module -Name pscx -Force -AllowClobber
3) Get-Parameter가 pscx 모듈에 있는지 확인하기
Get-Command -Module pscx | Where-Object {$_.Name -eq “Get-Parameter”}
4) 특정한 cmdlet가 가지고 있는 Parameter 확인하기
Get-Parameter -CommandName Get-Service