How to write Powershell help for my cmdlets
powershell-2.0
Solution
PowerShell cmdlet help is stored as an XML file. There is some information here. Then there is the Cmdlet Help Editor Tool.
And more recently, the Cmdlet and Help Designer.
Problem
I've written my own Powershell cmdlets in c#. How can I add help test, so the I can get a more complete description when users use "Get-Help MYCMDLET" Thanks,