Powershell Copy File

Date: 2021-08-03
$src = Resolve-Path -Path ".\images\source.ico"
$dest = Resolve-Path -Path ".\images\target.ico"
Write-Host "Copying '$src' to '$dest'"
Copy-Item  -Path $src -Destination $dest -Recurse -force
52400cookie-checkPowershell Copy File