PowerShell模块中有几个功能。其中一些功能共享相同的参数,因此使用Get-Help
时应显示相同的帮助文本。
示例
// myModule.psm1
Function Add-Foo {
<#
.PARAMETER AddTen
Adds ten to the result
#>
}
Function Add-Bar {
<#
.PARAMETER AddTen
Adds ten to the result
#>
}
做这样的事情很棒:
// myModule.psm1
$AddTen = "Adds ten to the result"
Function Add-Foo {
<#
.PARAMETER AddTen
$AddTen
#>
}
Function Add-Bar {
<#
.PARAMETER AddTen
$AddTen
#>
}