GREP in PowerShell
Simple but powerful script to search recursively through a windows directory searching for a string of text. PS C:\> get-childitem "C:\*" -recurse | select-string -pattern "what your looking for"
Tips & Tricks for Programmers