protected override async Task InitializeAsync()
        {
            await base.InitializeAsync();

            _automaticSupportService.DownloadProgressChanged += OnAutomaticSupportServiceDownloadProgressChanged;
            _automaticSupportService.SupportAppClosed        += OnAutomaticSupportClosed;

            // Note: don't await, let it run by itself
#pragma warning disable 4014
            _automaticSupportService.DownloadAndRunAsync();
#pragma warning restore 4014
        }