복사 - item 에 인증 정 보 를 통합 하여 파일 을 복사 합 니 다.

962 단어 copy
$source = "c:\XXX.XXX"

$pw = ConvertTo-SecureString '  ' -AsPlainText -Force

$Creds = New-Object -Typename System.Management.Automation.PSCredential -Argumentlist 'softdump\ultraman', $pw

New-PSDrive -Name P -PSProvider FileSystem -Root '\\3.242.164.147\SOE' -Credential $Creds -Persist

Copy-Item -Path $source -Destination 'P:\' -Recurse -Force

Remove-PSDrive -Name P

좋은 웹페이지 즐겨찾기