Windows에서 powerShell을 통해 다른 windows서버로 파일을 전송할 떄 WinRM을 사용한다.사용하기전 설정과 사용 예제를 알아보자1. 설정PowerShell 에서 수행 # WinRm 활성화 확인Get-Service -Name WinRm# WinRm Trusted hosts 조회 Get-Item WSMan:\localhost\Client\TrustedHosts# WinRM TrustedHosts 설정 (로컬호스트 -> 원격호스트) 할 경우 둘다 추가해줘야한다. [ip여러개 할려면 , 를 이용해서 여러개 추가한다]Set-Item WSMan:\localhost\Client\TrustedHosts -Value "192.168.1.xxx" -Force2. 예제코드 (sample.ps1)# s..