Folder Item Copier
Powershell Command to copy all files from all folders (including child folders) in a folder.
Get-ChildItem -Path "C:\pth\to\main\folder\" -Recurse -File | Copy-Item -Destination "C:\path\to\destination\folder\" -Force
Powershell Command to copy all files from all folders (including child folders) in a folder.
Get-ChildItem -Path "C:\pth\to\main\folder\" -Recurse -File | Copy-Item -Destination "C:\path\to\destination\folder\" -Force