Recherche récursive de fichiers avec PowerShell
Source : Stack Overflow [powershell]
Utilisez la cmdlet Get-ChildItem avec le commutateur -Recurse :
Get-ChildItem -Path V:\Myfolder -Filter CopyForbuild.bat -Recurse -ErrorAction SilentlyContinue -Force