[WiX-users] Changing INSTALLDIR

2008-03-24 Thread Sneha Gharpure
Hi, The scenario is that the installation path has to be decided dynamically. Our application is deployed under IIS. There are two virtual directories deployed under the website. There is a dialog that allows user to select a website under which the application is deployed. So, Home Directory of

Re: [WiX-users] IIS web site dialog

2008-03-12 Thread Sneha Gharpure
going to > have trouble connecting to IIS for the site list in the UI sequence of > your > msi and the direction you are attempting to go in right now will probably > not work. > > Dana > > On Wed, Mar 12, 2008 at 8:26 AM, Sneha Gharpure < > [EMAIL PROTECTED]> w

Re: [WiX-users] IIS web site dialog

2008-03-12 Thread Sneha Gharpure
Hi, Can you please elaborate on this? As in how a list type box can be shown which will list all the websites in IIS? In my scenario, the virtual directory names are fixed. I just need to select a web site under which these virtual directories will be deployed. I have a VB script that lists all

Re: [WiX-users] Localizing the Name of the file that contains License Agreement

2008-03-06 Thread Sneha Gharpure
Ok, thanks :) I think that would help -Sneha Rob Hamflett wrote: > > Yeah. I just use a response file because I have a fair few preprocessor > defines. You can certainly > just list them individually on the command line. > > Rob > > Sneha Gharpure wrote: >

Re: [WiX-users] Localizing the Name of the file that contains License Agreement

2008-03-06 Thread Sneha Gharpure
ers of @English.txt > and @Japanese.txt respectively. You might be able to get away with the > same trick. Presumably you > have different command lines so you can specify the correct .loc file? > > Rob > > Sneha Gharpure wrote: >> Hi, >> >> The

[WiX-users] Localizing the Name of the file that contains License Agreement

2008-03-06 Thread Sneha Gharpure
Hi, The scenario is that the name of the license agreement file is to be localized. The source file for the license agreement is specified as follows. This gives an error error LGHT0100 : File of type 'File' with name '$(loc.LicenseFile)' could not be found. Is there any way to localiz

[WiX-users] Unable to log through DLL using MsiProcessMessage

2008-03-05 Thread Sneha Gharpure
Hi, I have a custom action DLL. This DLL has some WinAPI calls and if any error comes I want to log it to msi logs. Following is the sample code I am using. rc = MsiEnableLog(INSTALLLOGMODE_VERBOSE,L"C:\\log.txt",INSTALLLOGATTRIBUTES_APPEND); if(rc != ERROR_SUCCESS ) ::MessageBox(NULL, L"Ms

[WiX-users] Upgrade Issue

2008-02-27 Thread Sneha Gharpure
Hi, I am trying to implement upgrade in the installer. The application for which the installer is built is a web based application. This requires creating application pools, virtual directories in the IIS. Following is the code that I added for upgrades So, UPGRADE_FROM_CURREN

Re: [WiX-users] Service is not starting on Windows Vista

2008-02-12 Thread Sneha Gharpure
Hi, Thanks for the reply. I was just worried if is it something related to impersonate privileges? The logs seem to show some errors related to Impersonate privilege. Regards, Sneha Sneha Gharpure wrote: > > Hi, > > I have a service installed on windows vista. The startup t

[WiX-users] Service is not starting on Windows Vista

2008-02-12 Thread Sneha Gharpure
Hi, I have a service installed on windows vista. The startup type for this service is "Automatic". The service is not starting after reboot. When i try starting the service from Service Control Manager, the error is something like "Windows could not start the service on Local Computer Error 1067:

Re: [WiX-users] Windows Service is not started/Custom Actions Fail in vista

2008-02-06 Thread Sneha Gharpure
nd try starting the service.. > > > > Sneha Gharpure wrote: >> >> Hi, >> >> The problem is that service is not starting on Vista. The service is >> being started through one of the custom actions which is an exe custom >> action. The exe depends

Re: [WiX-users] Windows Service is not started/Custom Actions Fail in vista

2008-02-05 Thread Sneha Gharpure
system until InstallFinalize at the end of the install. Vista > uses the same deployment model for these as for assemblies into the GAC. > > Phil Wilson > > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Sneha > Gharpure

[WiX-users] Windows Service is not started/Custom Actions Fail in vista

2008-02-05 Thread Sneha Gharpure
Hi, The problem is that service is not starting on Vista. The service is being started through one of the custom actions which is an exe custom action. The exe depends on some MSVC DLLs which are also deployed along with the package. Is the issue with these DLLs? Does these DLLs are not availab

[WiX-users] i,

2008-02-05 Thread Sneha Gharpure
H -- View this message in context: http://www.nabble.com/i%2C-tp15285626p15285626.html Sent from the wix-users mailing list archive at Nabble.com. - This SF.net email is sponsored by: Microsoft Defy all challenges. Microso

Re: [WiX-users] Custom Action Rollback Implementation

2008-01-18 Thread Sneha Gharpure
Sneha Gharpure wrote: > > Hi, > > Thanks for your reply. > > Creating a registry entry is just an example. > My question is, if suppose I have a custom action which is an "immediate" > custom action and if I want to add a rollback for that custom action,

Re: [WiX-users] Custom Action Rollback Implementation

2008-01-18 Thread Sneha Gharpure
ot;HKLM" Key="SOFTWARE\Application_name\version"> > Type="string" /> > > > And on uninstallation it will automatically remove it from the registry, > > > Sneha Gharpure wrote: >> >> I have a custom action writeToR

[WiX-users] Custom Action Rollback Implementation

2008-01-18 Thread Sneha Gharpure
I have a custom action writeToRegistry and after this action if the user presses cancel, the corresponding value should be deleted from the registry. Following is the sample code showing how we have implemented it. WriteToRegistry -> writes a value to a registry DeleteFromRegistry -> deletes a v

Re: [WiX-users] Creating Program Menu Directory Folder shortcut for an ASPX page

2008-01-14 Thread Sneha Gharpure
wait or click > http://localhost/xyz/Login.aspx here > > > > > > > > > Sneha Gharpure wrote: >> >> Hi, >> >> Thanks for your reply. >> >> Its created a shortcut but when i tried opening the file, the path

Re: [WiX-users] Creating Program Menu Directory Folder shortcut for an ASPX page

2008-01-14 Thread Sneha Gharpure
> Try > LongName="Login" > WorkingDirectory='dir3' Icon="Login.aspx" IconIndex="0" Show="normal" > Target="[#someFileID]" /> > > > > > > Sneha

Re: [WiX-users] Creating Program Menu Directory Folder shortcut for an ASPX page

2008-01-14 Thread Sneha Gharpure
will be of great help. Thanks in Advance, Sneha Sneha Gharpure wrote: > > Hi all, > > The requirement is to create a shortcut for an ASPX page, e.g. login.aspx > in the Program Menu Folder. > > The shortcut is getting created, but when I click on the shortcut, instead

[WiX-users] Creating Program Menu Directory Folder shortcut for an HTML page

2008-01-13 Thread Sneha Gharpure
Hi all, The requirement is to create a shortcut for an ASPX page, e.g. login.aspx in the Program Menu Folder. The shortcut is getting created, but when I click on the shortcut, instead of opening the ASPX page, it opens the folder containing the login.aspx file. Following is the code sample for

[WiX-users] How to find temporary location path in MSI

2007-12-17 Thread Sneha Gharpure
Hi, It seems that msi extracts some files at a temporary location for some time and then deletes that. My scenario is that i want to execute an exe through my custom action and this exe should be deleted after the installation is over. Is there any way to find out the temporary location? Thank