Modules/PSUtils/PSUtils_Functions.ps1
1 2 3 4 5 6 7 8 9 |
# =========================================================================== # PSUtils_Functions.ps1 --------------------------------------------------- # =========================================================================== # functions --------------------------------------------------------------- # --------------------------------------------------------------------------- Get-ChildItem -Path $Module.FunctionsDir -Filter "*.ps1" | ForEach-Object { . $_.FullName } |