From the course: Learning PowerShell

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Grid view

Grid view - PowerShell Tutorial

From the course: Learning PowerShell

Start my 1-month free trial

Grid view

- [Voiceover] So one of the great things that we have inside of Powershell is actually a thing called Grid View, and what Grid View allows us to do is actually output our data to a GUI environment where we can work with it a little bit easier, especially when you're looking just to manipulate some data and get a quick peek at what's going on in a particular server, or what's happening within a particular commandlet, Grid View might offer you a great alternative than instead of trying to figure out how to output it out to a file or a different table and that kinda stuff. So, let me go ahead and just run get-service, with the piping into the out-Grid View and let me show you what this looks like. So, if you look inside of this get-service, I actually have the ability to see what's here and work with it. So, if I zoom in, you get a general idea, just an Explorer window, but I can work with any of these columns, so, if just wanna do a quick sort on status, or name or display name, just…

Contents