Windows Server Core서버에 파일 복사하기
Windows2019. 1. 15. 15:08
https://msdn.microsoft.com/en-us/library/mt708806(v=vs.85).aspx
Windows Server Core서버에 파일 복사하기
$ip = "CoreServerIP" # replace with your Nano Server's IP address $s = New-PSSession -ComputerName $ip -Credential "coreserveraccount" Copy-Item -ToSession $s -Path SourcePath -Destination DestinationPath |