PowerShell Construct Operators
PowerShell has powerful loops and construct operators. If then loop: if ($x -gt 2) { #type your code } If then else loop: if ($x -gt 2) { #type your code } elseif ($x -lt 2) { #type your code } else { #type your code } Switch look (Select …