$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
524000cookie-checkPowershell Copy File
$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