Posts

Showing posts from July, 2018

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"