ecs.wsus.ps1
1 2 3 4 5 6 7 |
$AllFunctions = Get-ChildItem -Path "$($PSScriptRoot)\Functions" -Filter *.ps1 Foreach ($Function in $AllFunctions) { . $($Function.FullName) } |