Public/Documentation/Install-EdenServiceDocTools.ps1
function Install-EdenServiceDocTools { <# .SYNOPSIS Installing documentation tools. .DESCRIPTION Installing documentation tools. by calling the local './Eden/Documentation/Install-ServiceDocTools.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/Install-ServiceDocTools" ` -SettingsName $SettingsName ` -CommandGroup "Documentation" ` -Message "Installing documentation tools." ` -AdditionalArguments $AdditionalArguments } New-Alias ` -Name e-docti ` -Value Install-EdenServiceDocTools ` -Force |