initial Commit

This commit is contained in:
Torsten Brendgen
2026-06-27 00:36:04 +02:00
commit 4b83abc7f2
27 changed files with 1702 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
function Test-ConfigurationDataValueIsEmpty {
[CmdletBinding()]
Param(
[AllowNull()]
$Value
)
if($null -eq $Value){
return $true
}
if($Value -is [string]){
return [string]::IsNullOrWhiteSpace($Value)
}
if($Value -is [System.Array]){
return @($Value).Count -eq 0
}
return $false
}