AU.psm1
#requires -version 3 $paths = "Private", "Public" foreach ($path in $paths) { Get-ChildItem $PSScriptRoot\$path\*.ps1 | ForEach-Object { . $_.FullName } } |
#requires -version 3 $paths = "Private", "Public" foreach ($path in $paths) { Get-ChildItem $PSScriptRoot\$path\*.ps1 | ForEach-Object { . $_.FullName } } |