Public/Coding/Show-EdenServiceCodingTools.ps1
function Show-EdenServiceCodingTools { <# .SYNOPSIS Showing coding tools. .DESCRIPTION Showing coding tools. by calling the local './Eden/Coding/Show-ServiceCodingTools.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 "Coding/Show-ServiceCodingTools" ` -SettingsName $SettingsName ` -CommandGroup "Coding" ` -Message "Showing coding tools." ` -AdditionalArguments $AdditionalArguments } New-Alias ` -Name e-cscts ` -Value Show-EdenServiceCodingTools ` -Force |