PSModuleSample.psm1
function Get-Message { PARAM($Name='World') Write-Output -InputObject "Hello $Name!" } function Get-Private { PARAM() "Do nothing" } |
function Get-Message { PARAM($Name='World') Write-Output -InputObject "Hello $Name!" } function Get-Private { PARAM() "Do nothing" } |