Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
1k views

ASP.NET MVC Pass object from Custom Action Filter to Action

If I create an object in a Custom Action Filter in ASP.NET MVC in public override void OnActionExecuting(ActionExecutingContext filterContext) { DetachedCriteria criteria = ...
3
votes
2answers
553 views

Wix: Write File in Custom Action

i got a problem with wix and managed custom actions: in my custom action i create a file and save it in the INSTALLLOCATION path. It seems like it works, no exception is thrown. But after the ...
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
1answer
1k views

WiX - Passing parameters to a CustomAction (DLL)

I've got a DLL from an old WiSE installer that i'm trying to get working in WiX, so i'm pretty sure the DLL works with MSI-based installers. Here is my definition: <Binary Id="SetupDLL" ...
2
votes
1answer
384 views

SharePoint - CustomAction isn't showing on toolbar for a content type

I've created a feature with a content type: <ContentType ID="0x01007C963A8770A24bbfBDBCE157B96EE769" Name="Send" Group="Demo" Version="1"> </ContentType> I want to create ...
1
vote
1answer
101 views

InstallShield LE : RegOpenKeyEx fails in custom action

I need to execute some additional configuration after installation so I have created a smoll PostInstall.exe console application which should do the work. I need to get winamp install path from the ...
1
vote
0answers
44 views

WIX - Spawning a Dialog dialog during installation

Is it possible to spawn a dialog after a custom action that is scheduled in InstallExecuteSequence??? I have a two custom Action, after the first one, I need to spawn a dialog. When the user click OK ...
1
vote
1answer
350 views

WIX extracting Binary table data to TempFolder

During install I need to extract a text file from Binary data and place it in TempFolder so it can be used by a dll I don't control. It needs to be passed the file-name of the text for processing. I ...
1
vote
2answers
471 views

Wix: Set semicolon to CustomActionData

I have a problem with setting data that contains semicolons to CustomActionData property. By default CustomActionData class uses semicolon as DataSeparator and it breake my data, when it contains ...
1
vote
1answer
135 views

wix - no rows with my CA in InstallExecuteSequence Table

i have code like this <Fragment> <CustomAction Id="IsPrivileged" Error="You should be an adminuser" /> <InstallExecuteSequence> ...
1
vote
1answer
460 views

Custom Action and Group

I'm creating a link and put it in the site action container. The link should only be visible to members in the HR groups. Here is the declaration in my Elements.xml file <Elements ...
1
vote
1answer
133 views

msi file not running when called through wix customaction

I have the following in my wix project but the msi file (which is valid and runs from the command line) will not run either with or without the silent parameter <InstallExecuteSequence > ...
1
vote
2answers
422 views

VisualStudio Setup Project: Deploy a Project with Database through a CustomAction BadImageFormatException

I have a Solution with a Project which uses a MSSQL Database and generated for this a VisualStudio setup projekt. Then i have made another project with an installer class that should deploy my ...
1
vote
0answers
75 views

How to show CustomAction on a certain Custom List

How can I show a CustomAction for a List of "Custom List" type and it's Title is "Demo List"? Is this possible? if not is there any workaround to achieve what I want?
1
vote
1answer
222 views

Wix: Passing an object from one CustomAction method to another - Best Practice?

I am interested in the best practice of the following scenario. I have a CustomAction method that hits a web service and returns some information that I use to populate a combo box. Later in the ...
1
vote
2answers
866 views

InstallShield-2009: Basic MSI: How to run a custom action after user cancels uninstall (rollback)

InstallShield-2009 Premier: Basic msi project: What to do when I want a custom action to run when user clicks cancel button during uninstall? I put a custom action (a C# exe which would just show a ...
1
vote
1answer
614 views

How do I create an empty custom table in Wix?

How do I get Wix to include a CustomTable with no rows in the final MSI? If I simply define the table like this <CustomTable Id="MyTable"> <Column Id="Id" Type="string" ...
0
votes
0answers
169 views

wix - two managed custom actions type 1 in single dll

One dll contains two C# custom actions. Here is code how i calling them: <Binary Id="InstancesDLL" SourceFile="C:\New\Instances.CA.dll"/> <CustomAction Id="SendStrToCA" Property="Exec" ...
0
votes
0answers
98 views

how to execute web service method from custom action on multiple documents

I've a custom SharePoint web service and can invoke its method from ECB in SharePoint (document menu) using javascript in content editor web part and web service behavior technology (webservice.htc) ...
0
votes
0answers
126 views

MOSS CustomAction is escaping the ' character in JavaScript for UrlAction

I am trying to implement a Custom Action for my document library and get it to trigger a JavaScript function to redirect me to a custom form. I need to pass the {SiteUrl} token through to the ...
0
votes
1answer
311 views

WIX Installer Custom Actions (CA) which require an external library can't find it

I have a WIX installer that calls two C# custom actions. The first runs a routine to load the WIX session with default values into GUI prompts for application settings. The GUI then prompts the user ...
0
votes
2answers
791 views

WIX installer with Custom Actions: “built by a runtime newer than the currently loaded runtime and cannot be loaded.”

I have a WIX installer that executes Custom Actions over the course of install. When I run the WIX installer, and it encounters its first Custom Action, the installer fails out, and I receive an error ...
0
votes
2answers
36 views

MapPath or equivalent to use in an installation application

I need to check a .config file in an installation application (iis custom action in a WIX project). The user picks a website and enters a virtual directory name. I can't do a http read to retrieve the ...
0
votes
1answer
88 views

GetDirectories call in msi CustomAction throws security exception ONLY when All Users

I have a custom action that I'm using to deploy some files that sit next to the msi in the handoff package. My custom action is passed the msi path via the OriginalDatabase parameter and I'm checking ...
0
votes
1answer
231 views

WiX CustomAction Third Party Library Dependency

I implemented Custom Action DLL that needs to run when the product is being unistalled or reinstalled. Custom Action DLL (C++) references third party library which is a COM object that needs to be ...
0
votes
1answer
169 views

Detecting if the user selected “All Users” or “Just Me” in a Custom Action

I'm trying to detect if the user has selected the "All Users" or the "Just Me" radio during the install of my program. I have a custom action setup that overrides several methods (OnCommit, ...
-1
votes
1answer
75 views

Break point not hit in custom installer action using Framework 4.0

I spent hours trying to debug a custom installer dll built using .net framework 4.0, but no matter what I tried the break point would not be hit. I had a similar project in 3.5 and there were not ...