I need to copy lots of specific pdf files with specific names. All the files are insame folder, I have all the file names in csv. I made a lazy "script" which is like this (obv. not all the files in this post):
Copy-Item -Path 391248* -Destination <destination>
Copy-Item -Path 241044* -Destination <destination>
Copy-Item -Path 532350* -Destination <destination>
Does anyone have more clean solution for this?