$list = Get-Content "
Foreach ($file in $list)
{
Copy-Item "Location of Original Files"
}
Very simple. Make a list of the files you have to grab and call it $LIST
Enter the loop where each $FILE equals a file name in the $LIST
Copy each $FILE from it original location to the destination.
Done and Done.
-Boston Tech Guy out