if¶
if (Bedingung) {…} else {…}
1if ($a -gt 2)
2{
3 Write-Host "The value $a is greater than 2."
4}
5 elseif ($a -eq 2)
6{
7 Write-Host "The value $a is equal to 2."
8}
9 else
10{
11 Write-Host "The value $a is less than 2 or was not created or initialized."
12}