msiexec

The Windows Installer Service could not be accessed. This can occur if the Windows Installer is not correctly installed

好久不见. 提交于 2020-01-24 19:31:06
问题 I have an issue when I tried to install an EXE file on windows server 2012 R2. When I tried to execute the EXE or MSI file I got below error, "The Windows Installer Service could not be accessed. This can occur if the Windows Installer is not correctly installed. Contact your support personnel for assistance." I tried the following methods to fix the issue but nothing worked. Method 1: I tried to unregister and re-register msiexec file %windir%\system32\msiexec.exe /unregister %windir%

The Windows Installer Service could not be accessed. This can occur if the Windows Installer is not correctly installed

旧城冷巷雨未停 提交于 2020-01-24 19:31:04
问题 I have an issue when I tried to install an EXE file on windows server 2012 R2. When I tried to execute the EXE or MSI file I got below error, "The Windows Installer Service could not be accessed. This can occur if the Windows Installer is not correctly installed. Contact your support personnel for assistance." I tried the following methods to fix the issue but nothing worked. Method 1: I tried to unregister and re-register msiexec file %windir%\system32\msiexec.exe /unregister %windir%

Avoid confirmation box in MsiExec uninstall

三世轮回 提交于 2020-01-23 06:16:37
问题 I need to run the msiexec uninstall from my code: MsiExec.exe /I{A52EEC0E-D0B7-4345-A0FF-574804C7B78A} But this is asking for a confirmation (Yes/No). How can I avoid that? 回答1: msiexec /quiet will avoid the userinteraction 回答2: You can use the /passive switch to do this. MsiExec.exe /I{A52EEC0E-D0B7-4345-A0FF-574804C7B78A} /passive If you want to completely hide the UI, use the /quiet switch instead of /passive . 回答3: Try adding the /qn flags to your command line. /q is quiet mode and n is a

How to avoid having two versions of a product installed with Windows Installer / MSI?

ぃ、小莉子 提交于 2020-01-20 08:54:25
问题 I have written and am maintaining a number of Wix installation source files which I use to build MSI files for distribution of my application. I have not explicitly programmed for any kind of upgrading, updating, reinstallation or anything of the kind -- there is a single feature that consists of a number of components with stable GUIDs and I have observed that at least a clean installation does what I expect it to. However, I (and anyone in possession of the MSI files I distribute) may

Does an universal cross-platform installer exists?

假装没事ソ 提交于 2020-01-18 05:44:09
问题 I wonder is someone tried to create either kinda open standard for cross-platform installer for an application or the installer implementation? That means you can simply download single file from the website, and it's extension recognizable by any popular operating system? We have .pkg and .dmg files for mac, .msi and plain .exe installers for windows, .deb packages for linux (in case of debian), but we haven't universal for each platform (like .uoi (Universal Open Installer), lol). One might

Trying to find the MSI product code for Java 8 Update 25 in to work with WSUS Package Publisher

半城伤御伤魂 提交于 2020-01-13 07:14:29
问题 I'm trying to create a 3rd party custom update through WSUS Package Publisher however I can't manage to get the MSI code for Java as there is no MSI installer to use MSIReader on. If anyone knows how I can find this code then it would be much appreciated. It's managing to make me look bad as a Sys Admin at work. Cheers, Glympse. 回答1: Two solutions : Install the product and search in : HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall Or to be aware that Oracle always used

Trying to find the MSI product code for Java 8 Update 25 in to work with WSUS Package Publisher

…衆ロ難τιáo~ 提交于 2020-01-13 07:14:09
问题 I'm trying to create a 3rd party custom update through WSUS Package Publisher however I can't manage to get the MSI code for Java as there is no MSI installer to use MSIReader on. If anyone knows how I can find this code then it would be much appreciated. It's managing to make me look bad as a Sys Admin at work. Cheers, Glympse. 回答1: Two solutions : Install the product and search in : HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall Or to be aware that Oracle always used

msiexec parameters via setup.exe to create log not working

被刻印的时光 ゝ 提交于 2020-01-11 11:28:07
问题 I'm trying to get a log from my install that uses a setup.exe. I can get a log with just setup.exe /V"/l*v c:\temp\installlog.txt", but I want to pass the "x" parameter as well to get "Extra debugging information" and when I try setup.exe /V"/l*vx c:\temp\installlog.txt" I get: 1629: Invalid command line. Any idea what I'm doing wrong? I have msiexec version 5 installed. 回答1: Ancient setup.exe : I tried with an ancient version of Installshield and the setup.exe for a Basic MSI worked as

How to include inherited permissions when specifying permissions for a file installed by Wix / Windows Installer?

隐身守侯 提交于 2019-12-31 05:06:54
问题 The Wix source code that I feed to the Wix compiler to build an MSI package for my application, contains the following PermissionEx directive, part of a file component which Windows Installer should install with additional (to those that should be inherited by default) permissions: <PermissionEx Sddl="D:AR(A;;FW;;;BU)" /> As you can surmise, I intend to install the file with inherited permissions ("AR") included in its ACL and on top of that allow members of the Built-in Users group ("BU") to

How to include inherited permissions when specifying permissions for a file installed by Wix / Windows Installer?

青春壹個敷衍的年華 提交于 2019-12-31 05:06:14
问题 The Wix source code that I feed to the Wix compiler to build an MSI package for my application, contains the following PermissionEx directive, part of a file component which Windows Installer should install with additional (to those that should be inherited by default) permissions: <PermissionEx Sddl="D:AR(A;;FW;;;BU)" /> As you can surmise, I intend to install the file with inherited permissions ("AR") included in its ACL and on top of that allow members of the Built-in Users group ("BU") to