[WiX-users] installlocation

2010-06-15 Thread subramanyeswari
work on this? Regards, Subramanyeswari -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/installlocation-tp5181106p5181106.html Sent from the wix-users mailing list archive at Nabble.com

[WiX-users] shortcuts

2010-06-14 Thread subramanyeswari
Hi, I have 6 shortcuts for 6 files and they are in the order 1,2,3,4,5,6. But on installing 3 is coming after 1st instead of 2. Should we specify the order? Please do let me know what's going wrong here? Regards, Subramanyeswari -- View this message in context: http://windows-installe

Re: [WiX-users] uninstalling files

2010-06-09 Thread subramanyeswari
I need that as i do not want it to be seen in the programs & features. Regards, Subramanyeswari -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/uninstalling-files-tp5157670p5157941.html Sent from the wix-users mailing list archive at Nabble

Re: [WiX-users] uninstalling files

2010-06-09 Thread subramanyeswari
y wxs code. Where i have to change? Regards, Subramanyeswari --

Re: [WiX-users] uninstalling files

2010-06-09 Thread subramanyeswari
seems to be i did not explain it. After installing, when i try for modify and unselecting some of the features, i want the corresponding files should get uninstalled. How to do that? Regards, Subramanyeswari -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2

[WiX-users] uninstalling files

2010-06-09 Thread subramanyeswari
, Subramanyeswari -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/uninstalling-files-tp5157670p5157670.html Sent from the wix-users mailing list archive at Nabble.com. -- ThinkGeek and

Re: [WiX-users] prroblem with short cuts

2010-06-01 Thread subramanyeswari
thank you. it worked. -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/prroblem-with-short-cuts-tp5121815p5127247.html Sent from the wix-users mailing list archive at Nabble.com. --

[WiX-users] prroblem with short cuts

2010-05-31 Thread subramanyeswari
, Subramanyeswari -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/prroblem-with-short-cuts-tp5121815p5121815.html Sent from the wix-users mailing list archive at Nabble.com

Re: [WiX-users] make my vbscript to run --

2010-05-19 Thread subramanyeswari
I resolved my problem. The problem is control is not coming back to Install. I added the following statement to the dll and it worked // // Let the installer know we completed successfully // return ERROR_SUCCESS; Thanks everyone. Regards, Subramanyeswari -- View this message

Re: [WiX-users] make my vbscript to run --

2010-05-19 Thread subramanyeswari
Hi Blair, I am looking for a particular feature is installed in the system. If it is installed, then making flag to true and using that variable to set one property in wxs. I am retuning that variable from my dll based on the feature installtion and i amusing that in my wxs as below.

Re: [WiX-users] make my vbscript to run --

2010-05-18 Thread subramanyeswari
-84BE-4C15-93D1-D6C30322ABBF}", "Galaxy_Repository"); if (nFeatureState = INSTALLSTATE_LOCAL) { nGalaxy = true; } return true; } } what's wrong with this dll code? Regards, Su

Re: [WiX-users] make my vbscript to run

2010-05-18 Thread subramanyeswari
http://n2.nabble.com/file/n5070767/app.log app.log attached is the log. and here is the snapshot === Verbose logging started: 5/18/2010 6:49:27 Build type: SHIP UNICODE 3.01.4000.4042 Calling process: C:\WINDOWS\system32\msiexec.exe === MSI (c) (34:44) [06:49:27:770]: Resetting cached polic

Re: [WiX-users] make my vbscriot to run

2010-05-18 Thread subramanyeswari
Hi, I have discarded the vbs and wrote a small dll and am using it. This time i got Return value: 1603. when i looked in the net it says permission problem? what kind of permission is it and how to overcome that?. Thanks, Subramanyeswari -- View this message in context: http://windows

Re: [WiX-users] make my vbscriot to run

2010-05-18 Thread subramanyeswari
script error , : Line , Column , Action ended 4:14:50: ShowReadMe. Return value 3. Action ended 4:14:50: INSTALL. Return value 3. What should i do now? Regards, Subramanyeswari -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/make-my-vbscriot-to-run

[WiX-users] make my vbscriot to run

2010-05-18 Thread subramanyeswari
ssion.Property("Installed") = "1" end if and here is my wxs code But i am getting the following error: A script reuired for this install to complete could not be run. contact your personnel support or package vendor. How to make my vbscript work? Thanks in advance, Subra

Re: [WiX-users] Need Help in Removing a RegValue during Uninstallation.

2010-05-17 Thread subramanyeswari
There is one option while creating a key like Action="createKeyAndRemoveKeyOnUninstall". This will delete the registry entry while uninstalling. Regards, Subramanyeswari -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Need-Help-in-

[WiX-users] feature

2010-05-17 Thread subramanyeswari
there? Thanks in advance, Subramanyeswari -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/feature-tp5064420p5064420.html Sent from the wix-users mailing list archive at Nabble.com

Re: [WiX-users] Writing INSTALLLOCATION to registry fails!

2010-05-03 Thread subramanyeswari
May be this helps. http://blogs.technet.com/alexshev/archive/2008/03/29/from-msi-to-wix-part-14-installable-items-registry-keys-and-values.aspx I am not sure. Regards, Subramanyeswari -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Writing

Re: [WiX-users] shortcut element

2010-05-03 Thread subramanyeswari
thanks. I have added non-advertised shortcut in my code. here is the code here i am getting two ice errors(43 and 57). I suppressed them. is it because of that. How do i get ? icon as it is a chm file? On the installtion the icon is not shorwing up with a question mark? instead a blank i

[WiX-users] shortcut element

2010-05-01 Thread subramanyeswari
Hi, Can anyone give me good link for shortcut menu as i have to add a shortcut for a item in the program menu. Thanks in advance, Subramanyeswari -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/shortcut-element-tp4990196p4990196.html Sent from

Re: [WiX-users] attributes column in feature table

2010-04-22 Thread subramanyeswari
thanks Rob it worked. Thanks for the links. -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/attributes-column-in-feature-table-tp4912080p4941806.html Sent from the wix-users mailing list archive at Nabble.com. -

Re: [WiX-users] attributes column in feature table

2010-04-22 Thread subramanyeswari
Hi Rob, It worked but i don't want message to be popped up on Modify/Repair options. In such cases with what condition should i add to Remove="ALL" ?. Also is there any link which gives the table so that i can refer to? Regards, Subramanyeswari -- View this message in

Re: [WiX-users] attributes column in feature table

2010-04-16 Thread subramanyeswari
ran setup.exe and installed the product. And afterwards if i try to install by invoking msi, it is not displaying the message. What else do i need to put in the condition? Regards, Subramanyeswari -- View this message in context: http://n2.nabble.com/attributes-column-in-feature-table

Re: [WiX-users] attributes column in feature table

2010-04-16 Thread subramanyeswari
Thanks Rob. Regards, Subramanyeswari -- View this message in context: http://n2.nabble.com/attributes-column-in-feature-table-tp4912080p4912423.html Sent from the wix-users mailing list archive at Nabble.com

[WiX-users] attributes column in feature table

2010-04-16 Thread subramanyeswari
also it is throwing the message. How to correct this? Regards, Subramanyeswari -- View this message in context: http://n2.nabble.com/attributes-column-in-feature-table-tp4912080p4912080.html Sent from the wix-users mailing list a

Re: [WiX-users] conditional installation if application path found

2010-04-09 Thread subramanyeswari
. Please help me. Regards, Subramanyeswari -- View this message in context: http://n2.nabble.com/conditional-installation-if-application-path-found-tp4872360p4876415.html Sent from the wix-users mailing list archive at Nabble.com

Re: [WiX-users] conditional installation if application path found

2010-04-09 Thread subramanyeswari
s wix file? Regards, Subramanyeswari -- View this message in context: http://n2.nabble.com/conditional-installation-if-application-path-found-tp4872360p4876044.html Sent from the wix-users mailing list archive at

Re: [WiX-users] conditional installation if application path found

2010-04-08 Thread subramanyeswari
thank you -- View this message in context: http://n2.nabble.com/conditional-installation-if-application-path-found-tp4872360p4875451.html Sent from the wix-users mailing list archive at Nabble.com. -- Download IntelĀ® Pa

[WiX-users] conditional installation if application path found

2010-04-08 Thread subramanyeswari
message is another application is not found. Please help me. Regards, Subramanyeswari -- View this message in context: http://n2.nabble.com/conditional-installation-if-application-path-found-tp4872360p4872360.html Sent from the wix-users mailing list archive at

Re: [WiX-users] how to use custom dlg

2010-03-19 Thread subramanyeswari
thanks for you reply. let me check. Regards, Subramanyeswari -- View this message in context: http://n2.nabble.com/how-to-use-custom-dlg-tp4761972p4762567.html Sent from the wix-users mailing list archive at Nabble.com

Re: [WiX-users] how to use custom dlg

2010-03-19 Thread subramanyeswari
also built. But i did not my remove dlg on uninstall. as the condiiton that i specified Installed AND NOT REINSTALL is correct? Regards, Subramanyeswari -- View this message in context: http://n2.nabble.com/how-to-use-custom-dlg-tp4761972p4762314.html Sent from the wix-users mailing list archive

Re: [WiX-users] how to use custom dlg

2010-03-19 Thread subramanyeswari
I modified code like this. 1 Installed and i have verifyremovedlg.wxs in the current path. How to link these two files? Regards -- View this message in context: http://n2.nabble.com/how-to-use-custom-dlg-tp4761972p4761995.html Sent from the wix-users mailing list archive

[WiX-users] how to use custom dlg

2010-03-19 Thread subramanyeswari
Hi , I am using verifyremovedlg as i want dialog box on uninstall. the below is the code snippet. / but on light i am getting unresolved reference for Verifyremovedlg. I know for sure i am doing wrong but where? Thanks&Regards, Subramanyeswari -- View this message in con

Re: [WiX-users] customising dialogs

2010-03-18 Thread subramanyeswari
thanks. It worked. Regards, Subramanyeswari -- View this message in context: http://n2.nabble.com/customising-dialogs-tp4749910p4755860.html Sent from the wix-users mailing list archive at Nabble.com. -- Download

[WiX-users] suppressing custom dialogs

2010-03-17 Thread subramanyeswari
Hi, I want to suuppress licenseagreement dialog and the dialog where it will allow the change in the install path as mine is a simple installer. How to do that? Thanks, Subramanyeswari -- View this message in context: http://n2.nabble.com/suppressing-custom-dialogs-tp4750044p4750044.html