my.psm1
1 2 3 4 |
Write-Host "The powershell module is loading" -ForegroundColor green Function Get-WelcomeMessage { write-host "Hello World $args" -ForegroundColor Yellow } |