Skip to content

Commit

Permalink
There is no UAC for msi by default
Browse files Browse the repository at this point in the history
  • Loading branch information
marbx committed Aug 15, 2020
1 parent 3c0d502 commit c7b4e24
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions wix.d/MinionMSI/Product.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
</Condition>
<Condition Message="Installation requires 125 MB RAM. Found [PhysicalMemory] MB">Installed OR (PhysicalMemory > 125)</Condition>

<!-- ReadConfig_IMCAC must run immediately as Admin, the msi cannot elevate before deferred, so the user must be Admin -->
<Condition Message="Installation requires Administrator privileges. Please open from an elevated command prompt.">Privileged</Condition>

<Condition Message="Please rename MASTER_HOSTNAME to MASTER" >Installed OR NOT MASTER_HOSTNAME </Condition>
<Condition Message="Please rename MINION_HOSTNAME to MINION_ID" >Installed OR NOT MINION_HOSTNAME </Condition>
<Condition Message="Please rename START_MINION_SERVICE to START_MINION">Installed OR NOT START_MINION_SERVICE</Condition>
Expand Down

0 comments on commit c7b4e24

Please sign in to comment.