Workgroup 환경에서 Windows 10의 원격 관리 설정하기


<Remote Management Settings>
1) Firewall off
– firewall.cpl에서 설정하기
## PowerShell에서는 다음과 같이 설정
Get-NetFirewallProfile | Select-Object -Property name,enabled
Set-NetFirewallProfile -Enabled False
(## 또는 Set-NetFirewallProfile -Profile Domain,Public,Private -Enabled False)
##Command Prompt에서는 다음과 같이 설정
netsh advfirewall set allprofiles state off
2) Get-NetConnectionProfile | Set-NetConnectionProfile -NetworkCategory Private
3) Enable-PSRemoting -Force
4) Set-Item WSMan:\localhost\client\Trustedhosts -Value *
## PowerShell Script를 실행하기 위해서는
Set-ExecutionPolicy RemoteSigned