Wie kann ich einen Boolean Parameter für ein Powershell Script erstellen?
Param( [string]$Name, [int]$Age, [switch]$IsStudent )
Mit dem Typ switch.
Param( [string]$Name, [int]$Age, [switch]$Verbose ) if ($Verbose) { Write-Output "Verbose mode is enabled." }