Powershell Grid-View
get-service | where {$_.name -match "win"} Normally displays like this: Note how very long names can get cut off with the ellipses…. Did you know that Powershell has a “grid-view”, similar to SQL? get-service | where {$_.name -match "win"} | out-gridview If you pipe all get-service to the out-gridview, then you can see how you […]