PowerShell: Boolean Operators

By Xah Lee. Date: .

💡 TIP: 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

PowerShell, Boolean Related