Hoping someone can help.
I have in a text file 100's of lines that copy and pastes files.
Copy-Item "Source\File123.txt" -Destination "Destination\Folder123"
Copy-Item "Source\File542.txt" -Destination "Destination\Folder542"
Copy-Item "Source\File567.txt" -Destination "Destination\Folder567"
How can I get powershell to execute each of these lines by loading the text file.
Thanks