Created
August 29, 2019 23:25
-
-
Save lcloss/336054753e8dc6dfac4fe3997d224ab8 to your computer and use it in GitHub Desktop.
Search for a file or folder with PowerShell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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