ALLUSERS parameter is ignored by Wix installer #8090
Unanswered
liangming2003
asked this question in
Questions
Replies: 2 comments
-
Beta Was this translation helpful? Give feedback.
0 replies
-
You claim to be using an MSI to lay down another MSI and install it from the InstallExecute sequence in deferred no impersonation context. That simply isn't possible due to the _MSIMutex limitation of Windows Installer. You should look at Burn, WiX's bootstrapper/bundler. It's an EXE and can cache and install MSIs like this scenario. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have very simple Wix installer, it extracts a installer and a script(install.cmd) to c:\Windows\temp and run the script.
If run the Wix installer, the INSTALL.log is like this:
Property(S): WixPerUserFolder = C:\windows\system32\config\systemprofile\AppData\Local\Apps\Remote Desktop
If run the install.cmd in command line, the INSTALL.log is like this:
Property(S): WixPerUserFolder = C:\Users\Admin\AppData\Local\Apps\Remote Desktop
It seems that ALLUSERS parameter is ignored by Wix installer. Any solution for this problem?
AppInstaller.wxs
install.cmd
Beta Was this translation helpful? Give feedback.
All reactions