Copy Files Remote

Published: 2024-05-26

 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
$creds = Get-Credential -UserName "{domain_name}\$Env:UserName" `
    -Message "Enter your privileged account details:"

New-PSDrive -Name "AdminShare" `
    -PSProvider "FileSystem" `
    -Root "\\{servername}\c$" `
    -Credential $creds

try {
    Copy-Item -Path "$PSScriptRoot\{filename01}.ext" `
        -Destination "AdminShare:\{folder}\{path}" `
        -Force
    Copy-Item -Path "$PSScriptRoot\{filename02}.ext" `
        -Destination "AdminShare:\{folder}\{path}" `
        -Force
    Copy-Item -Path "$PSScriptRoot\{filename03}.ext" `
        -Destination "AdminShare:\{folder}\{path}" `
        -Force
    Write-Host "Files copied."
}
catch {
    Write-host -f yellow "Encountered Error:"$_.Exception.Message
}

Remove-PSDrive -Name "AdminShare"