0
votes
1answer
85 views

Running Custom Actions On Uninstallation of Patch

I have a .msi that performs custom actions during installation and uninstallation. Based on the msi, I created the patch that is not uninstallable unless you uninstall the patched application. The ...
0
votes
1answer
65 views

Remove prerequisites validation from Windows Installer setup project uninstallation

We are using Setup Project with windows C# and are using launch conditions to validate some prerequisites while installation. But it occurs in UNINSTALL time also. Can any body suggests, how to remove ...
2
votes
1answer
237 views

.net Installer, Custom Action, stop and uninstall windows service

I'm facing an issue in my .net installer application which will install three windows application together. In these three apps, one is a Windows Service. So, my installer project has three primary ...
0
votes
0answers
195 views

Error 1001: An exception occured while uninstalling

I just wrote my first installing package to my C# application. In my installer I overwrote the Uninstall function and added it as a custom action in the uninstall section. When running the .msi file, ...
0
votes
0answers
39 views

Why is .InstallState remaining after uninstall when there is a different version of the program installed?

When I uninstall my application, xxx.InstallState remains in the folder of my application. I do have custom action set to xxx.dll (install/commit/rollback/uinstall). After some searching, I found ...
0
votes
1answer
108 views

The given key was not present in the dictionary while uninstall wix-msi package

I have created wix msi installer project. In this project I am using custom action methods and I pass the parameters to custom action method like <Property Id="DUMMYPROPERTY" ...
0
votes
1answer
168 views

'wix execute batch before uninstall with administrator

My WiX XML file installs app that contains windows-service named OLOLO_SERVICE (for example). I want to stop this service when installing/reinstalling my app. I use CustomAction with ExeCommand='sc ...
0
votes
1answer
2k views

Installshield execute uninstall custom action

How do I execute a Custom Action when performing an uninstall? The Custom Action is within a Basic MSI project and I am using Install Shield 2010 Premier. I have tried setting the Install UI Sequence ...
2
votes
1answer
644 views

Uninstall multiple products using Custom Action

I am developing WIX based instller for our product which is having a base product and many plug-ins. Base and plug-in will be shipped as separate MSIs. Plug-ins can be installed only when base is ...
1
vote
2answers
790 views

Error Custom Action in Uninstalling

I have created a Custom Action named UninstallDokan,which Dokan is driver for my software.I encounter the errorwhen I uninstall my program: Error 1721: There is a problem with this Windows Installer ...
0
votes
2answers
386 views

uninstall custom actions

After which custom action should my C# custom actions execute? And what condition should I use so my custom action could run only on uninstall?
0
votes
1answer
696 views

Can't run a managed custom action on uninstall

I have a custom action which should be run on uninstall. But for unknown reason the msiexec says "There is a problem with this Windows Installer package. A DLL required for this install to complete ...
1
vote
1answer
610 views

Uninstalling a previous component before installing a new one using VS 2005 Setup Project

I have a Custom Action that should execute during the Install portion of an .msi setup. I have a previous version that was installed using InstallShield (which was overkill) and wanted to move to the ...
1
vote
2answers
664 views

.NET Deployment project: Custom Action that cancels uninstaller

I have a .NET deployment project. I would like to add a custom uninstall action that checks certain conditions and optionally cancels the uninstallation. Is that possible? As far as I figured out, ...
9
votes
1answer
3k views

Custom action on uninstall (clickonce) - in .NET

For a .NET application installed using ClickOnce, is there any way to run a custom action during the uninstall process. Specifically, I need to delete a few app related files (which I created on ...