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