How do I use the .PARAMETER option to add detailed information for the parameters of a function when writing the help for it? I tried ".PARAMETER $ParamName", that didn't work, and I tried ".PARAMETER -ParamName", that didn't work either.
Here's an example:
<#
.SYNOPSIS
short overview
.DESCRIPTION
longer overview
.PARAMETER
dont know how this works?
.EXAMPLE
Example code
.NOTES
This is awesome!
.LINK
http://winfred.com
#>