Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Search for .ps1 files in a given directory
# Search for .ps1 files in a given directory
Get-ChildItem C:\Code\powershell -Include *.ps1 -Recurse -Force | % { . $_.FullName }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment