kal
0
Q:

powershell else if

if(Boolean_expression) {
   // Executes when the Boolean expression is true
}else {
   // Executes when the Boolean expression is false
}
1
if (condition) {
 # Whatever
}
elseif (condition) {
 # Whatever
}

0

New to Communities?

Join the community