You can use PowerShell cmdlet Get-ChildItem with Select-String cmdlet to find any specific string recursively and output the file names with path containing that string. Here is a quick example –
1 |
Get-ChildItem -Recurse | Select-String "string_to_search" -List | Select Path |