Files
ps.ipam/ps.ipam.psm1
2022-11-30 16:53:56 +03:00

7 lines
283 B
PowerShell

Get-ChildItem "$(Split-Path $script:MyInvocation.MyCommand.Path)\functions" -Filter "*.ps1" -Recurse | ForEach-Object {
. $_.FullName
}
Get-ChildItem "$(Split-Path $script:MyInvocation.MyCommand.Path)\classes" -Filter "*.ps1" -Recurse | ForEach-Object {
. $_.FullName
}