Public/Work/Install-EdenServiceWorkTools.ps1

function Install-EdenServiceWorkTools {
    <#
        .SYNOPSIS
        Installing work tools.

        .DESCRIPTION
        Installing work tools. by calling the local './Eden/Work/Install-ServiceWorkTools.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 "Work/Install-ServiceWorkTools" `
        -SettingsName $SettingsName `
        -CommandGroup "Work" `
        -Message "Installing work tools." `
        -AdditionalArguments $AdditionalArguments
}
New-Alias `
    -Name e-wti `
    -Value Install-EdenServiceWorkTools `
    -Force