mirror of
https://github.com/snazy2000/SnipeitPS.git
synced 2025-12-15 10:45:48 +00:00
11 lines
250 B
PowerShell
11 lines
250 B
PowerShell
$scriptRoot = $PSScriptRoot + '\Public'
|
|
|
|
Get-ChildItem $scriptRoot *.ps1 | ForEach-Object {
|
|
Import-Module $_.FullName
|
|
}
|
|
|
|
$scriptRoot = $PSScriptRoot + '\Private'
|
|
|
|
Get-ChildItem $scriptRoot *.ps1 | ForEach-Object {
|
|
Import-Module $_.FullName
|
|
}
|