mirror of
https://github.com/finos/SymphonyElectron.git
synced 2025-02-25 18:55:29 -06:00
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:
parent
6349222335
commit
19e001aa42
@ -38,6 +38,10 @@ namespace Symphony
|
|||||||
this.waitPrompt.Text = Runtime.Session.Property("UAC_WARNING");
|
this.waitPrompt.Text = Runtime.Session.Property("UAC_WARNING");
|
||||||
this.waitPrompt.Visible = true;
|
this.waitPrompt.Visible = true;
|
||||||
}
|
}
|
||||||
|
if (Runtime.Session["MSIINSTALLPERUSER"] == "1")
|
||||||
|
{
|
||||||
|
this.waitPrompt.Visible = false;
|
||||||
|
}
|
||||||
|
|
||||||
ResetLayout();
|
ResetLayout();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user