21 lines
212 B
PowerShell
21 lines
212 B
PowerShell
|
|
# standard if
|
||
|
|
if (condition) {
|
||
|
|
# ...
|
||
|
|
}
|
||
|
|
|
||
|
|
# if-then-else
|
||
|
|
if (condition) {
|
||
|
|
# ...
|
||
|
|
} else {
|
||
|
|
# ...
|
||
|
|
}
|
||
|
|
|
||
|
|
# if-then-elseif-else
|
||
|
|
if (condition) {
|
||
|
|
# ...
|
||
|
|
} elseif (condition2) {
|
||
|
|
# ...
|
||
|
|
} else {
|
||
|
|
# ...
|
||
|
|
}
|