Public/Running/Deploy-EdenLocalServiceSubscriptions.ps1
function Deploy-EdenLocalServiceSubscriptions { <# .SYNOPSIS Deploying the subscriptions for the local application. .DESCRIPTION Deploying the subscriptions for the local application. by calling the local './Eden/Running/Deploy-LocalServiceSubscriptions.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/Deploy-LocalServiceSubscriptions" ` -SettingsName $SettingsName ` -CommandGroup "Running" ` -Message "Deploying the subscriptions for the local application." ` -AdditionalArguments $AdditionalArguments } New-Alias ` -Name e-rds ` -Value Deploy-EdenLocalServiceSubscriptions ` -Force |