PowerShell obtenga todos los archivos en el directorio recursivamente
Get-ChildItem -Recurse -Path $path | % {
Write-Output $_.FullName
}
Michu44
Get-ChildItem -Recurse -Path $path | % {
Write-Output $_.FullName
}