Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
4k views

Run MsiExec from PowerShell and get Return Code

With BAT/CMD script I can simply use "msiexec /i /quiet /norestart" and then check %errorlevel% for the result. With VBScript, using the Wscript.Shell object Run() method, I can get the result like ...
4
votes
2answers
814 views

Install multiple instances of an MSI with dynamic instance name

Our product has an MSI installer (written in WiX) which basically copies some files into a folder c:\ourproduct and installs a windows service "ourwindowsservice". We'd like to add support for ...
3
votes
1answer
187 views

Multiple instance MSI package fails when upgrading

This is gonna take some explaining but here it goes. I need to author a multiple instance MSI which installs dynamic instances - i.e. instances defined when the user installs the package, not ...
3
votes
2answers
228 views

MSI prevent registry key repair

I created an MSI setup via Visual Studio 2008 for my application, and added a registry key to windows\run for automatic startup, but also implemented a function in my application to disable automatic ...
3
votes
2answers
778 views

MSI Install Fails because “Another version of this product is already installed”

We install an application (MSI) using MSIEXEC with the following command line option: MsiExec.exe /x{code} /qn /liwearucmopvx+ C:\Log\UnInstall.tra MsiExec.exe /iC:\Source\App.msi /qn ...
3
votes
2answers
277 views

Multiple Python Installations of the same python version on a single computer

I want to install the new Python 2.7 on my Windows XP 32bit PC. having CDO (thats OCD with initials sorted in alphabetical order) I want to install it multiple times on the same computer (to ...
2
votes
1answer
100 views

WIX MSI - PROPERTY override precedence

Any help will be much appreciated. I'm writing this WIX installer to get an MSI to install a web app on our servers. Within my app, I have this PROPERTY - "WEBDIR". I use this property later in my ...
2
votes
4answers
437 views

Creating an installer via command line / through Jenkins “Execute Batch Command”

We use Jenkins for CI. I have a project that is built in Windows, using CMake 2.8.4 and VS2010 (NMake Makefiles). Once the build is complete, we manually zip up the artefacts to give to people. I ...
2
votes
2answers
65 views

Why would you add custom tables to an MSI?

I'm just wondering what the use for this feature is, since MSIEXEC probably wouldn't even know it is there. Is there some Custom Actions code that could access them, perhaps?
2
votes
1answer
358 views

What does it mean when the MSI log file says “Note: 1: 2729”?

I ran an install like this: msiexec /i Module.msi /l*v msilog.log And in the resulting logfile, I got a bunch of message like: Note: 1: 2729 . What does it mean? Is there a rosetta-stone ...
2
votes
2answers
206 views

invoking MSIEXEC within a Process fails

I have the following piece of service code to install a group of MSI files copied to a given directory: private void InvokeInstallersIn(string path) { var di = new ...
1
vote
1answer
111 views

C# Setup Project - Faulting Application msiexec.exe, Faulting Module kernel32.dll

I have developped a (Windows Service) application in C#, .Net 3.5 and altogether with it a setup project. My installer worked perfectly fine for the first time, I could install it on my machine and ...
1
vote
0answers
43 views

msiexec - How do I specify a blank TARGETVDIR?

We recently upgraded one of our applications from .net 2.0 to .net 3.5 and we have run into an issue with the installer. Essentially the msi auto populates the Virtual Directory field when we want it ...
1
vote
1answer
39 views

Install msi with msiexec in a specific dir

Guys: I Want to Install one msi with msiexec in a specific dir .. i'm using : msiexec /i "msi path" INSTALLDIR="C:\myfolder" /qb but is not working the "INSTALLDIR" , becouse the msi is installing ...
1
vote
2answers
82 views

Msiexec: automatic rollback to previous version on installation failure

When installing a .MSI file using msiexec in silent mode, is it possible to automate it such that on installation failure it rollbacks to the previous version? Assuming that on installation an older ...
1
vote
1answer
111 views

Wix CustomAction to run only in basic mode

My wix 3.5 setup can be downloaded and run in normal installation situation. I also use the same msi for updates and call msiexec with /qb (basic quiet interface) from within the app itself. All is ...
1
vote
1answer
133 views

How to Expose Install Directory as a Public Property in Visual Studio Setup Project

My Windows Forms Application should be installed quietly using msiexec. I'd like to expose the Install Directory as a Public Property to enable the system administrator to change it using the command ...
1
vote
1answer
137 views

WIX 3.6 IIS 7 installer causing 'Site 1 has no root application defined, so the site will be ignored.' error on uninstall

I am using Wix 3.6 to install a Web application to IIS 7 and the install works correctly but when uninstalling the application either with Add/Remove Programs or with MSIExec I get the following error ...
1
vote
1answer
40 views

Upgrading Windows Service Automatically

I have an MSI which installs a windows service. I want the service to receive a message and be able to update itself. I have tried spinning off a new process which runs another assembly which in turns ...
1
vote
1answer
65 views

How do I take a command line parameter and add it to the registry using wix installer?

I have a WIX installer script and I want to be able to let the user of the resultant MSI file to be able to set the default language, product key and user information during that command line call. ...
1
vote
2answers
50 views

how to remove the Patch from console

I am applying Patch to my programm with command line: msiexec /p Patch.msp -l*v log.txt But how to remove the Patch from console? Not to remove the product at all.Only Patch. Now I am using ARP ...
1
vote
1answer
68 views

changed component guid in MSI and it's causing issues

I am working on the installer for a product (currently version 3). Between versions 1 and 2 (already released), the guid of a component was changed, but the keypath adn everything stayed the same (and ...
1
vote
1answer
390 views

Wix: Add-Remove Uninstall and msiexec /x not working accordingly :(

I’m facing this strange behavior for some of my Wix based installers. After installation, if I try to remove via Add Remove Program (Programs and Features in Win 7) using Right Click Menu and select ...
1
vote
1answer
212 views

How to write bootstrap EXE, which launch MSIEXEC.EXE and then wait for its completion

I'm trying to install my ActiveX plugin, packaged in nsi in a cab file, and encountered a problem. The log is Code Download Error: (hr = 80070005) Access is denied. ERR: Run Setup Hook: Failed ...
1
vote
1answer
73 views

WebSetup Installer not getting CustomDataAction values

I have a websetup package where I am using CustomActionData for the connection string. I have the following parameter setup in my "Primary output" node under Install and Commit for my installer: ...
1
vote
1answer
146 views

How to analyze the logfile in “msiexec.exe /i your.msi /L*v c:\logfile.txt” inorder to fix error code 2869

I have an application with version no: 1.0.1, which is an upgrade to the older version 1.0.0. When I try to install the new version 1.0.1, when my system already has the older version 1.0.0 ...
1
vote
2answers
158 views

Where can i find an msi conditions parser

I am looking for a library or utility that can parse the msi launch conditions. Basically i want to take these statements and translate them into our own langauge, but before i do that i need to parse ...
1
vote
2answers
279 views

Executing an MSI bundled with Installation

I have created a MSI which also includes the installer file for crystal report (CRRedist2008_x86.msi). I would like to execute the crystal report MSI along with the main installer. I understand, I ...
1
vote
1answer
298 views

What does the condition “VSDFXAvailable” mean? (Why does my custom .net-Setup fail?)

In visual studio 2010 I have setup a Project "Visual Studio Installer" it includes a custom action. On my development machine the installer works as intended. On two test machines (windows 7 with ...
1
vote
2answers
811 views

Visual Studio Setup project - force installation of a .DLL?

I have an update to third party .DLL that must be installed onto my clients' computers. We currently employ automated installs via MSI that are created in Visual Studio 2010 Unfortunately, the third ...
1
vote
2answers
355 views

Can I use WiX to create an MSI whose sole purpose is to uninstall the software?

I've delivered version 1.0 of my software with a WiX-generated installer, and now I want to deliver/disseminate version 1.1. If possible I would like to avoid the situation of telling people to remove ...
1
vote
0answers
146 views

Tracking status of a quiet MSI

I come from a Mac/UNIX background, but I'm tasked with creating installers for Adobe CS5 products at our organization. We allow users to download installs and install themselves because we use ...
1
vote
3answers
4k views

How to find program location in registry, if I know MSI GUID?

I have installed some MSI with GUID (0733556C-37E8-4123-A801-D3E6C5151617). The program registered in the registry: HKEY_LOCAL_MACHINE \ SOFTWARE \ Microsoft \ Windows \ CurrentVersion \ Uninstall \ ...
1
vote
2answers
410 views

How to choose processor architecture to install an MSI with Delphi

Good news: A major release is in the bag! Bad news: I just found out (2 weeks too late) that some people don't have MSXML 6 on their machines and the new installer we're rolling out requires it. ...
1
vote
2answers
383 views

Msiexec fails to run (command generated with NANT)

The following is used to generate an msiexec command with nant: > "<exec program="msiexec" > timeout="1800000" verbose="true"> > <arg line="/i ...
1
vote
2answers
1k views

How to set a check box to “unchecked” from the msiexec command line?

I have an msi (authored with WIX) that has a check box bound to a custom property (call it MY_PROPERTY). I would like to run this msi from the command line, specifying 0 (unchecked) or 1 (checked) ...
1
vote
6answers
2k views

How to suppress quotes in Powershell commands to executables

Is there any way to supress the enclosing quotation marks around each command-line argument that powershell likes to generate and then pass to external executables for command line arguments that have ...
0
votes
2answers
85 views

Powershell: run msiexec with dynamically created parameters

in my powershell script, I need to run msiexec and pass few parameters to initialize it. The problem is, that if a parameter contains space character " ", powershell doesn't execute msiexec correctly. ...
0
votes
1answer
55 views

How to repair applications using 'msiexec /f appname'

I want to execute the 'msiexec' command to repair an installed application. I.e. in the application, I will add a string value into a specified key in the registry. After old version is installed, I ...
0
votes
0answers
85 views

Extract files to same directory in Iexpress

My original installation had Setup,MSI and a folder. In MSI I have a custom action to copy the Folder content to the Programs data folder After Installation.(the folder content are huge and are build ...
0
votes
1answer
88 views

C# Verbatim doesn't seem to work with .startinfo.arguments?

I have an app with which i can select from multiple MSI's (same msi, different versions) in a directory, and i will be able to install or uninstall from this app. I pull in the list of MSI's, ...
0
votes
3answers
111 views

Create an MSI log file

I have been trying to create a log file for an issue with our installer with the following commands: msiexec /i "MxServeInstaller.msi" /l*v "log.log" msiexec /i "MxServeInstaller.msi" /l*v msiexec ...
0
votes
2answers
492 views

Windows batch file does not wait for commands to complete

I have a batch file, which exists as soon as start it (run as admin) and does not execute commands that are in it, but if I specify it at the command-line, it runs fine and executes all commands. ...
0
votes
0answers
193 views

msi doesn't remove previous version of app from list Add/Remove Programs

When i update my application from msi file with keys /qr msiexec /i "c:\Projects\AppForInstall\Setup\Debug\Setup.msi" /qr it doesn't remove previous version of my application from list of installed ...
0
votes
1answer
57 views

Non-interactive installation of an additional Python environment on a computer which already has Python installed

I'm working on a deployment tool which will build a python environment with a number of dependancies pre-installed. According to the documentation on Python's web-site I should be able to do something ...
0
votes
0answers
343 views

Microsoft Team Foundation Server 2010 Power Tools (TFPT) scripted upgrade/install?

I need to provide an automated way to bring machines up to the current version (or later, future versions) of tfpt. Also, I need the Microsoft.TeamFoundation.PowerShell cmdlets to be installed, ...
0
votes
3answers
193 views

Avoid confirmation box in MsiExec uninstall

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 shall i avoid that?
0
votes
1answer
99 views

passing properties to msiexec

Let's imagine I've passed properties with their values to msiexec that aren't defined anywhere in my msi package. Do those properties get created, or are they ignored?
0
votes
0answers
151 views

Facing problem while creating setup file in visual studio 2008

i have created a setup.exe using the setup and deployment option in visual studio 2008. the setup file is working fine atleast i can install the application as i wanted. but i am not able to solve two ...
0
votes
1answer
134 views

msiexec scripting in python

Most of this is background, skip the next 3 paragraphs for the question: I have developed a tool that calls some installers, changes registry items, and moves files around to help me test a product ...

1 2