SDA-3855 (Remove UAC warning message for current user install) (#1495)

* SDA-3855 - Show UAC warning only for all user install
This commit is contained in:
Kiran Niranjan 2022-09-15 17:10:21 +05:30 committed by GitHub
parent 6349222335
commit 19e001aa42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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();