Public/Support/Install-EdenServiceSupportTools.ps1
function Install-EdenServiceSupportTools { <# .SYNOPSIS Installing support tools. .DESCRIPTION Installing support tools. by calling the local './Eden/Support/Install-ServiceSupportTools.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 "Support/Install-ServiceSupportTools" ` -SettingsName $SettingsName ` -CommandGroup "Support" ` -Message "Installing support tools." ` -AdditionalArguments $AdditionalArguments } New-Alias ` -Name e-suti ` -Value Install-EdenServiceSupportTools ` -Force |