Sin cmdlets adicionales instalados, simplemente puede usar Get-ChildItem
:
Get-ChildItem -Filter *.zip -Recurse $pwd
El Find-ChildItem
Cmdlet en Windows Powershell es un equivalente del comando de búsqueda de Unix/Linux
http://windows-powershell-scripts.blogspot.in/2009/08/unix-linux-find-equivalent-in.html
Algunas de las opciones de Find-ChildItem
Find-ChildItem -Type f -Name ".*.exe"
Find-ChildItem -Type f -Name "\.c$" -Exec "Get-Content {} | Measure-Object -Line -Character -Word"
Find-ChildItem -Type f -Empty
Find-ChildItem -Type f -Empty -OutObject
Find-ChildItem -Type f -Empty -Delete
Find-ChildItem -Type f -Size +9M -Delete
Find-ChildItem -Type d
Find-ChildItem -Type f -Size +50m -WTime +5 -MaxDepth 1 -Delete
Divulgación:soy el desarrollador de Find-ChildItem
cmdlet
dir <drive: [drive:]> /s | findstr /i <pattern>
- alternativa -
dir /s <drive:>\<pattern>
ejemplo
dir c: d: /s | findstr /i example.txt
- alternativa -
dir /s c:\example.txt