Public/Coding/Install-EdenServiceCodingTools.ps1

function Install-EdenServiceCodingTools {
    <#
        .SYNOPSIS
        Installing coding tools.

        .DESCRIPTION
        Installing coding tools. by calling the local './Eden/Coding/Install-ServiceCodingTools.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 "Coding/Install-ServiceCodingTools" `
        -SettingsName $SettingsName `
        -CommandGroup "Coding" `
        -Message "Installing coding tools." `
        -AdditionalArguments $AdditionalArguments
}
New-Alias `
    -Name e-cscti `
    -Value Install-EdenServiceCodingTools `
    -Force