ConsoleGuiTools
ConsoleGuiTools copied to clipboard
Multiple filters are only '-or'. Would be nice to have '-and' as well
trafficstars
For example, if i do
PS | out-gridview
Then in the filters so that SI: doesn't equal 2 doesn't equal 0
Then it gives me results for both 2 and 0 becuase it is a -or clause:
Where-Object { $_.SI -NE '2' -or $_.SI -NE '0' }
Would be nice to be able to '-and' clause them:
Where-Object { $_.SI -NE '2' -and $_.SI -NE '0' }
[enhancement] [feature request]