Public/Support/Show-EdenServiceSupportSubmissionForm.ps1
function Show-EdenServiceSupportSubmissionForm { <# .SYNOPSIS Showing support submission form. .DESCRIPTION Showing support submission form. by calling the local './Eden/Support/Show-ServiceSupportSubmissionForm.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 "Support/Show-ServiceSupportSubmissionForm" ` -SettingsName $SettingsName ` -CommandGroup "Support" ` -Message "Showing support submission form." ` -AdditionalArguments $AdditionalArguments } New-Alias ` -Name e-susf ` -Value Show-EdenServiceSupportSubmissionForm ` -Force |