PowerShell - Functions
Given this comment-based help snippet inside a script:
<#
.SYNOPSIS
Shows a greeting message
.PARAMETER Name
The name to greet
#>
function Greet-User {
param([string]$Name)
"Hello, $Name!"
}
What will Get-Help Greet-User display under the SYNOPSIS section?