Filter syntax Powershell

De Linuxmemo.

   -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)
Get-Command | Where-Object {$_.CommandType -eq 'cmdlet'}
Outils personnels