About_Filter considered Harmful
Someone asked a question in the #PowerShell channel on irc.FreeNode.net today about how to use filters, and pasted this an example like this: filter process-a-m { $_.processname -like "[a-m]*" } Get-Process | where {process-a-m} The question was: why doesn’t this have any output? Well, the answer is: it can’t have any output. The filter [...]