To create a listing grid to show info and output from PowerShell, you can send the output to the Out-GridView cmdlet:
Let’s make one example to show the output of Get-WmiObject Win32_Processor.
1 | PS C:\WINDOWS\system32> Get-WmiObject Win32_Processor | Out-GridView |
The result is this: