Public/Get-OneIAMHello.ps1
|
function Get-OneIAMHello { [CmdletBinding()] param () Write-Host "Hello from OneIAM Module!" -ForegroundColor Green return "Module Loaded Successfully" } function Get-Name { [CmdletBinding()] param ( [Parameter(Mandatory)] [string]$Name ) "Hello $Name" } |