I am writing custom cmdlets. While showing help I want to hide the
For ex (help for get-process):
PS C:\source\ESI\EMC.WinApps.Fx.Build\DEBUG\X64\ESIPstoolkit> get-help get-process
NAME Get-Process
SYNTAX Get-Process [[-Name] ] [-ComputerName ] [-FileVersionInfo] [-Module] []
Whereas help for my cmdlets shows all the common parameters which is kind of clumsy.
Add-MyCmdlet -Path -Param1 -Param2 [-Index ] -Location [-Verbose] [-Debug] [-ErrorAction ] [ -WarningAction ] [-ErrorVariable ] [-WarningVariable ] [-OutVariable ] [- OutBuffer ]
How can I hide these?
Answer:
Looks like I just have to specify the maml xml (help) file for my Commands (module). Then its displaying hte [CommmonParameters].
Thank you, Dreamer