Encontre string em todos os arquivos PowerShell
Get-ChildItem -Recurse | Select-String "dummy" -List | Select Path
Lions and Tigers and Code...
Get-ChildItem -Recurse | Select-String "dummy" -List | Select Path
Get-ChildItem -recurse | Select-String -pattern "dummy" | group path | select name