PowerShell Получите все файлы в каталоге рекурсивно

Get-ChildItem -Recurse -Path $path | % {
    Write-Output $_.FullName
}
Michu44