From 19e001aa42b85608197f475b641236571f8beb08 Mon Sep 17 00:00:00 2001 From: Kiran Niranjan Date: Thu, 15 Sep 2022 17:10:21 +0530 Subject: [PATCH] SDA-3855 (Remove UAC warning message for current user install) (#1495) * SDA-3855 - Show UAC warning only for all user install --- installer/win/WixSharpInstaller/ProgressDialog.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/installer/win/WixSharpInstaller/ProgressDialog.cs b/installer/win/WixSharpInstaller/ProgressDialog.cs index bc6c1faf..9665795a 100644 --- a/installer/win/WixSharpInstaller/ProgressDialog.cs +++ b/installer/win/WixSharpInstaller/ProgressDialog.cs @@ -38,6 +38,10 @@ namespace Symphony this.waitPrompt.Text = Runtime.Session.Property("UAC_WARNING"); this.waitPrompt.Visible = true; } + if (Runtime.Session["MSIINSTALLPERUSER"] == "1") + { + this.waitPrompt.Visible = false; + } ResetLayout();