Copying List of Files Through Powershell

Solution 1:

Have you tried placing the quotes around the Move-Item params instead of the csv items? Plus, drop the $line variable.

Import-CSV f:\script\Listoffiles.csv | foreach {Move-item "$_.Source" "$_.Destination"}