Tagged Questions

3
votes
1answer
89 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 ...
2
votes
1answer
118 views

How to create a nested msxml6.msi package

How to add msxml6.msi as nested package into my vs 2005 setup (Based.msi) using Orca? I already used this instructions http://support.microsoft.com/kb/306439 , but msxml6.msi installation never ...
1
vote
1answer
940 views

VS Setup Project; How to restore a registry value on uninstall?

I have a setup project in Visual Studio. As part of the regular installation, it creates/updates some keys and values in the Windows Registry. How can I make the updates reversible? you may say ...
0
votes
2answers
498 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
1answer
654 views

How to modify contents / replace a binary of an .msi file as a post-build step?

When building a Visual Studio 2010 Setup project with a CustomAction on x64 systems, Visual Studio includes the wrong version of InstallUtilLib.dll: It installs the 32bit shim, which will not work for ...
0
votes
3answers
288 views

Setup project with managed custom actions. Big heck of a headache

I'm trying to create a setup project and I can't believe how painful it could be. Non of the tools that I've tried to use, haven't satisfy me. How come? Well, let's see: First and easiest option: ...
0
votes
1answer
27 views

Is there a need to update a custom action's binary after each build?

I have created a c++ custom action for a setup-project application in VS Team System 2008. Using ORCA I implemented it and inserted the binary image of the custom action. This works okay. Does the ...