Get-ChildItem -Recurse -File -Filter '*.jpg' | ForEach-Object { Copy-Item -Path $_.FullName -Destination 'path\to\some\folder' }
Get-ChildItem -Recurse -File -Filter '*.jpg' | ForEach-Object { Copy-Item -Path $_.FullName -Destination 'path\to\some\folder' }