Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 423 Bytes

Comparisons.md

File metadata and controls

12 lines (11 loc) · 423 Bytes

PowerShell Comparison Operators

Source

  • -ne (not equal to)
  • -lt (less than)
  • -le (less than or equal to)
  • -gt (greater than)
  • -ge (greater than or equal to)
  • -like (like—a wildcard comparison)
  • -notlike (not like—a wildcard comparison)
  • -contains (contains the specified value)
  • -notcontains (doesn't contain the specified value)