function Open-ServiceFabricDashboard { <# .SYNOPSIS Opens the Service Fabric dashboard on the local machine, or for a remote machine. .PARAMETER hostname A single server hostname from the target Service Fabric cluster. #> [CmdletBinding()] Param() $siteName = (Get-AlkamiServiceFabricServerCertificateName); $url = "http://$($siteName):19080" Start-Process $url }