PowerShellコマンドをセットアップしようとしているのでGet-Help -full
、スクリプトの実行方法に関する完全な情報が表示されます。このヘルプに表示したいデフォルト値があります。私は次のものを持っています:
<#
.PARAMETER SenderEmail
The name of the user who is sending the email message. Although not
officially required, it will be checked to make sure it's not blank.
#>
Param (
[String]
[Parameter(
Position=1,
HelpMessage="Sender's Email Address")]
$SenderEmail = "bob@fubar.com"
)
それでも、Get-Help -detailと入力すると、次のように表示されます。
-SenderEmail <String>
The name of the user who is sending the email message. Although not
officially required, it will be checked to make sure it's not blank.
Required? false
Position? 2
Default value
Accept pipeline input? false
Accept wildcard characters?
このパラメータのデフォルト値を表示するためのヘルプを取得するにはどうすればよいですか?