Notice
Recent Posts
Recent Comments
Link
«   2024/12   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

감사합니다.

Powershell Remote - Workgroup 본문

Microsoft/Powershell

Powershell Remote - Workgroup

springjunny 2019. 10. 5. 07:09

도메인 환경, 권한이 있는 사용자 계정을 사용하는 경우라면 비교적 제한 없이 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