mirror of
https://github.com/snazy2000/SnipeitPS.git
synced 2025-12-14 02:12:29 +00:00
11 lines
No EOL
251 B
PowerShell
11 lines
No EOL
251 B
PowerShell
$scriptRoot = $PSScriptRoot + '\public'
|
|
|
|
Get-ChildItem $scriptRoot *.psm1 | ForEach-Object {
|
|
Import-Module $_.FullName
|
|
}
|
|
|
|
$scriptRoot = $PSScriptRoot + '\private'
|
|
|
|
Get-ChildItem $scriptRoot *.psm1 | ForEach-Object {
|
|
Import-Module $_.FullName
|
|
} |