I'm using the typical method for copying items in powershell with the native Windows copy dialog.
$trnsfr = New-Object -ComObject "Shell.Application"
$target_folder = $trnsfr.NameSpace($trgdir)
$target_folder.CopyHere($srcdir)
Everything works great, but I was wondering if there was a way I could provide a list of items to copy rather than a single path?