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