Hello I not see which files are copied in the logs of azure devops release
Copy-Item -Path $X -Destination $Y -recurse -Force -Exclude $Z
how can I see list which files are copied from where to where in the logs?
Hello I not see which files are copied in the logs of azure devops release
Copy-Item -Path $X -Destination $Y -recurse -Force -Exclude $Z
how can I see list which files are copied from where to where in the logs?
Copy-Item -Path $X -Destination $Y -recurse -Force -Exclude $Z -verbose
the solution :D thx to @tomalak