Hi @SourSnacks ,
The equivalent of your robocopy script in PowerShell would be something as follows:
Copy-Item -Path "C:\source\test-folder1\*" -Destination \\destination\test-folder2
The robocopy command you've posted seems correct and works for me, you could try placing double quotes around your source and destination:
robocopy "c:\source\test-folder1" "\\destination\test-folder2" /E
----------
If the reply was helpful please don't forget to upvote
and/or accept as answer
, thank you!
Best regards,
Leon