Public/Pipeline/Invoke-EdenServicePipeline.ps1
function Invoke-EdenServicePipeline { <# .SYNOPSIS Invoking pipeline. .DESCRIPTION Invoking pipeline. by calling the local './Eden/Pipeline/Invoke-ServicePipeline.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 "Pipeline/Invoke-ServicePipeline" ` -SettingsName $SettingsName ` -CommandGroup "Pipeline" ` -Message "Invoking pipeline." ` -AdditionalArguments $AdditionalArguments } New-Alias ` -Name e-pli ` -Value Invoke-EdenServicePipeline ` -Force |