src/Validator.psm1
function Confirm-Arguments { param( [string]$site, [Alias('l')][Switch]$lowercase, [Alias('nl')][Switch]$noLowercase, [Alias('u')][Switch]$uppercase, [Alias('nu')][Switch]$noUppercase, [Alias('d')][Switch]$digits, [Alias('nd')][Switch]$noDigits, [Alias('s')][Switch]$symbols, [Alias('ns')][Switch]$noSymbols, [Switch]$prompt, [Switch]$clipboard ) if ($PSBoundParameters.lowercase -and $PSBoundParameters.noLowercase) { throw "* Can't have opposite rule -L (or -Lowercase) and -NL (or -No-Lowercase) at the same time." } if ($PSBoundParameters.uppercase -and $PSBoundParameters.noUppercase) { throw "* Can't have opposite rule -U (or -Uppercase) and -NU (or -No-Uppercase) at the same time." } if ($PSBoundParameters.digits -and $PSBoundParameters.noDigits) { throw "* Can't have opposite rule -D (or -Digits) and -ND (or -No-Digits) at the same time." } if ($PSBoundParameters.symbols -and $PSBoundParameters.noSymbols) { throw "* Can't have opposite rule -S (or -Symbols) and -NS (or -No-Symbols) at the same time." } if (!$PSBoundParameters.site -and !$PSBoundParameters.prompt) { throw " * SITE is a required argument (unless in interactive mode with -Prompt)" } if ($PSBoundParameters.clipboard) { Get-SystemCopyCommand } } Export-ModuleMember -Function Confirm-Arguments |