PowerShell: Arithmetic Operators
Basic Arithmetic Operators
+
→ addition-
→ subscribe, sign negation*
→ multiplication/
→ division%
→ modulus (remainder of division)
Power
[Math]::Pow(2,3) # 8
Bit Operators
-band
→ bitwise and-bnot
→ bitwise not-bor
→ bitwise or-bxor
→ bitwise xor-shr
→ bitwise shift right-shl
→ bitwise shift left