GraphicalTools - Out-ConsoleGridView
The GraphicalTools repo contains the Out-ConsoleGridView
PowerShell Cmdlet providing console-based GUI experiences based on
Terminal.Gui (gui.cs).
Note: A module named Microsoft.PowerShell.GraphicalTools
used to be built and published out of this repo, but per #101 it is deprecated and unmaintained until such time that it can be rewritten on top of .NET MAUI.
Installation
Install-Module Microsoft.PowerShell.ConsoleGuiTools
Features
Cross-platform! Use the cmdlet
Out-ConsoleGridview
to view and filter objects graphically.
Examples
Example 1: Output processes to a grid view
PS C:\> Get-Process | Out-ConsoleGridView
This command gets the processes running on the local computer and sends them to a grid view window.
Example 2: Use a variable to output processes to a grid view
PS C:\> $P = Get-Process
PS C:\> $P | Out-ConsoleGridView -OutputMode Single
This command also gets the processes running on the local computer and sends them to a grid view…