Public/Get-HelloWorld.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
Function Get-HelloWorld { <# .SYNOPSIS Returns Hello world .DESCRIPTION Returns Hello world .EXAMPLE PS> Get-HelloWorld Runs the command #> [OutputType([string])] [CmdletBinding()] param ( # Parameter description can go here or above in format: .PARAMETER <Parameter-Name> [Parameter()] [string]$Value = 'GetHelloWorld' ) $Value } |