Re: [WiX-users] WIX Error during transformation

2010-03-12 Thread ricky sundrani
http://wix.sourceforge.net/manual-wix3/util_xsd_xmlfile.htm.
The xmlfile element can only have a Component element as its parent and not
a file element.



On 3/12/10, Anu Dev queryl...@yahoo.com wrote:

 Hi

 One of my friend (in cc) is having an issue while transforming the XSLT to
 a WXS file.

 XSLT transformation

 ?xml version=1.0 encoding=utf-8?
 xsl:stylesheet version=1.0 xmlns:xsl=
 http://www.w3.org/1999/XSL/Transform;
 xmlns:msxsl=urn:schemas-microsoft-com:xslt
 xmlns=http://schemas.microsoft.com/wix/2006/wi;
 xmlns:wix=http://schemas.microsoft.com/wix/2006/wi;
 xmlns:util=
 http://schemas.microsoft.com/wix/2006/wi/WixUtilExtension;
 exclude-result-prefixes=msxsl
 . . .. . . .
   xsl:template
 match=wix:fi...@source='$(var.Source)\Myfile.exe.config']
 xsl:copy
   xsl:apply-templates select=@* | node()/
   util:XmlFile Id=AppSettingsAddNode  Action=setValue
 ElementPath=/configuration/appSettings Name=add Sequence=1 /
   util:XmlFile Id=AppSettingsKeyAttribute Action=setValue
 ElementPath=/configuration/appSettings/add Name=Enabled Value=true
 Sequence=2 /
 /xsl:copy
   /xsl:template

 Commands used to generate MSI

 heat dir ..\Client\  -gg -cg Desktop -sreg -template:fragment -var
 var.ClientSource -t:Transform.xslt -out Files.wxs
 candle -dCurrentProductVersion=%1 -dClientSource=%CD% -out
 Product.wixobj ..\..\Tools\Product.wxs -ext WixUtilExtension
 candle -dCurrentProductVersion=%1 -dClientSource=%CD% -out Files.wixobj
 ..\..\Tools\Files.wxs -ext WixUtilExtension
 light -dCurrentProductVersion=%1 -dClientSource=%CD% -out Setup.msi
 Files.wixobj Product.wixobj -ext WixUtilExtension

 Contents of File.WXS generated after transformation


 ComponentId=cmpA94A66A14AF4A2E9D38E763724E06483Directory=dir51F549FBB7FB3BCAD05BDE48299F46F8Guid={1AA6E822-FBDC-421F-A48C-B36DD387379A}

 FileId=fil1DC33CD5C7EE47A2F7CFBA9F8832A414KeyPath=yesSource=$(var.ClientSource)\myfile.exe.config

 util:XmlFileId=AppSettingsAddNodeAction=setValueElementPath=/configuration/appSettingsName=addSequence=1xmlns:util=_
 http://schemas.microsoft.com/wix/2006/wi/WixUtilExtensionxmlns:wix=_
 http://schemas.microsoft.com/wix/2006/wi/
 util:XmlFileId=AppSettingsKeyAttributeAction=setValueElementPath=/configuration/appSettings/addName=
 EnabledValue=trueSequence=2xmlns:util=_
 http://schemas.microsoft.com/wix/2006/wi/WixUtilExtensionxmlns:wix=_
 http://schemas.microsoft.com/wix/2006/wi//File
 /Component


 Exception details

 error CNDL0200: T
 he File element contains an unhandled extension element
 'util:XmlFile'.  Please
 ensure that the extension for elements in the '
 http://schemas.microsoft.com/wi
 x/2006/wi/WixUtilExtension' namespace has been provided.


 We have already added a reference of WIXUtilExtension as highlighted above
 but still getting a reference error. Are we missing anything here.

 Thank you in advance
 Anweshi




 --
 Download IntelĀ® Parallel Studio Eval
 Try the new software tools for yourself. Speed compiling, find bugs
 proactively, and fine-tune applications for parallel performance.
 See why Intel Parallel Studio got high marks during beta.
 http://p.sf.net/sfu/intel-sw-dev
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users




-- 
Best Regards.

Ricky
--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Add/remove desktop icon during re-install

2010-03-12 Thread Vitaly
Good day.

I would like to archive the following behavior:
If installer is launched while the same product version already
intalled,then it does almost the same as pure install. That is:
allow user to select installation folder; allow user to select
whether to install desktop shortcut; change some texts in UI;
omit license agreement dialog;...

The problem is:
On the first (pure) installation all looks OK. For example,
if I select checkbox Install desktop shortcut the shortcut
is installed; if I unselect the checkbox the shortcut is not
installed. However, if the installer launched over installed
version of the product, the shortcut is not installed if the
shortcut was not installed previously; and the shortcut is not
removed if the shortcut was installed previously.

In the wix code on the re-install I do the following:
1. Set REINSTALL to ALL and REINSTALLMODE to amus.
2. Code for the shortcut looks like the following:
/---
Directory Id=DesktopFolder Name=Desktop
/Component
Component Id=IdComp_DesktopIcon
Guid=4518AC53-608C-4549-B17B-3EC426327E25
ConditionINSTALLDESKTOPSHORTCUT=1/Condition
RegistryKey Root=HKCU Key=Software\Firm\Product 
Action=createAndRemoveOnUninstall
  RegistryValue Type=string Value= KeyPath=yes /
/RegistryKey
Shortcut Id=IdShortcut_DesktopMainExe Name=Product
WorkingDirectory=INSTALLDIR Icon=IdIcon_Main.ico 
Target=[!IdFile_MainExe] Advertise=no /
/Component
/Directory
---/

By the way. Is this normal to use the same KeyPath for some components?
For example the same registry values for DeskTop and Programs menu
shortcuts? MSDN says: Two components cannot share the same
key path value. But compiling and verifying goes OK. And I did not
discover problems using the same keypaths.

Thanks.
Vitaly.


--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Add Local Event

2010-03-12 Thread Oleksandr Y. Nechyporenko
Hi All,

 

I try to add / remove some features depend on several conditions by WiX
directives. I use WixUI_Mondo UI. I've found that dialog VerifyReadyDlg is
always will be shown during install / change / repair.

 

So now I setup addlocal / remove events for one of its buttons.

 

Publish Dialog=VerifyReadyDlg Control=Install Event=AddLocal
Value=FeatureIMSDesktop.fr_FR![CDATA[PRODUCT_LANGUAGE = fr-FR AND
FeatureIMSDesktop = 3]]/Publish

Publish Dialog=VerifyReadyDlg Control=Install Event=AddLocal
Value=FeatureIMSDB.fr_FR![CDATA[PRODUCT_LANGUAGE = fr-FR AND
FeatureIMSDB = 3]]/Publish

Publish Dialog=VerifyReadyDlg Control=Install Event=AddLocal
Value=FeatureIMSLS.fr_FR![CDATA[PRODUCT_LANGUAGE = fr-FR AND
FeatureIMSLS = 3]]/Publish

Publish Dialog=VerifyReadyDlg Control=Install Event=AddLocal
Value=FeatureIMSRF.fr_FR![CDATA[PRODUCT_LANGUAGE = fr-FR AND
FeatureIMSRF = 3]]/Publish

Publish Dialog=VerifyReadyDlg Control=Install Event=AddLocal
Value=FeatureIMSBT.fr_FR![CDATA[PRODUCT_LANGUAGE = fr-FR AND
FeatureIMSBT = 3]]/Publish

 

Publish Dialog=VerifyReadyDlg Control=Install Event=Remove
Value=FeatureIMSDesktop.fr_FR![CDATA[NOT (PRODUCT_LANGUAGE = fr-FR AND
FeatureIMSDesktop = 3)]]/Publish

Publish Dialog=VerifyReadyDlg Control=Install Event=Remove
Value=FeatureIMSDB.fr_FR![CDATA[NOT (PRODUCT_LANGUAGE = fr-FR AND
FeatureIMSDB = 3)]]/Publish

Publish Dialog=VerifyReadyDlg Control=Install Event=Remove
Value=FeatureIMSLS.fr_FR![CDATA[NOT (PRODUCT_LANGUAGE = fr-FR AND
FeatureIMSLS = 3)]]/Publish

Publish Dialog=VerifyReadyDlg Control=Install Event=Remove
Value=FeatureIMSRF.fr_FR![CDATA[NOT (PRODUCT_LANGUAGE = fr-FR AND
FeatureIMSRF = 3)]]/Publish

Publish Dialog=VerifyReadyDlg Control=Install Event=Remove
Value=FeatureIMSBT.fr_FR![CDATA[NOT (PRODUCT_LANGUAGE = fr-FR AND
FeatureIMSBT = 3)]]/Publish

 

So it works ok for Install, but at repair operation all additional
components were removed.

 

I've found that in different cases a different buttons starts installation
process.

 

At Install case it is Install button.

At Change case it is Change button.

At Repair case it is Repair button.

Also there are InstallNoShield, ChangeNoShield, RepairNoShield buttons. I'm
not sure about its purpose.

 

Does this means that I should duplicate my AddLocal / Remove events for each
of this buttons?  It will be big number of lines, and I don't think it will
be a good solution.

 

Is there most elegant way to implement this? May be I should use
InstallExecuteSequence element and define custom action that will be run
before start installation process.

 

Thanks.

--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] How to execute a custom action that depends on an assembly being installed to the GAC

2010-03-12 Thread Bob Arnson
On 3/11/2010 11:02 PM, Jacques Eloff wrote:
 I've also add the WixFailWhenDeferred action to allow for injecting
 failures. I found that since it relies on the GAC, having Execute=commit
 seems to work well by making sure the assemblies are in the GAC since this
 happens after the publishAssembly steps.


Commit actions happen after the install is commited, so rollback isn't 
feasible. See Commit Custom Actions in the MSI SDK for details.

-- 
sig://boB
http://joyofsetup.com/


--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Add Local Event

2010-03-12 Thread Bob Arnson
On 3/12/2010 7:29 AM, Oleksandr Y. Nechyporenko wrote:
 So now I setup addlocal / remove events for one of its buttons.


Many events are tied to the Install button; you likely will have to 
replace VerifyReadyDlg entirely to add your control events because you 
need the existing control events to happen after yours.

-- 
sig://boB
http://joyofsetup.com/


--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] install service

2010-03-12 Thread Shabbir Ahsan

thanks to those who helped.

 

I got the service to install, but it now fails to start.  Possibly an XP quirk, 
and am now testing on other OS to see what happens.  When attempting to start 
the service it returns an error saying the service did not respond in a timely 
fashion.  I know the service is sound, as I am using it on another server and 
it works no problem hence I'm thinking it is an XP problem.

 

thanks.
  
_
Send us your Hotmail stories and be featured in our newsletter
http://clk.atdmt.com/UKM/go/195013117/direct/01/
--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Using superscript text in a dialog?

2010-03-12 Thread Bob Arnson
On 3/11/2010 9:21 PM, Tabmow wrote:
 Sorry - i don't mean to be obtuse, but i searched around for 
 'character map' and 'wix' and nothing jumps out at me. 

Character Map is a Windows tool; check your Start menu shortcuts.

-- 
sig://boB
http://joyofsetup.com/


--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] including WixUI_Modno in project

2010-03-12 Thread Shabbir Ahsan

Hi,

 

I want to include some of my own dialogs for the installer (to collect SQL 
server info amongst other things), but am running into problems without getting 
anywhere.

 

I have copied the WixUI_Mondo.wxs into my project directory and renamed it 
MyWixUI_Mondo.wxs.  I ahve also updated the UI ref to the following:

UIRef Id=MyWixUI_Mondo /

 

But when I try to buid the MSI, I get the following error:

Error 1 Unresolved reference to symbol 'WixUI:MyWixUI_Mondo' in section 
'Product:{C929BD2C-1910-4D79-A0AC-E562277ECA0B}'.

 

I have wixUI as a reference - should this now be removed.  Also I only copied 
the wixUI_Mondo file - do I need to copy the other dialog files also - if so 
which ones?

 

Thanks



  
_
Tell us your greatest, weirdest and funniest Hotmail stories
http://clk.atdmt.com/UKM/go/195013117/direct/01/
--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Add Local Event

2010-03-12 Thread Oleksandr Y. Nechyporenko
Bob,

My main problem is that I need something like code below. I.e. I need
duplicate same rows for each of buttons (InstallNoShield, Install,
ChangeNoShield, Change, Repair). So there are too many copy-paste code with
same operations but for different buttons. And I looking for a way to
simplify it.

I'm newbie in WiX and it is possible I just don't know something. May be it
possible to describe same event for group of buttons. Or maybe I totally
should go by another way for example use InstallExecuteSequence with custom
actions or something else.


Publish Dialog=VerifyReadyDlg Control=InstallNoShield Event=AddLocal
Value=FeatureIMSDesktop.fr_FR![CDATA[PRODUCT_LANGUAGE = fr-FR AND
(FeatureIMSDesktop = 3 OR (FeatureIMSDesktop = -1 AND !FeatureIMSDesktop =
3))]]/Publish
Publish Dialog=VerifyReadyDlg Control=InstallNoShield Event=AddLocal
Value=FeatureIMSDesktop.de_DE![CDATA[PRODUCT_LANGUAGE = de-DE AND
(FeatureIMSDesktop = 3 OR (FeatureIMSDesktop = -1 AND !FeatureIMSDesktop =
3))]]/Publish
Publish Dialog=VerifyReadyDlg Control=InstallNoShield Event=AddLocal
Value=FeatureIMSDB.fr_FR![CDATA[PRODUCT_LANGUAGE = fr-FR AND
(FeatureIMSDB = 3 OR (FeatureIMSDB = -1 AND !FeatureIMSDB =
3))]]/Publish
Publish Dialog=VerifyReadyDlg Control=InstallNoShield Event=AddLocal
Value=FeatureIMSLS.fr_FR![CDATA[PRODUCT_LANGUAGE = fr-FR AND
(FeatureIMSLS = 3 OR (FeatureIMSLS = -1 AND !FeatureIMSLS =
3))]]/Publish
Publish Dialog=VerifyReadyDlg Control=InstallNoShield Event=AddLocal
Value=FeatureIMSRF.fr_FR![CDATA[PRODUCT_LANGUAGE = fr-FR AND
(FeatureIMSRF = 3 OR (FeatureIMSRF = -1 AND !FeatureIMSRF =
3))]]/Publish
Publish Dialog=VerifyReadyDlg Control=InstallNoShield Event=AddLocal
Value=FeatureIMSBT.fr_FR![CDATA[PRODUCT_LANGUAGE = fr-FR AND
(FeatureIMSBT = 3 OR (FeatureIMSBT = -1 AND !FeatureIMSBT =
3))]]/Publish

Publish Dialog=VerifyReadyDlg Control=InstallNoShield Event=Remove
Value=FeatureIMSDesktop.fr_FR![CDATA[NOT (PRODUCT_LANGUAGE = fr-FR AND
(FeatureIMSDesktop = 3 OR (FeatureIMSDesktop = -1 AND !FeatureIMSDesktop =
3)))]]/Publish
Publish Dialog=VerifyReadyDlg Control=InstallNoShield Event=Remove
Value=FeatureIMSDesktop.de_DE![CDATA[NOT (PRODUCT_LANGUAGE = de-DE AND
(FeatureIMSDesktop = 3 OR (FeatureIMSDesktop = -1 AND !FeatureIMSDesktop =
3)))]]/Publish
Publish Dialog=VerifyReadyDlg Control=InstallNoShield Event=Remove
Value=FeatureIMSDB.fr_FR![CDATA[NOT (PRODUCT_LANGUAGE = fr-FR AND
(FeatureIMSDB = 3 OR (FeatureIMSDB = -1 AND !FeatureIMSDB =
3)))]]/Publish
Publish Dialog=VerifyReadyDlg Control=InstallNoShield Event=Remove
Value=FeatureIMSLS.fr_FR![CDATA[NOT (PRODUCT_LANGUAGE = fr-FR AND
(FeatureIMSLS = 3 OR (FeatureIMSLS = -1 AND !FeatureIMSLS =
3)))]]/Publish
Publish Dialog=VerifyReadyDlg Control=InstallNoShield Event=Remove
Value=FeatureIMSRF.fr_FR![CDATA[NOT (PRODUCT_LANGUAGE = fr-FR AND
(FeatureIMSRF = 3 OR (FeatureIMSRF = -1 AND !FeatureIMSRF =
3)))]]/Publish
Publish Dialog=VerifyReadyDlg Control=InstallNoShield Event=Remove
Value=FeatureIMSBT.fr_FR![CDATA[NOT (PRODUCT_LANGUAGE = fr-FR AND
(FeatureIMSBT = 3 OR (FeatureIMSBT = -1 AND !FeatureIMSBT =
3)))]]/Publish

Publish Dialog=VerifyReadyDlg Control=Install Event=AddLocal
Value=FeatureIMSDesktop.fr_FR![CDATA[PRODUCT_LANGUAGE = fr-FR AND
(FeatureIMSDesktop = 3 OR (FeatureIMSDesktop = -1 AND !FeatureIMSDesktop =
3))]]/Publish
Publish Dialog=VerifyReadyDlg Control=Install Event=AddLocal
Value=FeatureIMSDesktop.de_DE![CDATA[PRODUCT_LANGUAGE = de-DE AND
(FeatureIMSDesktop = 3 OR (FeatureIMSDesktop = -1 AND !FeatureIMSDesktop =
3))]]/Publish
Publish Dialog=VerifyReadyDlg Control=Install Event=AddLocal
Value=FeatureIMSDB.fr_FR![CDATA[PRODUCT_LANGUAGE = fr-FR AND
(FeatureIMSDB = 3 OR (FeatureIMSDB = -1 AND !FeatureIMSDB =
3))]]/Publish
Publish Dialog=VerifyReadyDlg Control=Install Event=AddLocal
Value=FeatureIMSLS.fr_FR![CDATA[PRODUCT_LANGUAGE = fr-FR AND
(FeatureIMSLS = 3 OR (FeatureIMSLS = -1 AND !FeatureIMSLS =
3))]]/Publish
Publish Dialog=VerifyReadyDlg Control=Install Event=AddLocal
Value=FeatureIMSRF.fr_FR![CDATA[PRODUCT_LANGUAGE = fr-FR AND
(FeatureIMSRF = 3 OR (FeatureIMSRF = -1 AND !FeatureIMSRF =
3))]]/Publish
Publish Dialog=VerifyReadyDlg Control=Install Event=AddLocal
Value=FeatureIMSBT.fr_FR![CDATA[PRODUCT_LANGUAGE = fr-FR AND
(FeatureIMSBT = 3 OR (FeatureIMSBT = -1 AND !FeatureIMSBT =
3))]]/Publish

Publish Dialog=VerifyReadyDlg Control=Install Event=Remove
Value=FeatureIMSDesktop.fr_FR![CDATA[NOT (PRODUCT_LANGUAGE = fr-FR AND
(FeatureIMSDesktop = 3 OR (FeatureIMSDesktop = -1 AND !FeatureIMSDesktop =
3)))]]/Publish
Publish Dialog=VerifyReadyDlg Control=Install Event=Remove
Value=FeatureIMSDesktop.de_DE![CDATA[NOT (PRODUCT_LANGUAGE = de-DE AND
(FeatureIMSDesktop = 3 OR (FeatureIMSDesktop = -1 AND !FeatureIMSDesktop =
3)))]]/Publish
Publish Dialog=VerifyReadyDlg Control=Install Event=Remove
Value=FeatureIMSDB.fr_FR![CDATA[NOT (PRODUCT_LANGUAGE = fr-FR AND
(FeatureIMSDB = 3 OR (FeatureIMSDB = -1 AND !FeatureIMSDB =
3)))]]/Publish
Publish Dialog=VerifyReadyDlg 

[WiX-users] Fetching bunch of data from environment config file to another config file

2010-03-12 Thread Srinivas Banda
Hi

I am facing an issue in wix.
I have an environment config file, in that i will set the values based on 
environment.
I have fetch bunch of  values from environment config file to another xml file.

example :
in environment config file:
Root
string10.10.10.11/string
string10.10.10.12/string
string10.10.10.13/string
/Root

Based on root tag I have copy complete data into another xml. I have tried with 
CDATA also it's not working means
while moving data to another xml it's parsing that data it's coming like

Root
lt;stringgt;10.10.10.11lt;\stringgt;
lt;stringgt;10.10.10.12lt;\stringgt;
lt;stringgt;10.10.10.13lt;\stringgt;
/Root

Could please on this how to resolve this issue

Regards,
Srinivas.
iGATE is Ranked No. 1 in DQ-IDC best IT employer survey and Ranked No.2 
by Business Today-Mercer Human Resource Consulting-TNS  in a cross industry 
survey of Best Companies to work for in India
DISCLAIMER-
Information transmitted by this EMAIL is proprietary to iGATE Group of 
Companies and is intended for use only by the individual 
or entity to whom it is addressed and may contain information that is 
privileged, confidential, or exempt from disclosure under 
applicable law. If you are not the intended recipient of this EMAIL immediately 
notify the sender at iGATE or mailad...@igate.com 
and delete this EMAIL including any attachments
--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] WiX Integration with VS 2008 Problem

2010-03-12 Thread Alexander Volkov
Hi experts and users,

I have two Visual Studios installed: 2005 and 2008.
Somehow WiX project type did not get added to VS 2008. WiX works with
VS 2005 as expected, though.
Running ProjectAggregator does nothing noticeable. Did it with VS shut
down, then restarted.

What would be my steps to add WiX targets manually? I have them in

F:\Program Files\MSBuild\Microsoft\WiX\v3.0

(my system drive is F, WiX is installed and properly working at
F:\Program Files\Windows Installer XML v3).

Thank you very much for your help.

Alex

--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] non-Profile specific class registration

2010-03-12 Thread Nicholas Makin
My customer came to me a said that the software installs for only the current 
user. I didn't think there was anything user specific about the install and 
pointed them to look at other integration points. But after using Process 
Monitor to log registry activity I am not so sure!

Nowhere in my wxs files do I have HKCU and yet when I look at the all of the 
places that msiexec.exe does a RegSetValue 90% of the entries are to:

HKCU\Software\Classes\...whatever...

Where they should be HKCR\...whatever...

So my question is: did I miss something simple in the documentation on how to 
set the installer work of all users vs profile specific install?

Nicholas M. Makin

--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Before I make the leap to Wix ...

2010-03-12 Thread Bill McCormick
Preliminary discovery has me almost ready to make the Wix leap from 
Windows Installer. But before I do, I have a some questions that I can't 
find the answer to in the FAQ or other (large) repositories of info:

1. I assume Wix will integrate with VSS without any problems. Is that 
correct?

2. I have a number of legacy VB6 applications that I need to integrate 
into the installer. I do this with a VS2008 Windows Installer project 
and VSS by sharing application exe and other dependencies into a common 
Files folder under the installer project, and doing registration as 
necessary. Does Wix have a good solution for this?

3. If I'm just starting out with Wix, is the V3.5 beta far enough along 
that I should consider it?

4. My current Windows Installer has a custom action. Will 
/Dark/Candle/Light/ deal with this OK?

Thanks,

Bill McCormick
-- 
ACE-CO
5355 Dietrich Rd.
San Antonio, TX 78219
(210) 661-4111 x512
(800) 676-4111 Toll Free
(210) 662-6177 Fax
(210) 216-6641 Cell
mailto:wpmccorm...@ace-co.com
http://www.ace-co.com 


--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] non-Profile specific class registration

2010-03-12 Thread Nicholas Makin
Ah, why do I ask questions before I really take a good hard look?

The problem here seems to be that the InstallScope is not set to perMachine 
in my Project Tag (in fact it was missing altogether). 

I suppose it would be nice to get a little confirmation on this, but I am 
pretty sure I figured out the mystery.

Nicholas

-Original Message-
From: Nicholas Makin [mailto:nma...@opentext.com] 
Sent: Friday, March 12, 2010 12:49 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] non-Profile specific class registration

My customer came to me a said that the software installs for only the current 
user. I didn't think there was anything user specific about the install and 
pointed them to look at other integration points. But after using Process 
Monitor to log registry activity I am not so sure!

Nowhere in my wxs files do I have HKCU and yet when I look at the all of the 
places that msiexec.exe does a RegSetValue 90% of the entries are to:

HKCU\Software\Classes\...whatever...

Where they should be HKCR\...whatever...

So my question is: did I miss something simple in the documentation on how to 
set the installer work of all users vs profile specific install?

Nicholas M. Makin

--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] How to detect whether a service is running or not

2010-03-12 Thread Wilson, Phil
That previous post might be a bit misleading, and it always helps to look at 
the MSI SDK docs. The Name in the ServiceControl table isn't the exe name - 
it's actually the internal name of the service. Is that perhaps the issue?  

Phil Wilson 


-Original Message-
From: Sanjay Rao [mailto:s...@noida.interrasystems.com] 
Sent: Thursday, March 11, 2010 11:08 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] How to detect whether a service is running or not

This is not working on Windows server 2008, while un-installtion.


On 11-03-2010 22:42, puyo puy wrote:
 ServiceControl Id='MyServiceControl' Name='MyServiceExeName'
 Start='install' Stop='both' Remove='uninstall' /

 mean: start the service on install, remove the service when the product is
 uninstalled, and stop the service both on install and uninstall.

 Refer to ServiceControl Element in Wix help file for more details.

 --- On Fri, 12/3/10, Sanjay Raos...@noida.interrasystems.com  wrote:

 From: Sanjay Raos...@noida.interrasystems.com
 Subject: [WiX-users] How to detect whether a service is running or not
 To: wix-users@lists.sourceforge.net
 Received: Friday, 12 March, 2010, 1:40 PM

 Hi,

 I have written a msi installer, which installs three services. It work
 fine, but it does not stops/removes these services when I uninstall this
 installer from windows server 2008.
 Is anybody have any idea ?

 Is there any way using WIX, to know that a particular service is running
 or not. In this way I can prompt user to manually stop the services.
 Any type of help in this reagard would be greatly appreciated.


 Regards,
 Sanjay Rao




 --
 Download Intel(r) Parallel Studio Eval
 Try the new software tools for yourself. Speed compiling, find bugs
 proactively, and fine-tune applications for parallel performance.
 See why Intel Parallel Studio got high marks during beta.
 http://p.sf.net/sfu/intel-sw-dev
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users




 --
 Download Intel#174; Parallel Studio Eval
 Try the new software tools for yourself. Speed compiling, find bugs
 proactively, and fine-tune applications for parallel performance.
 See why Intel Parallel Studio got high marks during beta.
 http://p.sf.net/sfu/intel-sw-dev
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users






 No virus found in this incoming message.
 Checked by AVG - www.avg.com
 Version: 9.0.733 / Virus Database: 271.1.1/2739 - Release Date: 03/11/10 
 13:50:00





--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


*** Confidentiality Notice: This e-mail, including any associated or attached 
files, is intended solely for the individual or entity to which it is 
addressed. This e-mail is confidential and may well also be legally privileged. 
If you have received it in error, you are on notice of its status. Please 
notify the sender immediately by reply e-mail and then delete this message from 
your system. Please do not copy it or use it for any purposes, or disclose its 
contents to any other person. This email comes from a division of the Invensys 
Group, owned by Invensys plc, which is a company registered in England and 
Wales with its registered office at Portland House, Bressenden Place, London, 
SW1E 5BF (Registered number 166023). For a list of European legal entities 
within the Invensys Group, please go to 
http://www.invensys.com/legal/default.asp?top_nav_id=77nav_id=80prev_id=77. 
You may contact Invensys plc on +44 (0)20 7821 3848 or e-mail 
inet.hqhelpd...@invensys.com. This e-mail and any attachments thereto may be 
subject to the terms of any agreements between Invensys (and/or its 
subsidiaries and affiliates) and the recipient (and/or its subsidiaries and 
affiliates).



--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net

Re: [WiX-users] How to detect whether a service is running or not

2010-03-12 Thread Sanjay Rao
This would not be the issue, because it is working on all other 
platforms except Windows server 2008. I am using Wix 3.0.


On 12-03-2010 10:21, Wilson, Phil wrote:
 That previous post might be a bit misleading, and it always helps to look at 
 the MSI SDK docs. The Name in the ServiceControl table isn't the exe name - 
 it's actually the internal name of the service. Is that perhaps the issue?

 Phil Wilson


 -Original Message-
 From: Sanjay Rao [mailto:s...@noida.interrasystems.com]
 Sent: Thursday, March 11, 2010 11:08 PM
 To: wix-users@lists.sourceforge.net
 Subject: Re: [WiX-users] How to detect whether a service is running or not

 This is not working on Windows server 2008, while un-installtion.


 On 11-03-2010 22:42, puyo puy wrote:

 ServiceControl Id='MyServiceControl' Name='MyServiceExeName'
 Start='install' Stop='both' Remove='uninstall' /

 mean: start the service on install, remove the service when the product is
 uninstalled, and stop the service both on install and uninstall.

 Refer to ServiceControl Element in Wix help file for more details.

 --- On Fri, 12/3/10, Sanjay Raos...@noida.interrasystems.com   wrote:

 From: Sanjay Raos...@noida.interrasystems.com
 Subject: [WiX-users] How to detect whether a service is running or not
 To: wix-users@lists.sourceforge.net
 Received: Friday, 12 March, 2010, 1:40 PM

 Hi,

 I have written a msi installer, which installs three services. It work
 fine, but it does not stops/removes these services when I uninstall this
 installer from windows server 2008.
 Is anybody have any idea ?

 Is there any way using WIX, to know that a particular service is running
 or not. In this way I can prompt user to manually stop the services.
 Any type of help in this reagard would be greatly appreciated.


 Regards,
 Sanjay Rao




 --
 Download Intel(r) Parallel Studio Eval
 Try the new software tools for yourself. Speed compiling, find bugs
 proactively, and fine-tune applications for parallel performance.
 See why Intel Parallel Studio got high marks during beta.
 http://p.sf.net/sfu/intel-sw-dev
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users




 --
 Download Intel#174; Parallel Studio Eval
 Try the new software tools for yourself. Speed compiling, find bugs
 proactively, and fine-tune applications for parallel performance.
 See why Intel Parallel Studio got high marks during beta.
 http://p.sf.net/sfu/intel-sw-dev
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users






 No virus found in this incoming message.
 Checked by AVG - www.avg.com
 Version: 9.0.733 / Virus Database: 271.1.1/2739 - Release Date: 03/11/10 
 13:50:00


  


 --
 Download Intel#174; Parallel Studio Eval
 Try the new software tools for yourself. Speed compiling, find bugs
 proactively, and fine-tune applications for parallel performance.
 See why Intel Parallel Studio got high marks during beta.
 http://p.sf.net/sfu/intel-sw-dev
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users


 *** Confidentiality Notice: This e-mail, including any associated or attached 
 files, is intended solely for the individual or entity to which it is 
 addressed. This e-mail is confidential and may well also be legally 
 privileged. If you have received it in error, you are on notice of its 
 status. Please notify the sender immediately by reply e-mail and then delete 
 this message from your system. Please do not copy it or use it for any 
 purposes, or disclose its contents to any other person. This email comes from 
 a division of the Invensys Group, owned by Invensys plc, which is a company 
 registered in England and Wales with its registered office at Portland House, 
 Bressenden Place, London, SW1E 5BF (Registered number 166023). For a list of 
 European legal entities within the Invensys Group, please go to 
 http://www.invensys.com/legal/default.asp?top_nav_id=77nav_id=80prev_id=77. 
 You may contact Invensys plc on +44 (0)20 7821 3848 or e-mail 
 inet.hqhelpd...@invensys.com. This e-mail and any attachments thereto may be 
 subject to the terms of any agreements between Invensys (and/or its 
 subsidiaries and affiliates) and the recipient (and/or its subsidiaries and 
 affiliates).



 --
 Download Intel#174; Parallel Studio Eval
 Try the new software tools for yourself. Speed compiling, find bugs
 proactively, and fine-tune applications for parallel 

[WiX-users] Trying to download latest WiX 3.5 drop

2010-03-12 Thread Matt Hoover (VSNC)
I would like to take a look at Burn (I know it is not finished, but I want to 
start looking at it).  When I went to http://sourceforge.net/projects/wix/files 
I didn't see a download for WiX 3.5.  Since it is a development project I 
thought okay, I will have to get it from CVS.  However, when I tried to do the 
get from CVS, got an error:

E:\WiXcvs -d:pserver:anonym...@wix.cvs.sourceforge.net:/cvsroot/wix login
Logging in to :pserver:anonym...@wix.cvs.sourceforge.net:2401:/cvsroot/wix
CVS password:
Error connecting to host wix.cvs.sourceforge.net: The requested name is valid, 
but no data of the requested type was found.
cvs [login aborted]: Connection to server failed

E:\WiXcvs -z3 -d:pserver:anonym...@wix.cvs.sourceforge.net:/cvsroot/wix co -P
Error connecting to host wix.cvs.sourceforge.net: The requested name is valid, 
but no data of the requested type was found.
cvs [checkout aborted]: Connection to server failed

E:\WiXcvs -z3 -d:pserver:anonym...@wix.cvs.sourceforge.net:/cvsroot/wix co -P 
winx3.5
Error connecting to host wix.cvs.sourceforge.net: The requested name is valid, 
but no data of the requested type was found.
cvs [checkout aborted]: Connection to server failed

E:\WiXcvs -z3 -d:pserver:anonym...@wix.cvs.sourceforge.net:/cvsroot/wix 
checkout -P winx3.5
Error connecting to host wix.cvs.sourceforge.net: The requested name is valid, 
but no data of the requested type was found.
cvs [checkout aborted]: Connection to server failed

My first question, is there someplace that I can download the current WiX 3.5 
installer and sources?  And my second question, what do I need to do to get 
read only access to the CVS sources?  If I can download the installer and 
sources, I really don't need CVS access, but I would like to figure out what I 
am doing wrong.

Thanks for your help,
--matt

--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] 3.5 and tramontana tutorials

2010-03-12 Thread Sam Domonkos
Hi, I was wondering if the tutorials on http://www.tramontana.co.hu/ are 
all compatable with WiX 3.5.1505?  I am having trouble linking.

Thanks,
Sam

--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] How to detect whether a service is running or not

2010-03-12 Thread Wilson, Phil
A verbose log might help in that case.

Phil Wilson 


-Original Message-
From: Sanjay Rao [mailto:s...@noida.interrasystems.com] 
Sent: Friday, March 12, 2010 10:35 AM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] How to detect whether a service is running or not

This would not be the issue, because it is working on all other 
platforms except Windows server 2008. I am using Wix 3.0.


On 12-03-2010 10:21, Wilson, Phil wrote:
 That previous post might be a bit misleading, and it always helps to look at 
 the MSI SDK docs. The Name in the ServiceControl table isn't the exe name - 
 it's actually the internal name of the service. Is that perhaps the issue?

 Phil Wilson


 -Original Message-
 From: Sanjay Rao [mailto:s...@noida.interrasystems.com]
 Sent: Thursday, March 11, 2010 11:08 PM
 To: wix-users@lists.sourceforge.net
 Subject: Re: [WiX-users] How to detect whether a service is running or not

 This is not working on Windows server 2008, while un-installtion.


 On 11-03-2010 22:42, puyo puy wrote:

 ServiceControl Id='MyServiceControl' Name='MyServiceExeName'
 Start='install' Stop='both' Remove='uninstall' /

 mean: start the service on install, remove the service when the product is
 uninstalled, and stop the service both on install and uninstall.

 Refer to ServiceControl Element in Wix help file for more details.

 --- On Fri, 12/3/10, Sanjay Raos...@noida.interrasystems.com   wrote:

 From: Sanjay Raos...@noida.interrasystems.com
 Subject: [WiX-users] How to detect whether a service is running or not
 To: wix-users@lists.sourceforge.net
 Received: Friday, 12 March, 2010, 1:40 PM

 Hi,

 I have written a msi installer, which installs three services. It work
 fine, but it does not stops/removes these services when I uninstall this
 installer from windows server 2008.
 Is anybody have any idea ?

 Is there any way using WIX, to know that a particular service is running
 or not. In this way I can prompt user to manually stop the services.
 Any type of help in this reagard would be greatly appreciated.


 Regards,
 Sanjay Rao




 --
 Download Intel(r) Parallel Studio Eval
 Try the new software tools for yourself. Speed compiling, find bugs
 proactively, and fine-tune applications for parallel performance.
 See why Intel Parallel Studio got high marks during beta.
 http://p.sf.net/sfu/intel-sw-dev
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users




 --
 Download Intel#174; Parallel Studio Eval
 Try the new software tools for yourself. Speed compiling, find bugs
 proactively, and fine-tune applications for parallel performance.
 See why Intel Parallel Studio got high marks during beta.
 http://p.sf.net/sfu/intel-sw-dev
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users






 No virus found in this incoming message.
 Checked by AVG - www.avg.com
 Version: 9.0.733 / Virus Database: 271.1.1/2739 - Release Date: 03/11/10 
 13:50:00


  


 --
 Download Intel#174; Parallel Studio Eval
 Try the new software tools for yourself. Speed compiling, find bugs
 proactively, and fine-tune applications for parallel performance.
 See why Intel Parallel Studio got high marks during beta.
 http://p.sf.net/sfu/intel-sw-dev
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users


 *** Confidentiality Notice: This e-mail, including any associated or attached 
 files, is intended solely for the individual or entity to which it is 
 addressed. This e-mail is confidential and may well also be legally 
 privileged. If you have received it in error, you are on notice of its 
 status. Please notify the sender immediately by reply e-mail and then delete 
 this message from your system. Please do not copy it or use it for any 
 purposes, or disclose its contents to any other person. This email comes from 
 a division of the Invensys Group, owned by Invensys plc, which is a company 
 registered in England and Wales with its registered office at Portland House, 
 Bressenden Place, London, SW1E 5BF (Registered number 166023). For a list of 
 European legal entities within the Invensys Group, please go to 
 http://www.invensys.com/legal/default.asp?top_nav_id=77nav_id=80prev_id=77. 
 You may contact Invensys plc on +44 (0)20 7821 3848 or e-mail 
 inet.hqhelpd...@invensys.com. This e-mail and any attachments thereto may be 
 subject to the terms of any agreements between Invensys (and/or its 
 subsidiaries and affiliates) and the recipient 

Re: [WiX-users] Is it possible to install a 32-bit COM server DLL under ProgramFiles64Folder?

2010-03-12 Thread Wilson, Phil
Also if these are shared COM components (installed by other products) it's 
probably not a good idea to give the user a choice at install time. You want 
them in a common location (but separated by bitness). 

Phil Wilson 


-Original Message-
From: Bob Arnson [mailto:b...@joyofsetup.com] 
Sent: Thursday, March 11, 2010 5:33 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Is it possible to install a 32-bit COM server DLL 
under ProgramFiles64Folder?

On 3/11/2010 6:02 PM, Paul Baker wrote:
 We give the user a choice of install location for our 64-bit
 components, which defaults to Program Files\Product Name. Should we
 create a parallel Program Files (x86)\Product Name folder for the
 32-bit components? If so, what should happen if the user decides to
 install the 64-bit components to a different location?


Personally, I'd vote for nothing. Unless a product is bigger than, 
say, 100MB, even folks like me who partition their drives tightly to 
keep small C: drives won't much care. (Remember that MSI keeps a copy of 
your .msi and Windows 7, it's the whole .msi.)

 One alternative that I have seen several times is to install the
 32-bit components into Program Files (x86)\Common Files. Are there
 any drawbacks to going against the stated purpose of CommonFilesFolder
 (for components that are shared across applications) in this way?


Not that I know of. The most important thing is to keep files in the 
right directory tree according to bitness.

-- 
sig://boB
http://joyofsetup.com/


--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


*** Confidentiality Notice: This e-mail, including any associated or attached 
files, is intended solely for the individual or entity to which it is 
addressed. This e-mail is confidential and may well also be legally privileged. 
If you have received it in error, you are on notice of its status. Please 
notify the sender immediately by reply e-mail and then delete this message from 
your system. Please do not copy it or use it for any purposes, or disclose its 
contents to any other person. This email comes from a division of the Invensys 
Group, owned by Invensys plc, which is a company registered in England and 
Wales with its registered office at Portland House, Bressenden Place, London, 
SW1E 5BF (Registered number 166023). For a list of European legal entities 
within the Invensys Group, please go to 
http://www.invensys.com/legal/default.asp?top_nav_id=77nav_id=80prev_id=77. 
You may contact Invensys plc on +44 (0)20 7821 3848 or e-mail 
inet.hqhelpd...@invensys.com. This e-mail and any attachments thereto may be 
subject to the terms of any agreements between Invensys (and/or its 
subsidiaries and affiliates) and the recipient (and/or its subsidiaries and 
affiliates).



--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Trying to download latest WiX 3.5 drop

2010-03-12 Thread Matt Hoover (VSNC)
Thank you, the releases page got me unblocked.  Looking forward to when burn is 
a little further along and I can start using it :-)
--matt

-Original Message-
From: Mike Carlson (DEV DIV) [mailto:mica...@microsoft.com] 
Sent: Friday, March 12, 2010 1:48 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Trying to download latest WiX 3.5 drop

I can't help with the CVS issues, but to download the latest official build of 
3.5, you want the weekly releases page, linked from wix.sf.net.

The direct link to weekly releases page is here: 
http://wix.sourceforge.net/releases/

Thanks,
Mike Carlson

-Original Message-
From: Matt Hoover (VSNC) [mailto:mahoo...@microsoft.com] 
Sent: Friday, March 12, 2010 10:40 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Trying to download latest WiX 3.5 drop

I would like to take a look at Burn (I know it is not finished, but I want to 
start looking at it).  When I went to http://sourceforge.net/projects/wix/files 
I didn't see a download for WiX 3.5.  Since it is a development project I 
thought okay, I will have to get it from CVS.  However, when I tried to do the 
get from CVS, got an error:

E:\WiXcvs -d:pserver:anonym...@wix.cvs.sourceforge.net:/cvsroot/wix login
Logging in to :pserver:anonym...@wix.cvs.sourceforge.net:2401:/cvsroot/wix
CVS password:
Error connecting to host wix.cvs.sourceforge.net: The requested name is valid, 
but no data of the requested type was found.
cvs [login aborted]: Connection to server failed

E:\WiXcvs -z3 -d:pserver:anonym...@wix.cvs.sourceforge.net:/cvsroot/wix co -P
Error connecting to host wix.cvs.sourceforge.net: The requested name is valid, 
but no data of the requested type was found.
cvs [checkout aborted]: Connection to server failed

E:\WiXcvs -z3 -d:pserver:anonym...@wix.cvs.sourceforge.net:/cvsroot/wix co -P 
winx3.5
Error connecting to host wix.cvs.sourceforge.net: The requested name is valid, 
but no data of the requested type was found.
cvs [checkout aborted]: Connection to server failed

E:\WiXcvs -z3 -d:pserver:anonym...@wix.cvs.sourceforge.net:/cvsroot/wix 
checkout -P winx3.5
Error connecting to host wix.cvs.sourceforge.net: The requested name is valid, 
but no data of the requested type was found.
cvs [checkout aborted]: Connection to server failed

My first question, is there someplace that I can download the current WiX 3.5 
installer and sources?  And my second question, what do I need to do to get 
read only access to the CVS sources?  If I can download the installer and 
sources, I really don't need CVS access, but I would like to figure out what I 
am doing wrong.

Thanks for your help,
--matt

--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] including WixUI_Modno in project

2010-03-12 Thread akash bhatia
Instead referring WiXMondo... use the source code for Mondo at:
http://wix.cvs.sourceforge.net/*checkout*/wix/wix/src/ext/UIExtension/wixlib/WixUI_Mondo.wxs

you can add where ever you want to add your custom dialogs ..


On Fri, Mar 12, 2010 at 10:14 PM, Shabbir Ahsan
shabbir_ah...@hotmail.comwrote:


 Hi,



 I want to include some of my own dialogs for the installer (to collect SQL
 server info amongst other things), but am running into problems without
 getting anywhere.



 I have copied the WixUI_Mondo.wxs into my project directory and renamed it
 MyWixUI_Mondo.wxs.  I ahve also updated the UI ref to the following:

 UIRef Id=MyWixUI_Mondo /



 But when I try to buid the MSI, I get the following error:

 Error 1 Unresolved reference to symbol 'WixUI:MyWixUI_Mondo' in section
 'Product:{C929BD2C-1910-4D79-A0AC-E562277ECA0B}'.



 I have wixUI as a reference - should this now be removed.  Also I only
 copied the wixUI_Mondo file - do I need to copy the other dialog files also
 - if so which ones?



 Thanks




 _
 Tell us your greatest, weirdest and funniest Hotmail stories
 http://clk.atdmt.com/UKM/go/195013117/direct/01/

 --
 Download IntelĀ® Parallel Studio Eval
 Try the new software tools for yourself. Speed compiling, find bugs
 proactively, and fine-tune applications for parallel performance.
 See why Intel Parallel Studio got high marks during beta.
 http://p.sf.net/sfu/intel-sw-dev
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users




-- 
Cheers,
Akash
--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users