Last Update: Sep 24, 2024 | Published: Aug 01, 2013
Previously I looked at how to use PowerShell to export Active Directory user information as a comma-delimited file so that it could be opened in an Excel spreadsheet. This is useful when managers request reports or you just need an easier way to sort or digest information. However, PowerShell has its own GridView application that can be used not only to view information in a more palatable manner, but provide easy data filtering and send to results to another cmdlet.
Let’s start with a simple example. Log on to a Windows Server 2012 domain controller (DC) as an administrator and follow the steps below:
Much like in an Excel spreadsheet, GridView lets you sort information by clicking on column names, filter information to narrow down your results, and also add search criteria to further hone the data.
Filtering your results is easy. Just type into the Filter box at the top of GridView what information you want to see. For instance, if I want to see only results that contain the word true, type that into the Filter box. In the results shown in the previous figure, that reduces my results to one user account that has the CannotChangePassword parameter set to true.
The Add criteria button gives much more granular control over the results. Click the button, then select one or more parameters from the drop-down menu, and then click Add. You’ll see the filter appear at the top of the GridView window. Type a value by which to filter the results in the empty box to the right of the equals operator, and the results in the main window will automatically be changed to reflect your search criteria. You can add more filters by simply clicking the Add criteria button again.
GridView allows you to pass the results back to the PowerShell console, which can be useful when you want to filter the results in GridView but then perform additional actions with the returned data.
The group cmdlet formats and sorts the data as shown in the figure below.