Public/Running/Get-EdenLocalServiceStatus.ps1
function Get-EdenLocalServiceStatus { <# .SYNOPSIS Getting the boolean status of the local service. .DESCRIPTION Getting the boolean status of the local service. by calling the local './Eden/Running/Get-LocalServiceStatus.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/Get-LocalServiceStatus" ` -SettingsName $SettingsName ` -CommandGroup "Running" ` -Message "Getting the boolean status of the local service." ` -AdditionalArguments $AdditionalArguments } New-Alias ` -Name e-rgs ` -Value Get-EdenLocalServiceStatus ` -Force |