Get-ChildItem | Select-Object Name # shortened to gci | Select Name
Get-ChildItem | ForEach-Object { Copy-Item -Path $_.FullName -destination "C:\\destinationPath\\" } # shortened gci | % { Copy $_.FullName "C:\\destinationPath\\" }