Re: [WiX-users] Create a single Setup.exe for multiple Msi

2010-02-22 Thread Sagar1111

Anybody there, who can help me out?

-- 
View this message in context: 
http://n2.nabble.com/Create-a-single-Setup-exe-for-multiple-Msi-tp4580221p4610914.html
Sent from the wix-users mailing list archive at Nabble.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] minor issue with documentation

2010-02-22 Thread Jacek Pospychała
hi

I have no idea how this could happen, but there's little bug on the docs
page http://wix.sourceforge.net/manual-wix3/main.htm
The title there says: Windows Installer XML (WiX)
v[[Version.Major]].[[Version.Minor]] Help - I guess the brackets part
should be repleaced with real version numbers there...

other than that, WiX has awesome docs, thanks guys!

Jacek
--
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] questions about installer speed and progress monitoring

2010-02-22 Thread Jacek Pospychała
Bob,
What kind of failures are handled by this rollback feature? Is it failure
like user pressing cancel during installation, or rather disk failure, or
privileges problem, or files conflict, or something else?
I'm trying to asses, how much I need it.

Is it possible to switch off that rollback and related bookkeeping?

Generally I'd prefer 90% of my users have faster install, rather than 1% of
them be able to use rollback when they need it.
Unless this rollback is used by more than 1% of the users... :-)

thanks
Jacek


On Sat, Feb 20, 2010 at 8:10 PM, Bob Arnson b...@joyofsetup.com wrote:

 On 2/19/2010 4:37 AM, Jacek Pospychała wrote:
  Do you know what extra does the installer do, that takes so much time?

 It supports rollback which entails extra bookkeeping to be able to
 restore files on failure.

  And
  does it make any change if I e.g. split it to more features, or more
  components.
 

 Not really.

 --
 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

--
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] Creating desktop and start menu shortcuts

2010-02-22 Thread ricky sundrani
1)For the startmenu shortcut you need to list ProgramMenuDir into the
RemoveFolder table.

see the link:
http://robmensching.com/blog/posts/2007/4/27/How-to-create-an-uninstall-shortcut-and-pass-all-the
2) The purpose of creating a registry entry under HKCU is to use it as a
keypath to keep ICE happy, but you have not set the keypath=Yes for both the
registryValue elements.

The code for shoortcut seems to be correct,depending on the directory
hierarchy you are using.
Target=[INSTALLOCATION]App.exe
Is the App.exe present in the INSTALLLOCATION or some nested folder.?





On Mon, Feb 22, 2010 at 12:43 PM, Alex Wernecke awerne...@finteq.co.zawrote:

 Hi,



 I'm having some trouble successdully creating shortcuts on the desktop
 and in the start menu.  Here is my code :



 !--desktop shortcut--

 Component Id=DesktopShortcut
 Guid=D92F6731-4EB0-4707-A71A-BB02DEA46689

   CreateFolder/

   RegistryKey Root=HKCU Key=Software\Company\Application\Install
 Action=createAndRemoveOnUninstall

 RegistryValue Name=App Value=1 Type=integer/

   /RegistryKey

   Shortcut Id=DesktopShortcut Directory=DesktopFolder
 Name=App.ico WorkingDirectory=INSTALLOCATION Icon=App.ico
 Target=[INSTALLOCATION]App.exe

  Icon Id=App.ico SourceFile=Files\App.ico/

   /Shortcut

 /Component





 !--startmenu shortcut--

 Component Id=ProgramFilesShortcut
 Guid=0FA5BEEC-C72D-44c7-9E27-44C16A26F025

CreateFolder/

RegistryKey Root=HKCU Key=Software\Company\Application\Install
 Action=createAndRemoveOnUninstall

   RegistryValue Name=app1 Value=1 Type=integer/

/RegistryKey

Shortcut Id=ProgramFilesShortcut Directory=ProgramMenuDir
 Name=App.ico WorkingDirectory=INSTALLOCATION Icon=App.ico
 Target=[INSTALLOCATION]App.exe

   Icon Id=App.ico SourceFile=Files\App.ico/

/Shortcut

 /Component



 The desktop shortcut appears but the target is wrong. The start menu
 shortcut just doesn't seem to work.



 Many thanks,



 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




-- 
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


Re: [WiX-users] Create a single Setup.exe for multiple Msi

2010-02-22 Thread dB .
http://dotnetinstaller.codeplex.com will do the job.

dB. @ dblock.org 
Moscow|Geneva|Seattle|New York


-Original Message-
From: Sagar [mailto:sagarkavitak...@gmail.com] 
Sent: Monday, February 22, 2010 3:53 AM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Create a single Setup.exe for multiple Msi


Anybody there, who can help me out?

-- 
View this message in context: 
http://n2.nabble.com/Create-a-single-Setup-exe-for-multiple-Msi-tp4580221p4610914.html
Sent from the wix-users mailing list archive at Nabble.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

--
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 Install - Custom Dialog, Next button needs to be clicked twice dialog to advance

2010-02-22 Thread Robert Hermann
I've got a WIX project where I have some custom dialogs along with the standard 
dialogs.
One of the custom dialogs, the next button was advancing the install to the 
next dialog with a single click.  
I put in a small change to the install and the next button then needed two 
clicks in order to get the dialogs to advance. I backed out this change however 
the double click on the next button still stayed.

Once I get past this dialog and then backtrack (using the back buttons) and 
then come upon this dialog again, the next button only needs one click to 
advance, so this double click scenario only happens when the custom dialog is 
used for the first time.

I don't see any errors in the install log when I use the /l*v logging option on 
the msiexec.

Anyone have any advise as to what I can look at ...  

Thanks !


Rob Hermann
Senior Software Developer 
Niceware International, LLC
10437 Innovation Drive
Suite 147
Milwaukee, WI  53226
Tel: 414-476-6423 x110
Fax: 414-476-7955
Email: rob.herm...@nicewareintl.com
http://www.nicewareintl.com
http://healthcare.nicewareintl.com



January 8th, 2010 - 10:30 AM CST - 11:30AM CST
Plan for a Successful  2010 with Niceware Products and Services
Register Today!

February 5th, 2010 - 10:30AM - 11:30AM CST
Implementing NiceWatch Enterprise Business Connector with Oracle and SAP
Register Today!

February 26th, 2010 - 10:30AM - 11:30AM CST
Oracle Partner Webinar
Register Today!

The information in this e-mail and any attachments is confidential and may be 
subject to legal professional privilege. It is intended solely for the 
attention and use of the named addressee(s). If you are not the intended 
recipient or person responsible for delivering this information to the intended 
recipient, please notify the sender immediately. Unless you are the intended 
recipient or his/her representative you are not authorized to, and must not, 
read, copy, distribute, use or retain this message or any part of it

--
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] Problem with update ComboBox control

2010-02-22 Thread Sergey Marudenko

Thank you.
Solution with window copy is really ugly but it is working. Anyway bad
solution is much better than nothing.


Sebastian Brand-2 wrote:
 
 FYI: Someone suggested to call a Property update to repopulate the
 combobox items.
 
 This doesn't work, the only solution I know, is copying the whole dialog
 and showing that after the CA is executed. On the second dialog, when the
 CA executed again, it must show the first dialog again. I hope you get
 what I mean :)
 
 Best regards,
 Sebastian Brand
 http://blog.sebastianbrand.com
 
 
 
 -Original Message-
 From: Sergey Marudenko [mailto:shef...@mail.ru]
 Sent: Sunday, February 21, 2010 12:58
 To: wix-users@lists.sourceforge.net
 Subject: Re: [WiX-users] Problem with update ComboBox control
 
 
 Hello Everybody.
 
 I got the same problem right now. But unfortunately I didn't see have you
 found working solution or not.
 
 Please help if you can!
 
 Thanks!
 --
 View this message in context: http://old.nabble.com/Problem-with-update-
 %22ComboBox%22-control-tp20125554p27654837.html
 Sent from the wix-users mailing list archive at Nabble.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
 
 --
 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
 
 

-- 
View this message in context: 
http://old.nabble.com/Problem-with-update-%22ComboBox%22-control-tp20125554p27688181.html
Sent from the wix-users mailing list archive at Nabble.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] Wix Install - Custom Dialog, Next button needs to be clicked twice dialog to advance

2010-02-22 Thread Harvey, John Ctr USAF Warfighter's Edge
The first place to look is the publish events on the dialog's Next button. 
Maybe something is getting called that isn't doing anything or calling the same 
dialog. If you can post the XML for the dialog here, folks may see something 
you don't.

John Harvey


-Original Message-
From: Robert Hermann [mailto:rob.herm...@nicewareintl.com] 
Sent: Monday, February 22, 2010 7:25 AM
To: General discussion for Windows Installer XML toolset.
Subject: [WiX-users] Wix Install - Custom Dialog, Next button needs to be 
clicked twice dialog to advance

I've got a WIX project where I have some custom dialogs along with the standard 
dialogs.
One of the custom dialogs, the next button was advancing the install to the 
next dialog with a single click.  
I put in a small change to the install and the next button then needed two 
clicks in order to get the dialogs to advance. I backed out this change however 
the double click on the next button still stayed.

Once I get past this dialog and then backtrack (using the back buttons) and 
then come upon this dialog again, the next button only needs one click to 
advance, so this double click scenario only happens when the custom dialog is 
used for the first time.

I don't see any errors in the install log when I use the /l*v logging option on 
the msiexec.

Anyone have any advise as to what I can look at ...  

Thanks !


Rob Hermann
Senior Software Developer 
Niceware International, LLC
10437 Innovation Drive
Suite 147
Milwaukee, WI  53226
Tel: 414-476-6423 x110
Fax: 414-476-7955
Email: rob.herm...@nicewareintl.com
http://www.nicewareintl.com
http://healthcare.nicewareintl.com



January 8th, 2010 - 10:30 AM CST - 11:30AM CST
Plan for a Successful  2010 with Niceware Products and Services
Register Today!

February 5th, 2010 - 10:30AM - 11:30AM CST
Implementing NiceWatch Enterprise Business Connector with Oracle and SAP
Register Today!

February 26th, 2010 - 10:30AM - 11:30AM CST
Oracle Partner Webinar
Register Today!

The information in this e-mail and any attachments is confidential and may be 
subject to legal professional privilege. It is intended solely for the 
attention and use of the named addressee(s). If you are not the intended 
recipient or person responsible for delivering this information to the intended 
recipient, please notify the sender immediately. Unless you are the intended 
recipient or his/her representative you are not authorized to, and must not, 
read, copy, distribute, use or retain this message or any part of it

--
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] Wix Install - Custom Dialog, Next button needs to be clicked twice dialog to advance - XML Source

2010-02-22 Thread Robert Hermann
Email recap for first time readers:

I've got a WIX project where I have some custom dialogs along with the standard 
dialogs.
One of the custom dialogs, the next button was advancing the install to the 
next dialog with a single click.  
I put in a small change to the install and the next button then needed two 
clicks in order to get the dialogs to advance. I backed out this change however 
the double click on the next button still stayed.

Once I get past this dialog and then backtrack (using the back buttons) and 
then come upon this dialog again, the next button only needs one click to 
advance, so this double click scenario only happens when the custom dialog is 
used for the first time.

I don't see any errors in the install log when I use the /l*v logging option on 
the msiexec.

Here is the code below ...

Publish Dialog=LicenseAgreementDlg Control=Back Event=NewDialog 
Value=WelcomeDlg1/Publish
Publish Dialog=LicenseAgreementDlg Control=Next Event=DoAction 
Value=GetListOfServers Order=1LicenseAccepted = 1/Publish
Publish Dialog=LicenseAgreementDlg Control=Next Event=DoAction 
Value=GetDomainUser Order=2LicenseAccepted = 1/Publish
Publish Dialog=LicenseAgreementDlg Control=Next Event=NewDialog 
Value=ServerSelectDialog Order=3LicenseAccepted = 1/Publish
  
Publish Dialog=ServerSelectDialog Control=Back Event=NewDialog 
Value=LicenseAgreementDlg Order =1/Publish
Publish Dialog=ServerSelectDialog Control=Next Event=DoAction 
Value=CheckForValidServerAddress Order 1/Publish


Server select dialog is the dialog that does not advance when the next button 
is clicked- only happens when the dialog appears for the first time. Once you 
hit the back button and come up on this dialog again, the dialog advances on 
the first click.

Publish Dialog=ServerSelectDialog Control=Next Event=DoAction 
Value=VerifySQLServerCapabiliites Order 
=2![CDATA[VALIDSERVERADDRESS=TRUE]]/Publish

Publish Dialog=ServerSelectDialog Control=Next Event=DoAction 
Value=IsLocalInstall Order =3![CDATA[VALIDSERVERADDRESS=TRUE AND 
HTSSQLVERSION=HTS_COMPATIBLE_VERIFIED AND 
USERCANCREATEDATABASE=TRUE]]/Publish

Publish Dialog=ServerSelectDialog Control=Next Event=NewDialog 
Value=CurrentUserCantCreateDatabaseDialog Order 
=4![CDATA[VALIDSERVERADDRESS=TRUE AND 
HTSSQLVERSION=HTS_COMPATIBLE_VERIFIED AND 
USERCANCREATEDATABASE=FALSE]]/Publish

Publish Dialog=ServerSelectDialog Control=Next Event=NewDialog 
Value=DatabaseUserAndServerPortDialog Order 
=5![CDATA[VALIDSERVERADDRESS=TRUE AND 
HTSSQLVERSION=HTS_COMPATIBLE_VERIFIED AND 
USERCANCREATEDATABASE=TRUE]]/Publish

Publish Dialog=ServerSelectDialog Control=Next Event=NewDialog 
Value=DatabaseVersionWarningDialog Order 
=6![CDATA[HTSSQLVERSION=HTS_COMPATIBLE_UNKNOWN OR 
VALIDSERVERADDRESS=FALSE]]/Publish

Publish Dialog=ServerSelectDialog Control=Cancel Event=SpawnDialog 
Value=CancelDlg Order =7/Publish



Publish Dialog=CurrentUserCantCreateDatabaseDialog Control=Cancel 
Event=SpawnDialog Value=CancelDlg Order =1/Publish 
Publish Dialog=DatabaseVersionWarningDialog Control=Back Event=NewDialog 
Value=ServerSelectDialog Order =1/Publish
Publish Dialog=DatabaseVersionWarningDialog Control=Cancel 
Event=SpawnDialog Value=CancelDlg Order =2/Publish

Publish Dialog=SqlServerNotInstalledDialog Control=Back Event=NewDialog 
Value=WelcomeDlg Order =1/Publish
Publish Dialog=SqlServerNotInstalledDialog Control=Cancel 
Event=SpawnDialog Value=CancelDlg Order =2/Publish

Publish Dialog=DatabaseUserAndServerPortDialog Control=Back 
Event=NewDialog Value=ServerSelectDialog Order =1/Publish
Publish Dialog=DatabaseUserAndServerPortDialog Control=Next 
Event=DoAction Value=VerifyDatabaseServerInstallConfig Order 
=11/Publish
Publish Dialog=DatabaseUserAndServerPortDialog Control=Next 
Event=NewDialog Value=InstallDirDlg Order 
=2![CDATA[DATABASESERVERINSTALLCONFIG=TRUE]]/Publish
Publish Dialog=DatabaseUserAndServerPortDialog Control=Next 
Event=NewDialog Value=ConfigWarningDialog Order 
=3![CDATA[DATABASESERVERINSTALLCONFIG=FALSE]]/Publish 
Publish Dialog=DatabaseUserAndServerPortDialog Control=Cancel 
Event=SpawnDialog Value=CancelDlg Order =4/Publish
  
Publish Dialog=ConfigWarningDialog Control=Back Event=NewDialog 
Value=DatabaseUserAndServerPortDialog Order =1/Publish
Publish Dialog=ConfigWarningDialog Control=Cancel Event=SpawnDialog 
Value=CancelDlg Order =2/Publish



Here is the code for the ServerSelect Dialog

  UI Id =ServerSelectDialog   
Dialog Id=ServerSelectDialog Width=370 Height=295 
Title=[ProductName] Setup
  Control Id=BannerBitmap Type=Bitmap X=0 Y=0 Width=370 
Height=44 TabSkip=no Text=!(loc.InstallDirDlgBannerBitmap) /
  Control Id=Title Type=Text X=15 Y=6 Width=200 Height=15 
Transparent=yes NoPrefix=yes Text={\WixUI_Font_Title} HTS Install /
  
  Control Id=Description1 Type=Text X=25 Y=23 Width=280 
Height=15 Transparent=yes NoPrefix=yes Text=SQL Server 

Re: [WiX-users] Admin check in Win 2008?

2010-02-22 Thread Tabmow

Hi Blair,
   Sorry about that - i had misunderstood what you meant.   Now i get it. 
I've now stopped defining MSIREALUSERADMINDETECTION and am testing for
privileged.   I've added a note in the introductory panel as you suggest.   
Now it works as you expect.

Thanks again!



Blair-2 wrote:
 
 That is exactly what I explained. With UAC on, the user token you launch
 the
 MSI with is not a member of Admins (the token you retrieve clicking the
 Continue button is). To compensate, Windows Installer considers everyone
 a
 member of Administrators (since UAC provides over-the-shoulder
 authorization) so that legacy installation packages will still work. A
 non-legacy installer that defines the MSIUSEREALADMINDETECTION property
 will
 get different behavior, which you are seeing.
 
 My personal opinion: In your introductory dialog, mention that
 administrator's privileges will be required to install this package. Don't
 define MSIUSEREALADMINDETECTION. Test for Privileged. Don't test for
 AdminUser. If the user proceeds through all of the screens but doesn't
 know
 an administrator's password, they were warned and no harm is otherwise
 done.
 
 

-- 
View this message in context: 
http://n2.nabble.com/Admin-check-in-Win-2008-tp4557002p4613760.html
Sent from the wix-users mailing list archive at Nabble.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] questions about installer speed and progress monitoring

2010-02-22 Thread Wilson, Phil
If these are client OS versions you may be getting a system restore checkpoint 
being created. You need MSI 5.0 and MSIFASTINSTALL to turn that off. 

Phil Wilson 

-Original Message-
From: Jacek Pospychała [mailto:jacek.pospych...@gmail.com] 
Sent: Monday, February 22, 2010 3:01 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] questions about installer speed and progress monitoring

Bob,
What kind of failures are handled by this rollback feature? Is it failure
like user pressing cancel during installation, or rather disk failure, or
privileges problem, or files conflict, or something else?
I'm trying to asses, how much I need it.

Is it possible to switch off that rollback and related bookkeeping?

Generally I'd prefer 90% of my users have faster install, rather than 1% of
them be able to use rollback when they need it.
Unless this rollback is used by more than 1% of the users... :-)

thanks
Jacek


On Sat, Feb 20, 2010 at 8:10 PM, Bob Arnson b...@joyofsetup.com wrote:

 On 2/19/2010 4:37 AM, Jacek Pospychała wrote:
  Do you know what extra does the installer do, that takes so much time?

 It supports rollback which entails extra bookkeeping to be able to
 restore files on failure.

  And
  does it make any change if I e.g. split it to more features, or more
  components.
 

 Not really.

 --
 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

--
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


[WiX-users] ODBCDataSource formatted strings for dynamic naming

2010-02-22 Thread Jake Boone
I am creating a System DSN in my installer using an Oracle ODBC
driver.  I am resolving the name and version of the driver with a
custom action (I have to loop through the Oracle registry hive,
otherwise I would have used RegistrySearch) during the
InstallUISequence before LaunchConditions.

The only problem seems to be that ODBCDataSource/@DriverName and the
nested Property/@Value are not formatted strings.  This is my existing
code:

  Component Id=DSN.ABC_ORACLE Guid=... Permanent=yes
ODBCDataSource Id=ODBCDSN Name=ABC_ORACLE
Registration=machine DriverName=[ORACLE_DRIVER_NAME]
  Property Id=DRIVER Value=[ORACLE_DRIVER_NAME]/
/ODBCDataSource
  /Component

This just attempts to create a DSN using a driver named
[ORACLE_DRIVER_NAME], which of course doesn't exist, instead of the
value of the property, which should be something like Oracle in
OraHome92.  (I verified the property is being set correctly.)

Is there another way to go about this, or will I have to create
another custom action to configure this DSN?

--
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] Appsearch for dword

2010-02-22 Thread Uma Harano
Hi,
I am performing an AppSearch for a dword reg key. I want to set another dword 
reg key to the dword value returned from the AppSearch.

But unfortunately, when the AppSearch finds the dword key, it returns it as #2 
(for instance if the dword were 2).
So the new reg key gets written as  REG_SZ, not a dword.

Is there any way I could fix this? (Without writing a custom action that parses 
off the #, etc)

Thanks!
Uma-
--
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] Harvest feature in WiX v3.5's Votive

2010-02-22 Thread Neil Sleightholm
I have just tried the new Harvest feature in WiX v3.5's Votive
(3.5.1419.0 and VS2008) and I get an error when building the project:

C:\Program Files (x86)\MSBuild\Microsoft\WiX\v3.5\Wix.targets(1403,7):
error MSB4064: The ProjectReferenceSourcePaths parameter is not
supported by the RefreshGeneratedFile task. Verify the parameter
exists on the task, and it is a settable public instance property.

C:\Program Files (x86)\MSBuild\Microsoft\WiX\v3.5\Wix.targets(1402,5):
error MSB4063: The RefreshGeneratedFile task could not be initialized
with its input parameters. 

 

Is this working for anyone else or should I raise a bug?

 

Neil

 

Neil Sleightholm
X2 Systems Limited
n...@x2systems.com mailto:n...@x2systems.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] missing install files

2010-02-22 Thread Mark Pietras
In short: when I install my newer msi package over an older existing install, 
the old files are deleted but are not replaced with their newer versions.  I 
end up with all overlapping files gone, and only newly-added files remain.  
For example:

Old WXS:

 Directory Id='folder_folder' Name='folder'
   Component Id='folder' Guid=''
 File Id='f1' Source='f1' /
 File Id='f2' Source='f2' /
 File Id='f3' Source='f3' /
   /Component
 /Directory

New WXS:

 Directory Id='folder_folder' Name='folder'
   Component Id='folder' Guid=''
 File Id='f1' Source='f1' /
 File Id='f2' Source='f2' /
 File Id='f3' Source='f3' /
 File Id='f4' Source='f4' /
 File Id='f5' Source='f5' /
   /Component
 /Directory

After installing new over old, my resulting folder only has f4 and f5... I've 
lost f1 f2 f3.

I understand now that I probably shouldn't have done it this way... based on 
what I'm reading it seems a component per file would have been the way to go 
but it wasn't clear at the time of initial creation that this would be an 
issue... didn't know to look for the solution of a problem I didn't know I had. 
 Anyway, I've read through a few similar threads and I honestly just don't get 
what the easiest way out of my situation is.  My old package has 30 or so 
directory components with lots of files and directories under each component.  
Of course now I have this old package installed in lots of customer 
locations.  My situation is further complicated by the fact that some customers 
have modified some resources and I don't want my update to overwrite anything 
they've changed by hand.

I've tried a few things, unsuccessfully:

1) tried simply changing the component Guid... no change in behavior... only 
the new files result.
2) tried changing RemoveExistingProducts After=InstallFinalize / to 
RemoveExistingProducts After=InstallInitialize /... which resulted in me 
getting all the files correctly, but customer-modified resources were gone.
3) tried adding Property Id='REINSTALLMODE' Value='amus'/... resulted in some 
behavior I didn't understand where all the feature options were X'd out... but 
selecting them to install still resulted in only new files.
4) tried making a component per file with all new Guids... that too resulted in 
only the new files.

Am I missing something basic I hope?  Any help appreciated in recovering from 
this situation and making it easier in the future.  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] Appsearch for dword

2010-02-22 Thread Wilson, Phil
How are you writing this registry entry? There's nothing explicit in the MSI 
file's registry table that says something is a dword or a string - it's in the 
value. If you write #2 to the registry Windows Installer will create it as a 
dword. If you prefix it with #x it will create it as binary. So that's why I'm 
wondering how you are writing this item to the registry.  It looks to me that 
somebody has code somewhere that is parsing #2 and deciding it's a string, but 
that isn't what Windows Installer would do. 

Phil Wilson 


-Original Message-
From: Uma Harano [mailto:uhar...@esri.com] 
Sent: Monday, February 22, 2010 12:58 PM
To: General discussion for Windows Installer XML toolset.
Subject: [WiX-users] Appsearch for dword

Hi,
I am performing an AppSearch for a dword reg key. I want to set another dword 
reg key to the dword value returned from the AppSearch.

But unfortunately, when the AppSearch finds the dword key, it returns it as #2 
(for instance if the dword were 2).
So the new reg key gets written as  REG_SZ, not a dword.

Is there any way I could fix this? (Without writing a custom action that parses 
off the #, etc)

Thanks!
Uma-
--
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] Appsearch for dword

2010-02-22 Thread Uma Harano
My MSI is writing the reg key initially as #[Property]
Hence the problem.
Because after appsearch it is ##

Thanks a LOT.
Uma-

-Original Message-
From: Wilson, Phil [mailto:phil.wil...@invensys.com] 
Sent: Monday, February 22, 2010 1:42 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Appsearch for dword

How are you writing this registry entry? There's nothing explicit in the MSI 
file's registry table that says something is a dword or a string - it's in the 
value. If you write #2 to the registry Windows Installer will create it as a 
dword. If you prefix it with #x it will create it as binary. So that's why I'm 
wondering how you are writing this item to the registry.  It looks to me that 
somebody has code somewhere that is parsing #2 and deciding it's a string, but 
that isn't what Windows Installer would do. 

Phil Wilson 


-Original Message-
From: Uma Harano [mailto:uhar...@esri.com] 
Sent: Monday, February 22, 2010 12:58 PM
To: General discussion for Windows Installer XML toolset.
Subject: [WiX-users] Appsearch for dword

Hi,
I am performing an AppSearch for a dword reg key. I want to set another dword 
reg key to the dword value returned from the AppSearch.

But unfortunately, when the AppSearch finds the dword key, it returns it as #2 
(for instance if the dword were 2).
So the new reg key gets written as  REG_SZ, not a dword.

Is there any way I could fix this? (Without writing a custom action that parses 
off the #, etc)

Thanks!
Uma-
--
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


--
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] Harvest feature in WiX v3.5's Votive

2010-02-22 Thread Rob Mensching
Probably best to open a bug. This worked for me when I tested it so as much
detail as you can provide would be helpful.

On Mon, Feb 22, 2010 at 1:31 PM, Neil Sleightholm n...@x2systems.comwrote:

 I have just tried the new Harvest feature in WiX v3.5's Votive
 (3.5.1419.0 and VS2008) and I get an error when building the project:

 C:\Program Files (x86)\MSBuild\Microsoft\WiX\v3.5\Wix.targets(1403,7):
 error MSB4064: The ProjectReferenceSourcePaths parameter is not
 supported by the RefreshGeneratedFile task. Verify the parameter
 exists on the task, and it is a settable public instance property.

 C:\Program Files (x86)\MSBuild\Microsoft\WiX\v3.5\Wix.targets(1402,5):
 error MSB4063: The RefreshGeneratedFile task could not be initialized
 with its input parameters.



 Is this working for anyone else or should I raise a bug?



 Neil



 Neil Sleightholm
 X2 Systems Limited
 n...@x2systems.com mailto:n...@x2systems.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




-- 
virtually, Rob Mensching - http://RobMensching.com LLC
--
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] Adding a user to IIS_WPG

2010-02-22 Thread Glen Cooper
I've used the following snippet to overcome this for an installer that will
work on both 2003 and 2008

Property Id=IISWPGroupName Value=IIS_WPG/

Property Id=IISVERSIONMAJOR Value=#0 Secure=yes
  RegistrySearch Id=SearchRegIISVERSIONMAJOR
Root=HKLM
Key=Software\Microsoft\InetStp
Name=MajorVersion
Type=raw /
/Property
SetProperty Id=IISWPGroupName After=CostFinalize
Value=IIS_IUSRSIISVERSIONMAJOR=#7/SetProperty

u:Group Id=IISWPGroup Name=[IISWPGroupName]/

On Mon, Feb 22, 2010 at 1:49 PM, Zane Zeeh zane.z...@quest.com wrote:

 I'm trying to add users to the IIS_WPG group. The following line works fine
 in Windows 2003 but fails in Windows 2008.

 Util:Group Id=IIS_WPG Name=IIS_WPG

 I know the group does not exist on a Windows 2008 server, how can I make
 this conditional on the OS version?


 --
 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




-- 
Glen Cooper
(425) 522-3013
--
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] missing install files

2010-02-22 Thread Blair
The easiest way out is to move the RemoveExistingProducts action to be
before InstallInitialize. However, there are situations where that doesn't
seem to work, and it carries (sometimes significant) upgrade costs.

Any better solution would involve a good in-depth analysis which is best
done one-on-one and involves a time commitment because recovering from
component rule violations for already released products has few good
solutions and many severe limitations and have to be reviewed case-by-case
since each possible rule-of-thumb has side effects that are often subtle.
Maybe now would be a good time to get that book on Windows Installer written
(but where will I find the time?).

-Original Message-
From: Mark Pietras [mailto:mpiet...@yahoo.com] 
Sent: Monday, February 22, 2010 1:39 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] missing install files

In short: when I install my newer msi package over an older existing
install, the old files are deleted but are not replaced with their newer
versions.  I end up with all overlapping files gone, and only newly-added
files remain.  For example:

Old WXS:

 Directory Id='folder_folder' Name='folder'
   Component Id='folder' Guid=''
 File Id='f1' Source='f1' /
 File Id='f2' Source='f2' /
 File Id='f3' Source='f3' /
   /Component
 /Directory

New WXS:

 Directory Id='folder_folder' Name='folder'
   Component Id='folder' Guid=''
 File Id='f1' Source='f1' /
 File Id='f2' Source='f2' /
 File Id='f3' Source='f3' /
 File Id='f4' Source='f4' /
 File Id='f5' Source='f5' /
   /Component
 /Directory

After installing new over old, my resulting folder only has f4 and f5...
I've lost f1 f2 f3.

I understand now that I probably shouldn't have done it this way... based on
what I'm reading it seems a component per file would have been the way to go
but it wasn't clear at the time of initial creation that this would be an
issue... didn't know to look for the solution of a problem I didn't know I
had.  Anyway, I've read through a few similar threads and I honestly just
don't get what the easiest way out of my situation is.  My old package has
30 or so directory components with lots of files and directories under each
component.  Of course now I have this old package installed in lots of
customer locations.  My situation is further complicated by the fact that
some customers have modified some resources and I don't want my update to
overwrite anything they've changed by hand.

I've tried a few things, unsuccessfully:

1) tried simply changing the component Guid... no change in behavior... only
the new files result.
2) tried changing RemoveExistingProducts After=InstallFinalize / to
RemoveExistingProducts After=InstallInitialize /... which resulted in me
getting all the files correctly, but customer-modified resources were gone.
3) tried adding Property Id='REINSTALLMODE' Value='amus'/... resulted in
some behavior I didn't understand where all the feature options were X'd
out... but selecting them to install still resulted in only new files.
4) tried making a component per file with all new Guids... that too resulted
in only the new files.

Am I missing something basic I hope?  Any help appreciated in recovering
from this situation and making it easier in the future.  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


--
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] Passing parameter through script

2010-02-22 Thread Rahul.Ekbote
Hi,

I want to pass license key parameter through silent installation. 

 

1)  In our installer we are taking license key from user.

2)  For internally we are doing silent installation (using .bat
file)

3)  However in this case the license key that we are storing in
registry becomes  (empty)

So how can I pass license key parameter to installer though my silent
installation or though command line.

 

 

 

Thanks,

Rahul Ekbote

 

--
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] Creating desktop and start menu shortcuts

2010-02-22 Thread Alex Wernecke
App.exe is present there in INSTALLOCACTION. Thanks got it working

-Original Message-
From: ricky sundrani [mailto:rickysundr...@gmail.com] 
Sent: Monday, February 22, 2010 1:07 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Creating desktop and start menu shortcuts

1)For the startmenu shortcut you need to list ProgramMenuDir into the
RemoveFolder table.

see the link:
http://robmensching.com/blog/posts/2007/4/27/How-to-create-an-uninstall-
shortcut-and-pass-all-the
2) The purpose of creating a registry entry under HKCU is to use it as a
keypath to keep ICE happy, but you have not set the keypath=Yes for both
the
registryValue elements.

The code for shoortcut seems to be correct,depending on the directory
hierarchy you are using.
Target=[INSTALLOCATION]App.exe
Is the App.exe present in the INSTALLLOCATION or some nested folder.?





On Mon, Feb 22, 2010 at 12:43 PM, Alex Wernecke
awerne...@finteq.co.zawrote:

 Hi,



 I'm having some trouble successdully creating shortcuts on the desktop
 and in the start menu.  Here is my code :



 !--desktop shortcut--

 Component Id=DesktopShortcut
 Guid=D92F6731-4EB0-4707-A71A-BB02DEA46689

   CreateFolder/

   RegistryKey Root=HKCU Key=Software\Company\Application\Install
 Action=createAndRemoveOnUninstall

 RegistryValue Name=App Value=1 Type=integer/

   /RegistryKey

   Shortcut Id=DesktopShortcut Directory=DesktopFolder
 Name=App.ico WorkingDirectory=INSTALLOCATION Icon=App.ico
 Target=[INSTALLOCATION]App.exe

  Icon Id=App.ico SourceFile=Files\App.ico/

   /Shortcut

 /Component





 !--startmenu shortcut--

 Component Id=ProgramFilesShortcut
 Guid=0FA5BEEC-C72D-44c7-9E27-44C16A26F025

CreateFolder/

RegistryKey Root=HKCU Key=Software\Company\Application\Install
 Action=createAndRemoveOnUninstall

   RegistryValue Name=app1 Value=1 Type=integer/

/RegistryKey

Shortcut Id=ProgramFilesShortcut Directory=ProgramMenuDir
 Name=App.ico WorkingDirectory=INSTALLOCATION Icon=App.ico
 Target=[INSTALLOCATION]App.exe

   Icon Id=App.ico SourceFile=Files\App.ico/

/Shortcut

 /Component



 The desktop shortcut appears but the target is wrong. The start menu
 shortcut just doesn't seem to work.



 Many thanks,



 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




-- 
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
 

__ Information from ESET Smart Security, version of virus
signature database 4886 (20100222) __

The message was checked by ESET Smart Security.

http://www.eset.com
  

__ Information from ESET Smart Security, version of virus
signature database 4888 (20100222) __

The message was checked by ESET Smart Security.

http://www.eset.com
 
 

__ Information from ESET Smart Security, version of virus
signature database 4888 (20100222) __

The message was checked by ESET Smart Security.

http://www.eset.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] costfinalizse returning 1603

2010-02-22 Thread Eswari
Hi,

I have created msm using wix. but when i am running the below command 
msidoaction(handle,CostFinalize) it is returning 1603 error.  What did i 
missed in my merge module?

Regards, Eswari


  

--
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] unsubscribe

2010-02-22 Thread Rammurthi Buddha

--
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] Adding a user to IIS_WPG

2010-02-22 Thread Neil Sleightholm
If have noticed this when swapping between OS versions, I think you may
need to include the local computer name so that it doesn't assume it is
a domain account e.g. COMPUTERNAME\IIS_WPG. 

Neil

-Original Message-
From: Zane Zeeh [mailto:zane.z...@quest.com] 
Sent: 22 February 2010 21:49
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Adding a user to IIS_WPG

I'm trying to add users to the IIS_WPG group. The following line works
fine in Windows 2003 but fails in Windows 2008.

Util:Group Id=IIS_WPG Name=IIS_WPG

I know the group does not exist on a Windows 2008 server, how can I make
this conditional on the OS version?


--
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] Harvest feature in WiX v3.5's Votive

2010-02-22 Thread Neil Sleightholm
Will do, I have subsequently discovered that I get the same error when
building any wixproj. So it is not specifically related to harvesting a
project.

Neil

-Original Message-
From: Rob Mensching [mailto:r...@robmensching.com] 
Sent: 22 February 2010 22:08
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Harvest feature in WiX v3.5's Votive

Probably best to open a bug. This worked for me when I tested it so as
much
detail as you can provide would be helpful.

On Mon, Feb 22, 2010 at 1:31 PM, Neil Sleightholm
n...@x2systems.comwrote:

 I have just tried the new Harvest feature in WiX v3.5's Votive
 (3.5.1419.0 and VS2008) and I get an error when building the project:

 C:\Program Files (x86)\MSBuild\Microsoft\WiX\v3.5\Wix.targets(1403,7):
 error MSB4064: The ProjectReferenceSourcePaths parameter is not
 supported by the RefreshGeneratedFile task. Verify the parameter
 exists on the task, and it is a settable public instance property.

 C:\Program Files (x86)\MSBuild\Microsoft\WiX\v3.5\Wix.targets(1402,5):
 error MSB4063: The RefreshGeneratedFile task could not be
initialized
 with its input parameters.



 Is this working for anyone else or should I raise a bug?



 Neil



 Neil Sleightholm
 X2 Systems Limited
 n...@x2systems.com mailto:n...@x2systems.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




-- 
virtually, Rob Mensching - http://RobMensching.com LLC

--
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] Passing parameter through script

2010-02-22 Thread Rahul.Ekbote
Got the solution.

msiexec /i IniTest.msi /quiet PIDKEY=Key through command line
parameter


Thanks,
Rahul.


-Original Message-
From: rahul.ekb...@sungard.com [mailto:rahul.ekb...@sungard.com] 
Sent: Tuesday, February 23, 2010 12:11 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Passing parameter through script

Hi,

I want to pass license key parameter through silent installation. 

 

1)  In our installer we are taking license key from user.

2)  For internally we are doing silent installation (using .bat
file)

3)  However in this case the license key that we are storing in
registry becomes  (empty)

So how can I pass license key parameter to installer though my silent
installation or though command line.

 

 

 

Thanks,

Rahul Ekbote

 


--
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