find string in multiple files windows pwershell code example
Example 1: find string in all files powershell
Get-ChildItem -Recurse | Select-String "dummy" -List | Select Path
Example 2: powershell find string in files recursive
Get-ChildItem -recurse | Select-String -pattern "dummy" | group path | select name