Skip to content

Instantly share code, notes, and snippets.

@rpc180
Created June 18, 2021 20:03
Show Gist options
  • Save rpc180/18d78a0bf260f82606469a02c16b500d to your computer and use it in GitHub Desktop.
Save rpc180/18d78a0bf260f82606469a02c16b500d to your computer and use it in GitHub Desktop.
Useful Powershell Commands
# Search a folder directory for strings in specific file types only
Get-ChildItem *.* -Recurse -Include "*.json","*.xaml","*.ps1" | Select-string -pattern "Find Me"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment