Public/Work/Show-EdenServiceFeatureList.ps1
function Show-EdenServiceFeatureList { <# .SYNOPSIS Showing product features. .DESCRIPTION Showing product features. by calling the local './Eden/Work/Show-ServiceFeatureList.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/Show-ServiceFeatureList" ` -SettingsName $SettingsName ` -CommandGroup "Work" ` -Message "Showing product features." ` -AdditionalArguments $AdditionalArguments } New-Alias ` -Name e-wfl ` -Value Show-EdenServiceFeatureList ` -Force |