Public/Operations/Show-EdenServiceMonitor.ps1
function Show-EdenServiceMonitor { <# .SYNOPSIS Installing service monitoring. .DESCRIPTION Installing service monitoring. by calling the local './Eden/Operations/Show-ServiceMonitor.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 "Operations/Show-ServiceMonitor" ` -SettingsName $SettingsName ` -CommandGroup "Operations" ` -Message "Installing service monitoring." ` -AdditionalArguments $AdditionalArguments } New-Alias ` -Name e-om ` -Value Show-EdenServiceMonitor ` -Force |