Public/Operations/Get-EdenServiceStatus.ps1

function Get-EdenServiceStatus {
    <#
        .SYNOPSIS
        Getting service status.

        .DESCRIPTION
        Getting service status. by calling the local './Eden/Operations/Get-ServiceStatus.ps1' script.
    #>

    [CmdletBinding()]
    param(
        # The name of the local or global settins file to pass to the Eden script.
        [Alias("sn")]
        [String] $SettingsName,
        # The additional arguments to pass to the Eden script.
        [Alias("aa")]
        [HashTable] $AdditionalArguments
    )

    Invoke-EdenCommandStandardFlow `
        -LocalCommandPath "Operations/Get-ServiceStatus" `
        -SettingsName $SettingsName `
        -CommandGroup "Operations" `
        -Message "Getting service status." `
        -AdditionalArguments $AdditionalArguments
}
New-Alias `
    -Name e-os `
    -Value Get-EdenServiceStatus `
    -Force