Public/Documentation/Show-EdenServiceDocsBots.ps1
function Show-EdenServiceDocsBots { <# .SYNOPSIS Showing service bot docs. .DESCRIPTION Showing service bot docs. by calling the local './Eden/Documentation/Show-ServiceDocsBots.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 "Documentation/Show-ServiceDocsBots" ` -SettingsName $SettingsName ` -CommandGroup "Documentation" ` -Message "Showing service bot docs." ` -AdditionalArguments $AdditionalArguments } New-Alias ` -Name e-docsb ` -Value Show-EdenServiceDocsBots ` -Force |