Tagged Questions
The custom-action tag has no wiki summary.
33
votes
3answers
25k views
How to add a WIX custom action that happens only on uninstall (via MSI)?
I would like to modify an MSI installer (created through WIX) to delete an entire directory on uninstall.
I understand the there RemoveFile and RemoveFolder options in WIX, but these are not robust ...
23
votes
9answers
13k views
Run exe after msi installation?
Using Visual Studio 2008 to create an msi to deploy my program with a setup project. I need to know how to make the msi run the exe it just installed. A custom action? If so please explain where/how. ...
14
votes
4answers
10k views
How do I pass msiexec properties to a Wix C# custom action
I have an MSI being created with Wxs 3.0. My MSI references a C# custom action, written using the new C# Custom Action project ...
11
votes
2answers
8k views
Mark MSI so it has to be run as elevated Administrator account
I have a CustomAction as part of an MSI.
It MUST run as a domain account that is also a member of the local Administrators account.
It can't use the NoImpersonate flag to run the custom action as NT ...
7
votes
3answers
4k views
MSI Installer cannot find InstallState when using custom action with parameters
First off, yes, I know that the VS Setup Projects are evil. It's what I have to work with. I've also seen several related questions, but they either go unanswered or they don't match my situation ...
7
votes
1answer
2k 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 ...
6
votes
1answer
2k views
How do I fix 'Setup project with custom action file not found' exception?
I am trying to create a setup project for a Windows Service. I've followed the directions at http://support.microsoft.com/kb/816169 to create the setup project with no trouble.
I want to be able to ...
6
votes
2answers
6k views
C# custom action in Wix
When my application is uninstalled, the server needs to be notified so that it can free up the license key assigned to the client. This is done via a web service call.
I created a C# custom action ...
5
votes
2answers
1k views
Custom Action not working - Visual Studio Setup Project
In the past we have used Advanced Installer to build our .msi installers for a particular project. Our yearly license for Advanced Installer has expired, so to avoid the renewal cost, and because I ...
5
votes
3answers
2k views
How to execute a WiX Custom Action dll with dependencies
I want to create a CustomAction C# dll that depends on a third party .Net DLL (in this specific case, its MySql.Data.dll). I have the C# custom action dll working with the WiX fragment below. I'm ...
5
votes
3answers
750 views
How to test custom django-admin commands
I created custom django-admin commands
But, I don't know how to test it in standard django tests
4
votes
5answers
644 views
Custom Installer in .Net showing Form behind installer
[RunInstaller(true)]
public partial class Installer1 : Installer
{
public Installer1()
{
InitializeComponent();
}
public override void Install(System.Collections.IDictionary ...
4
votes
2answers
4k views
Rails 3 Form For Custom Action
I'm having trouble routing a form to a custom action in Rails 3. Here are my routes:
resources :photos do
resources :comments
collection do
get 'update_states'
end
member do
...
4
votes
2answers
709 views
set environment variable before run custom action in WIX
I have to build and msi using WIX need to set environment MY_HOME before run a command action
I have a component
<Component Id="SEMYHOME" Guid="*my guid*">
<CreateFolder ...
4
votes
3answers
914 views
32 and 64 bit assemblies in one windows installer
I have an application written in C# which depends on sqlite managed provider. The sqlite provider is platform dependent (there are two dlls for 32 and 64 bit applications with the same name). The ...
4
votes
3answers
1k views
Is it ok to schedule RemoveExistingProducts custom action before InstallValidate?
Problem
I have an MSI that creates and starts a Windows service during installation and stops and removes the service during uninstallation. This works fine when installing and uninstalling by ...
4
votes
1answer
1k views
SharePoint Custom Action on Site Settings Page
I have a Custom Action on the Site Settings page of my SharePoint site that appears in the UsersAndPermissions list. It is created using a feature, this is the elements.xml file for the feature:
...
4
votes
3answers
2k views
How do you add custom menu actions programmatically in SharePoint?
I need to add a custom menu action to a custom content type programmatically in c#. This is because I will not know the URL I need to link to beforehand. The URL to link to will be pulled from ...
4
votes
4answers
2k views
How to use enterprise library logging in a .NET custom action
I have some library code which is used from my application and is also used by a .NET custom action in a Visual Studio installer project. The library code in turn uses the Enterprise Library logging ...
3
votes
1answer
66 views
How to run my own C++ source files in the installation wizzard?
I have created a windows install deployment for my C++ application using VS2010. However my problem is that I don't know how can I squeeze in some of my own code to the installation wizard (and is it ...
3
votes
1answer
244 views
folder pemissions: Full control granted to all users
I'm working on an application which stores some files in the CommonApplicationData folder. My application has to modify these files. I managed to create a custom action to grant fullcontrol rights to ...
3
votes
1answer
246 views
Wix: Can excute a custom action before InstallValidate?
During uninstall progress, the installer displays below message:
"The setup must update files or services that cannot be updated while the system is running. If you choose to continue, a reboot will ...
3
votes
3answers
201 views
How do I cancel and rollback a custom action in VS2010 Windows Installer?
I have a custom action that adds/removes a certificate from the Trusted Root Certificates via the Windows Installer. I achieve this by using a CustomAction
It's possible that the user may not have ...
3
votes
2answers
89 views
Hide edit control when checkbox is checked in windows installer dialog
I have a dialog box with a checkbox and two edit fields beneath it. I want the edit fields to be grayed out or disabled as soon as the checkbox is checked. I know this is possible by adding an entry ...
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 ...
3
votes
2answers
417 views
Perform Custom Action Based on Mode - WIX
We have created WIX installer for our application. Problem we are facing is:
We have defined two different custom action (say ActionForInstall and ActionForUninstall) that we want to perform in ...
3
votes
1answer
2k views
Wix C# Custom Action .Net 4 Error
I am trying to use my first custom action in Wix and I am receiving error 2896: Executing action CustomActionTest failed.
I am using VS 2010, Wix 3.5, 64-bit Windows 7 Ultimate, .NET Framework 4
...
3
votes
4answers
152 views
msi Installer to run twice
I have an program that gets installed via an msi. The msi was built using a VS2008 deployment project and has a custom action to run the program once the install is complete.
Once the msi has been ...
3
votes
2answers
234 views
How can I remove .NET isolated storage setting folders during WiX uninstallation?
I would like to remove the isolated storage folders that are created by a .NET application when using My.Settings etc. The setting files are stored in a location like
...
3
votes
3answers
385 views
How to conditionally exclude features from “FeaturesDlg” in WiX 3.0 from a managed Custom Action (DTF)
I am trying to put together an installer using WiX 3.0 and I'm unsure about one thing. I would like to use the FeaturesDlg dialog to allow the users to select features to install, but I need to be ...
3
votes
2answers
1k views
WIX: Using a temporary file during install
I am writing a WIX installer and I have a following requirement:
During installation, I need to pass an absolute path to a file (lets call it A) included in my installer to a COM component, which ...
3
votes
3answers
3k views
WiX - CustomAction ExeCommand - Hide Console
We've gotten a custom action that runs command-line to work as such:
<CustomAction Id="OurAction"
FileKey="OurInstalledExe.exe"
ExeCommand="our command line args"
...
3
votes
3answers
2k views
SharePoint custom context menu in custom list appears on folders and not just files
I have created a custom list here is the List Template:
<ListTemplate Name="CustomDocumentLibrary"
DisplayName="Document Library"
Description=""
BaseType="1"
...
3
votes
5answers
974 views
Installer changes PATH variable, changes don't show up in Command Shell
I added a custom install action to my installer to add one of my installation directories to the System PATH environment variable. After I run the installer, the PATH variable reflects the changes ...
2
votes
0answers
53 views
Sharepoint Designer says: “The list of workflow actions on the server references an assembly that does not exist”
I successfully deploy my custom Action to the list of Actions available for use in my SharePoint Designer, but when opening an existing workflow, or creating a new one in the Designer, I get the ...
2
votes
1answer
33 views
custom actions triggered by only app owner can generate stories
I have created a fb app and added couple of custom actions and objects. If I login as myself and access the app ( click a button that executes a custom action ), it does generate the custom action ...
2
votes
1answer
149 views
Start a workflow from a custom button/action on a list item in SharePoint 2010 (all with Visual Studio 2010)
I'm sorry for asking a double question, but I'm messed up with finding no solution - or a missing understanding of answers.
My problem is like descrided:
I have some self constructed custom ribbons ...
2
votes
2answers
64 views
WIX downgrade prevention warning is showing at wrong time
I have a strange problem with WIX installer. It has custom action preventing application to install when newer version present:
<Upgrade Id='SOME_GUID'>
<UpgradeVersion OnlyDetect='yes' ...
2
votes
2answers
98 views
Force Installation Every Time
How do I force my Wix installer to always install an application? Currently, when I run an .msi file for the second time, the installer proceeds to go to the uninstall screen, but I want to ensure ...
2
votes
1answer
32 views
Custom Action, Unable to build custom action because the project output group does not have a key file
When I am trying to create an installation project, I get this error message when I try to build the installation class.
Unable to build custom action because the project output group does not have ...
2
votes
0answers
143 views
Enhanced Auth Dialog from Open Graph Beta not working. Still shows the old Auth Dialog
I'm trying to publish custom actions to a user's Facebook stream. I need to request the "publish_actions" permission from the user. My understanding is I can only request this permission as a Test ...
2
votes
2answers
123 views
Wix: Schedule a custom action to run after next reboot
Is it possible to schedule a custom action after a reboot? Here's my predicament.
I have a product to uninstall and reinstall but some of the files are in use by another application at the time of ...
2
votes
2answers
116 views
MSI C++ custom action with non-admin privileges
I have a Visual Studio setup with a custom action written in C++. I need to launch a process from a custom action but both Install and Commit actions are run elevated and thus my process runs elevated ...
2
votes
1answer
46 views
Windows installer does not fail when custom action returns an error
I am trying to modify a custom action of type 3137 and a .dll source (with say a target DWORD InstallFunction( MSIHANDLE hInstall )) to return some error codes in certain situation and I am expecting ...
2
votes
1answer
312 views
Add custom link to SharePoint list settings page by code
I would like to add a custom link to a SharePoint list settings page (listedit.aspx) from code, I have searched the web and stackoverflow, and cant seem to find any examples or documentation on doing ...
2
votes
1answer
58 views
Conditions within custom actions
I recently separated our company installers in to two features (one enabled and one absent), to allow the user to select both, I've used UI_Mondo GUI to allow selection.
I've managed to get our ...
2
votes
3answers
221 views
Managed(C#) custom action in WIX doesn't work (error code 1154)
I'm developing a Custom Action to install the same file into multiple folders(that are determined at runtime).
The custom action resides inside a Wix C# Custom Action Project.
It's code looks like ...
2
votes
1answer
155 views
Wix: Is there alternative way to access session details in deferred custom action?
I have a custom action and need to get below values for copying some parts from installation folder to VS2010 folder
VS2010 directory path (VS2010DEVENV property)
Installation path (INSTALLLOCATION ...
2
votes
1answer
143 views
Set message box from Message.Show() as a child of Wix installer window
In my custom actions, I've used MessageBox.Show() to show a dialog whether needed. For ex: during database installation, I'd like to show a message to user if any error. But the message box is not set ...
2
votes
1answer
121 views
Debugging VS2008 VBScript custom install task
I have an install project which has a custom action that executes a VBScript file. As it stands, this installation fails during the execution of this script with the following error:
There is a ...