감사합니다.
Powershell Remote - Workgroup 본문
도메인 환경, 권한이 있는 사용자 계정을 사용하는 경우라면 비교적 제한 없이 Powershell 리모트를 사용할 수 있다.
도메인이 아닌 환경이라면 즉, workgroup 환경에서 powershell remote를 사용하려면 다음의 방법을 사용한다.
보안 설정이 필요한 경우 방화벽 및 접근 가능한 주소를 관리하면 되겠지..
해당 설정이 sysprep후에도 적용되는지는 테스트 해봐야 할 것 같다.
1. Remote Server 설정
1) 관리자 권한으로 파워쉘을 실행 후
Enable-PSRemoting -SkipNetworkProfileCheck -Force
2) 방화벽 오픈
Set-NetFirewallRule –Name "WINRM-HTTP-In-TCP-PUBLIC" –RemoteAddress Any
2. Local Server 설정 (파워쉘을 실행하는 서버)
1) winrm 설정 - value는 remote server의 ip address를 입력한다. * 처리하면 귀찮음은 감소하겠지만 운영 환경에서는 피해야 할 것 같다.
Set-Item WSMan:\localhost\Client\TrustedHosts -Value "*" -Force
접속 테스트...
$Credential = Get-Credential
Enter-PSSession -ComputerName '172.16.10.11' -Credential $Credential
'Microsoft > Powershell' 카테고리의 다른 글
Powershell - Chrome 브라우저 실행 (2) | 2019.10.05 |
---|---|
putty - ssh - powershell 자동화 (0) | 2019.10.05 |
MPIO - Multh path 수량 점검하기 (0) | 2018.09.29 |
Windows Update 자동화하기 - Part 4 (0) | 2018.09.29 |
Windows Update 자동화하기 - Part 3 (0) | 2018.09.29 |
Windows Update 자동화하기 - Part 2 (1) | 2018.09.29 |
Windows Update 자동화하기 - Part 1 (0) | 2018.09.29 |
Powershell : 도메인 가입하기 (0) | 2018.03.22 |