Public/Support/Show-EdenServiceSupportList.ps1
function Show-EdenServiceSupportList { <# .SYNOPSIS Showing support list. .DESCRIPTION Showing support list. by calling the local './Eden/Support/Show-ServiceSupportList.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/Show-ServiceSupportList" ` -SettingsName $SettingsName ` -CommandGroup "Support" ` -Message "Showing support list." ` -AdditionalArguments $AdditionalArguments } New-Alias ` -Name e-sul ` -Value Show-EdenServiceSupportList ` -Force |