PowerShell: Get a GUI interface for any PowerShell cmdlet

Some cmdlets have too many parameters to list. Is there an easy way to build a cmdlet with its parameters for the console?

Just use the Show-Command cmdlet with any PowerShell cmdlet to get a GUI interface. In the following example, we use this with the Import-MDTDriver cmdlet.

When you are done, you will have three options: Run, Copy (for the clipboard), or Cancel.

Show-Command Import-MDTDriver

 

GUI Examples:

PS-1 PS-2