helpers/Helper-Function1.ps1
1 2 3 4 5 6 |
function Helper-Function1 { [CmdletBinding()] param() 'Welcome to Helper-Function1' | Write-Host } |
1 2 3 4 5 6 |
function Helper-Function1 { [CmdletBinding()] param() 'Welcome to Helper-Function1' | Write-Host } |