Public/Running/Show-EdenLocalService.ps1
function Show-EdenLocalService { <# .SYNOPSIS Showing the local service. .DESCRIPTION Showing the local service. by calling the local './Eden/Running/Show-LocalService.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 "Running/Show-LocalService" ` -SettingsName $SettingsName ` -CommandGroup "Running" ` -Message "Showing the local service." ` -AdditionalArguments $AdditionalArguments } New-Alias ` -Name e-rshow ` -Value Show-EdenLocalService ` -Force |