Public/Functions/DEV/Test-OSDPreferences.ps1
1 2 3 4 5 6 7 8 9 10 11 |
function Test-OSDPreferences { [CmdletBinding()] param ( [ValidateSet({[string]$Global:ValidateOSName})] #Operating System Name. Default is 'Windows 11 22H2' [System.String] $OSName ) $OSName } |