PowerShell: Boolean Operators
Operator names are case-insensitive.
Logical Operators
a -and b
- True when both sides are true.
a -or b
- True when at least one side is true.
a -xor b
- “exclusive or”. True when the two sides are different.
-not a
- negation.
! a
- Same as
-not