As a .NET developer, I thrive on Intellisense. Whether its a method I wrote or from a library from Nuget, the ability to see the arguments am supposed to pass saves alot of time and in turn improves efficiency. So I ran into this problem where I had to figure out all the possible commands and execution approaches I needed to follow in order to execute a powershell module. The command below will  give a whole lot of information about the module in question and hence this is my version of powershell Intellisense.

Get-Command -Module <module name> |Format-List *

 

 

 

 

Leave a Reply

Your email address will not be published. Required fields are marked *