Filter syntax Powershell
De Linuxmemo.
Version du 21 février 2017 à 09:46 par Linuxmemo (discuter | contributions)
-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'}