Get all cmdlets in a specific module
That might be old new for some of you, I was, however thrown off a little bit.
I installed a new Git module as I was playing with GitHub and wanted to update check for updates and update files accordingly. I am specifically talking about the PowerShell Cheat Sheets, which is an awesome collection. Anywho after loading the module, I was a little stumped how to get the info of the cmdlets in the module. I tried
help *git*
Which only resulted in 2-3 commands.
Well the answer is easy:
Get-Command -Module $module
This will give you all the cmdlets in a module. Pretty cool. :o)