Public/Deploying/Install-EdenServiceDeploymentTools.ps1

function Install-EdenServiceDeploymentTools {
    <#
        .SYNOPSIS
        Installing deployment tools.

        .DESCRIPTION
        Installing deployment tools. by calling the local './Eden/Deploying/Install-ServiceDeploymentTools.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 "Deploying/Install-ServiceDeploymentTools" `
        -SettingsName $SettingsName `
        -CommandGroup "Deploying" `
        -Message "Installing deployment tools." `
        -AdditionalArguments $AdditionalArguments
}
New-Alias `
    -Name e-dpti `
    -Value Install-EdenServiceDeploymentTools `
    -Force