Tried to offload some files onto an external hard drive, unfortunately because Windows is Windows: the paths are too long.
So I try:
Copy-Item "E:\" -Destination "F:\ableton_backup" -Recurse
And I get the following error:
Copy-Item: Second path fragment must not be a drive or UNC name
Surely there is a simple way to copy a bunch of files across to an external drive?
-LiteralPathparameter instead of just throwing the source path at the cmdlet & letting it decide how to use it? – Lee_Dailey Mar 03 '21 at 02:16robocopy /?to get some detail. – Vomit IT - Chunky Mess Style Mar 03 '21 at 03:27