[WiX-users] Compiling Wix in CommandLine with CustomAction Code

2009-11-18 Thread Kusuma Sudheer Kumar (Tata Consultancy Services)
I developed Wix Code with embedding Custom action developed in C# As Per Requirement , Building the application in command line a. Candle.exe syntax: Candle -out objectFile sourceFile Candle -out E:\Test\MyApp.wixobj E:\Test\MyApp.wxs This generates the Wixobj b.

[WiX-users] Creation of COM+ Application With COM dll

2009-10-16 Thread Kusuma Sudheer Kumar (Tata Consultancy Services)
I am trying to perform the following for Creating the COM+ application using WIX Reference material: www.tramontana.co.hu/wix/lesson6.phphttp://www.tramontana.co.hu/wix/lesson6.php Component Id=MyCOM_dll DiskId=1 Guid=YOURGUID-242F-4B82-BDC7-588E59E9F393 File Id=MyCOM_dll Name=MyCOM.dll

Re: [WiX-users] write custom action in csharp for storing information

2009-10-06 Thread Kusuma Sudheer Kumar (Tata Consultancy Services)
Session properties are the way to store the information. I can create some properties in my Wix code and update the values like session[PROPERTY1]=j; Can you provide more info as what are you planning to perform? Thanks, Sudheer BGE Build Team (X 34482) -Original Message- From:

[WiX-users] WIX password Dialog during Uninstall Only

2009-05-28 Thread Kusuma Sudheer Kumar (Tata Consultancy Services)
Requirement: I am using the silient installtion for my MSI. During activation of the msi we pass properties to the msi including user name and password. Client requirement is that during uninstall he should be uninstalling from AR programs only. In this Msi requires the password. I am able to

[WiX-users] Registry Permissions

2009-05-19 Thread Kusuma Sudheer Kumar (Tata Consultancy Services)
Hi, My requirement is to provide Full Control to the Registry Node and its Child Nodes Ex : HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\ I was able to attack this using the util:PermissionEx .../. Thing happening is that it is providing the permissions to the EventLog for

Re: [WiX-users] Certificates and IIS

2009-05-15 Thread Kusuma Sudheer Kumar (Tata Consultancy Services)
Below is helpful. But have little understanding over here. Scenario 1: If the cert is already installed, I just need that Cert to be mapped to IIS WebSite. What all the steps I need to take? Scenario 2: If the user provides the location of the cert during runtime, can I just run the below way

Re: [WiX-users] ProgressText during Custom actions Execution

2009-02-23 Thread Kusuma Sudheer Kumar (Tata Consultancy Services)
From: Kusuma Sudheer Kumar (Tata Consultancy Services) [mailto:v-kku...@microsoft.com] Sent: Fri 20/02/2009 09:17 To: General discussion for Windows Installer XML toolset. Subject: [WiX-users] ProgressText during Custom actions Execution Hi, I am calling my Custom actions

[WiX-users] ProgressText during Custom actions Execution

2009-02-20 Thread Kusuma Sudheer Kumar (Tata Consultancy Services)
Hi, I am calling my Custom actions After InstallFinalize Event. Thing is that, I am doing various actions inside my Custom action and it takes some time to execute all of them. Rather than user waiting to see what is happening, I want to send the

Re: [WiX-users] Stuck on populating ListBox from CA

2009-01-12 Thread Kusuma Sudheer Kumar (Tata Consultancy Services)
Steve, This might help you. I have done this and it works. http://blog.torresdal.net/CommentView,guid,fe27427f-ff4f-4056-bc50-c98e23227c6d.aspx -Sudheer -Original Message- From: Steve Smith [mailto:st...@codejitsu.com] Sent: Saturday, January 10, 2009 6:41 AM

[WiX-users] Showing Features in Tree Control on Conditional

2008-12-30 Thread Kusuma Sudheer Kumar (Tata Consultancy Services)
I don't know whether this sounds crazy in WIX, but this was one of the solution we came up for our problem We are showing 4 radio buttons and on select of each radio button, and Navigating to Next Button We want to show different set of features to users in other Dialog Ex:

Re: [WiX-users] WIX - Field Validation on Custom Dialog

2008-12-29 Thread Kusuma Sudheer Kumar (Tata Consultancy Services)
So, can we do in this fashion? Let's think we need to validate some fields on the screen, Create button called - Validate and On Clicking this button, CA will validate fields and returns success by updating the Property which is mapped to Next Button enabling and disabling. That

[WiX-users] Conditional Statement for CustomAction Executions

2008-12-23 Thread Kusuma Sudheer Kumar (Tata Consultancy Services)
Hi, I have Custom action which is firing during Install/Change and Uninstall. Is there any conditional statement in C# code by which I can segregate the execution. If(someproperty = something) //Install mode

[WiX-users] Mapping Custom Actions with the features/Components

2008-12-22 Thread Kusuma Sudheer Kumar (Tata Consultancy Services)
Hi, This is specific Requirement for my installation package. I am creating a installer msi for installing the My WebBits and GAC'ing the dlls and some other activities. Including this, I want to call some specific Custom actions. I have C# code for it. Ex:

[WiX-users] WIX CustomAction: Calling Methods from .NET Class

2008-12-05 Thread Kusuma Sudheer Kumar (Tata Consultancy Services)
Hi, I am new bee to WIX Coding and has the following clarifications Problem: I have my Custom Dll [ .net Class Library] and is there any possibility to leverage that and its respective methods in WIX. Performed: I created some ClassLibrary Which write some