Public/Support/Show-EdenServiceIssueSubmissionForm.ps1
function Show-EdenServiceIssueSubmissionForm { [CmdletBinding()] param() $location = Get-Location try { $settings = Get-EdenSettings $loggingPrefix = "$($settings.SolutionName) $($settings.ServiceName) Issues" Write-EdenInfo "Showing the product issues submission form for the service." $loggingPrefix Invoke-EdenLocalCommand "Show-ServiceIssueSubmission" $settings $loggingPrefix } catch { Write-EdenError "Error showing the service issue submission form. Message: '$($_.Exception.Message)'" $loggingPrefix } finally { Set-Location $location } } New-Alias ` -Name e-isf ` -Value Show-EdenServiceIssueSubmissionForm ` -Force |