Skip to content

Instantly share code, notes, and snippets.

@lcloss
Created August 29, 2019 23:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lcloss/336054753e8dc6dfac4fe3997d224ab8 to your computer and use it in GitHub Desktop.
Save lcloss/336054753e8dc6dfac4fe3997d224ab8 to your computer and use it in GitHub Desktop.
Search for a file or folder with PowerShell
Write-Output "Finding $($args[0])..."
Get-ChildItem –Path C:\ -Include $args[0] -Recurse -ErrorAction SilentlyContinue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment