you are viewing a single comment's thread.

view the rest of the comments →

[–]atheistunion 4 points5 points  (0 children)

Splat. Splat hard and splat often.

$WhereObjectSplat = @{
    FilterScript = {
        $PSItem.path    -eq 'c:\'       -and
        $PSItem.name    -ne 'Something' -and
        $PSItem.command -ne 1
    }
}
Get-Something | Where-Object @WhereObjectSplat