find string in all files in folder using powershell code example
Example: find string in all files powershell
Get-ChildItem -Recurse | Select-String "dummy" -List | Select Path
Get-ChildItem -Recurse | Select-String "dummy" -List | Select Path