Questions tagged [msi]

MSI is a Windows Installer package. It contains all of the components necessary to install a particular software package along with a machine-readable description of how the package should be installed.

MSI is a Windows Installer package. It contains all of the components necessary to install a particular software package along with a machine-readable description of how the package should be installed.

Questions regarding MSI desktop motherboards usually fit better on Super User rather than Server Fault.

164 questions
59
votes
6 answers

The corporate benefits of using MSI files

What are the advantages of using .msi files over regular setup.exe files? I have the impression that deployment is easier on machines where users have few permissions, but not sure about the details. What features does msiexec.exe have that makes…
Frode Lillerud
  • 1,656
  • 3
  • 18
  • 20
47
votes
13 answers

Group Policy installation failed error 1274

I'm trying to deploy an MSI via the Group Policy in Active Directory. But these are the errors I'm getting in the System event log after logging in: The assignment of application XStandard from policy install failed. The error was : %%1274 The…
David Thomas Garcia
  • 603
  • 2
  • 8
  • 10
19
votes
6 answers

Find GUID of MSI Package

How can I find the GUID of an MSI package? I would like to script the removal of a program on a large number of desktops by using: msiexec.exe /x ProductCode Any reason why this would not work for any applications listed in "Add/Remove…
SamErde
  • 3,324
  • 3
  • 23
  • 42
16
votes
4 answers

Determine the name of a feature in an MSI to install from the command line

I am trying to install an application (SalesLogix 7.2 Admin Tools and Servers) from an MSI package, but only want to install a particular feature. How can I determine the feature name so I can try using the ADDLOCAL parameter?
Cylindric
  • 1,107
  • 5
  • 24
  • 44
14
votes
1 answer

How can I speed up MSI package install and uninstall?

When installing and uninstalling Windows Installer packages, or MSI files as they are called, the progress of the installation appears signifiantly slower than with other installation packages. Why is this the case, and what can I do to speed things…
Stein Åsmul
  • 2,566
  • 4
  • 25
  • 38
14
votes
5 answers

Retrieving public properties from an MSI file

Is there a tool or mechanism for retrieving the available public properties from a Windows MSI file? Some vendors that supply MSI files don't document these themselves, so I'm curious to see if there is a way to expose these without the source code.
Ken Barber
  • 378
  • 1
  • 2
  • 8
14
votes
8 answers

What is the best (free) tool to wrap an .exe into a MSI?

I'm looking at deploying some software via GPSI and the current version of the software is distributed as a .exe so I need to convert it to an MSI file. furthermore, why does MS still distribute some of its software (WMI Tools) as .exe
GNUix
  • 480
  • 1
  • 5
  • 13
11
votes
8 answers

Batch file to uninstall all Sun Java versions?

I'm setting up a system to keep Java in our office up to date. Everyone has all different versions of Java, many of them old and insecure, and some dating back as far as 1.4. I have a System Center Essentials server which can push out and silently…
Ricket
  • 439
  • 2
  • 7
  • 18
10
votes
4 answers

Is there anyway to get msiexec to echo to stdout instead of logging to a file

As part of a continuous delivery pipeline I'd like to install an msi on a given machine. msiexec plus psexec does this perfectly, but it seems that msiexec can only log to a file and I need it to log to stdout/stderr. Right now, to get the output…
mrmrcoleman
  • 101
  • 1
  • 4
10
votes
5 answers

How do I run a .msi installer with elevated priviledges on Windows

Normally you can right-click an executable and select "Run As" and away you go, but it doesn't seem to work for .msi files.
ninesided
  • 499
  • 2
  • 7
  • 9
9
votes
4 answers

How do I determine what the Windows Installer (msiexec) is doing?

After rolling out a new software package, I'm seeing high CPU usage on machines. One process that seems to be really active is msiexec, which really shouldn't be running. I'm watching it in process explorer and every now and then I can see it…
Boden
  • 4,948
  • 12
  • 48
  • 70
9
votes
4 answers

Roll back suspended .MSI install from command-line

We deployed a Java installer to a large number of machines, and it froze up on about half of them. Now, subsequent deployments are failing because of the following message: User 'SYSTEM' has previously initiated an install for product 'Java 7…
Kasius
  • 371
  • 1
  • 3
  • 12
8
votes
4 answers

I deployed Flash Player via a Software Installation policy. How to upgrade?

I have a Windows Server 2008 machine as my DC. Earlier this year I created a Software Installation GPO to deploy Adobe Flash Player plugin MSI. I assigned the policy to the computers, about half run Windows XP x86 and the other half Windows 7 x64.…
eleven81
  • 417
  • 6
  • 13
  • 29
8
votes
1 answer

What does /v/qn parameter do for windows silent installers?

This page says to do a silent install you pass in the parameters /s /v/qn. It mentions what /s does - silent install - but not what /v/qn does. So what does it do? Why the weird format? (on one installer I tried /v /qn (with a space) and it didn't…
Claudiu
  • 1,157
  • 5
  • 18
  • 27
8
votes
4 answers

Install .msi from script, detect when install is done

I'm trying to make an install script. I want to install an .msi file, Python, and then install other things after Python is installed. I already see how to do a command-line install. However, msiexec returns right away, even when the install is…
Claudiu
  • 1,157
  • 5
  • 18
  • 27
1
2 3
10 11