Recursive file search using PowerShell
Recursive file search using PowerShell
Recursive file search using PowerShell
Re: Recursive file search using PowerShell
Use the [Get-ChildItem](http://technet.microsoft.com/en-us/library/hh849800.aspx) cmdlet with the `-Recurse` switch:
```
Get-ChildItem -Path V:\Myfolder -Filter CopyForbuild.bat -Recurse -ErrorAction SilentlyContinue -Force
```
```
Get-ChildItem -Path V:\Myfolder -Filter CopyForbuild.bat -Recurse -ErrorAction SilentlyContinue -Force
```