-1

I am writing PowerShell Cmdlets using the PSCmdlet class in C#.

[Cmdlet(VerbsCommon.Get, "Employee")]
public class GetEmployee : PSCmdlet

I want to provide more information in Remarks, Description, Synopsis section of Get-Help Get-Employee

Anyone knows how to add/fill these sections?

user3403260
  • 95
  • 1
  • 1
  • 7

1 Answers1

1
/// <summary>
/// <para type="synopsis">This is the cmdlet synopsis.</para>
/// <para type="description">This is part of the longer cmdlet description.</para>
/// <para type="description">Also part of the longer cmdlet description.</para>
/// </summary>
[Cmdlet(VerbsCommon.Get, "Employee")]
public class GetEmployee : PSCmdlet

See this blog post here for more detailed examples.

bergmeister
  • 949
  • 2
  • 10
  • 16