user1462199
user1462199

Reputation:

PowerShell Help System

So there is two ways of using help in PoSH, for advanced functions you can use comment based help, my question is when you use comment based help does it produce MAML? As for native cmdlets is a help XML file MAML?

Upvotes: 2

Views: 97

Answers (1)

Shay Levy
Shay Levy

Reputation: 126922

Comment based help is interpreted by Get-Help, it doesn't produce MAML files. You can use the Cmdlet Help Editor to create MAML files for snap-ins or modules. You can find it on CodePlex:

http://cmdlethelpeditor.codeplex.com/

Upvotes: 2

Related Questions