Public/Running/Install-EdenServiceRunTools.ps1

function Install-EdenServiceRunTools {
    <#
        .SYNOPSIS
        Installing the run time tools.

        .DESCRIPTION
        Installing the run time tools. by calling the local './Eden/Running/Install-ServiceRunTools.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 "Running/Install-ServiceRunTools" `
        -SettingsName $SettingsName `
        -CommandGroup "Running" `
        -Message "Installing the run time tools." `
        -AdditionalArguments $AdditionalArguments
}
New-Alias `
    -Name e-rti `
    -Value Install-EdenServiceRunTools `
    -Force