We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af4d285 commit 3496a88Copy full SHA for 3496a88
Installer/PasteIntoFile.wxs
@@ -32,10 +32,11 @@
32
AllowSameVersionUpgrades="no" />
33
34
<!-- After install: launch wizard -->
35
- <CustomAction Id='LaunchProgram' FileKey='mainExecutable' ExeCommand='wizard' Return='asyncNoWait' />
+ <CustomAction Id='LaunchProgram' FileKey='mainExecutable' ExeCommand='wizard' Impersonate='yes' Return='asyncNoWait' />
36
37
<InstallExecuteSequence>
38
- <Custom Action='LaunchProgram' After='InstallFinalize'>NOT Installed</Custom>
+ <!-- This action is not executed during uninstall and silent mode -->
39
+ <Custom Action='LaunchProgram' After='InstallFinalize'>(NOT Installed) AND (NOT UILevel=2)</Custom>
40
</InstallExecuteSequence>
41
42
</Product>
0 commit comments