Tagged Questions

11
votes
5answers
3k views

Use Orca to edit msi from command line?

I'm using Visual Studio 2008 and have created a setup project for my application. The application has a high-resolution icon (for Vista). There's a bug in Visual Studio, and the installer creates a ...
6
votes
4answers
3k views

How to extract data (file count) from MSI “File” Table

In our build process there is currently the potential for non-code based files (such as image files) to be added to our web project, but not included in the MSI installer built by WiX. To help ...
5
votes
5answers
7k views

Simplest solution to replace a tiny file inside an MSI?

Many of our customers have access to InstallShield, WISE or AdminStudio. These aren't a problem. I'm hoping there is some way I can provide our smaller customers without access to commercial ...
4
votes
3answers
266 views

MSI creation: Terminate application before upgrading

I'm using Microsoft Visual Studio 2010 to create a simple .MSI installer for my simple .EXE application. Trouble is, things go wrong (until a reboot) if you install an upgrade while the .EXE is still ...
3
votes
1answer
90 views

Visual Studio Setup Project MSI without Add/Remove entry

I am using a Visual Studio Setup Project for deployment. This may sound like a no-no but I have a specific requirement for the uninstaller not to register in the Add/Remove Programs. Is there ...
3
votes
2answers
130 views

Windows Installer - force users to remove via Add?remove Programs

We have an installer solution written in Visual Studio 2005 Installer; that calls a C# custom action and we have hit a known issue, regarding the fact that on an upgrade - the old install code is run ...
2
votes
1answer
42 views

How to compact a merge module?

I have a few merge modules (MSM files) from a third party. Unfortunately, I think the drones who made the MSMs just clicked through InstallShield and didn't make a nice, compact MSM. I opened the ...
2
votes
2answers
63 views

How to update assemblies in existing MSI?

We have existing MSI created using InstallShield 9.0. This MSI installs some .NET assemblies in target installation directory. We have changed some functionality of application and so a few ...
2
votes
1answer
69 views

Removing files using update installer MSP

I am in the process of attepting to build an Microsoft installer update (MSP) where I would like to have the update installer remove files from the original installation. I have succceessfully ...
2
votes
1answer
766 views

Adding Combo Box to setup using Orca

I am trying to display a combo box in a dialog during setup of a component. Currently, we have a Radio Button Group. I figured that replacing it with the combo box should be as simple as adding proper ...
1
vote
2answers
198 views

Update Installation: How to save the app.config?

I have a huge problem: I have an old application App1.0.exe. With this Application there is a file called App1.0.exe.config (the App config). Now i made the Version 2.0, with the new Version now ...
1
vote
1answer
52 views

Invalidate PushButton control until asynchronous custom action completes MSI

In my installer, I have an asynchronous dll custom action that executes before the welcome screen appears and gathers some necessary information for the installer to work. Before I had it set as ...
1
vote
1answer
237 views

Patch building with MsiMsp.exe — can target MSI differ from original MSI?

I'm building an msp patch for a product that has already been delivered. The product has a large number of components/files. I'm building the patch from the original target MSI and an upgrade MSI ...
1
vote
5answers
421 views

Where can I get the Orca tool, to edit MSI files?

Microsoft publishes a tool, Orca, that can be used to browse and edit MSI files. Where can I get this tool?
1
vote
2answers
832 views

Windows Installer custom action BEFORE any validation

I wrote a Windows Installer custom action based on the tutorial found here: http://www.codeproject.com/kb/install/msicustomaction.aspx My custom action is killing a background process of a given name ...
1
vote
3answers
3k views

DISABLEADVTSHORTCUTS=1 disables all shortcuts

We have an application to be run on StartUp that allows many installed files to be changed after installation. We are trying to turn off the self-healing mode by setting the DISABLEADVTSHORTCUTS=1 ...
1
vote
1answer
1k views

permanent registry keys - orca - msi guid

Using a .msi package, I want to create a few registry keys if they don't exist, leave them alone if they do exist, and not delete them if the program is removed. I have done this (using Orca) by ...
1
vote
1answer
429 views

Modifying Patch Creation Properties (.pcp) file programmatically?

Is there a way to script the complete process of a hotfix build using msiexec.exe and msimsp.exe with a Patch Creation Properties file? I use msiexec.exe to create network installations of the before ...
0
votes
1answer
64 views

MSI Transform - modify registry value

I have a setup project in Visual Studio 2010 that needs to be modified in the post-build event to change a registry value. I can create a MSI transform to do that, but when I run it through msitran ...
0
votes
1answer
52 views

Is it possible to programatically change an msi's database on Linux

I know you can change it using cscript.exe on Windows. Is there a Linux program providing cscript-like functionality? Or is there some other way I can change the database in Linux?
0
votes
2answers
501 views

How to change the contents of a file included in an *.msi with VBScript

Given an installer generated with a VS2010 Setup Project, I would like to swap out a .NET DLL with another one without changing the name. I am already altering the msi file according to this ...
0
votes
2answers
2k views

Extracting files from merge module

All I want is a command-line tool that can extract files from a merge module (.msm) onto disk. Said differently, I want the same "administrative install" functionality that is possible for an MSI: ...
0
votes
1answer
428 views

MSI removes required assembly on upgrade install, but replaces it on Repair

I'm experiencing some weirdness related to an MSI installation upgrade, perhaps someone out there can help me: I have two MSIs, an original and an upgrade: MSI version 1.0 Contains a .NET ...
0
votes
1answer
192 views

msi table information

At http://support.microsoft.com/kb/255905 usoft says there is a file msi.chm distributed as part of the sdk. I have sdk v7 and can't find hide nor hair of this file. What I'm really after are the ...
0
votes
1answer
114 views

Special characters and MSI

Hi I have to have password input into an msi I created using Visual studio 2008. But I notice that if a password have ‘ “ ‘ character in it. I Get a FileNotFoundException. Is there a setting in Orca ...