Public/Testing/Security/Install-EdenServiceTestSecurityTools.ps1
function Install-EdenServiceTestSecurityTools { <# .SYNOPSIS Installing security testing tools. .DESCRIPTION Installing security testing tools. by calling the local './Eden/Testing/Security/Install-ServiceTestSecurityTools.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 "Testing/Security/Install-ServiceTestSecurityTools" ` -SettingsName $SettingsName ` -CommandGroup "Testing Security" ` -Message "Installing security testing tools." ` -AdditionalArguments $AdditionalArguments } New-Alias ` -Name e-tsti ` -Value Install-EdenServiceTestSecurityTools ` -Force |