[WiX-users] ICE82 with Merge Module

2007-08-31 Thread Cristian Baiu
Hello all,

I'm building a setup program and a merge module using Wix.
In my merge module I am referencing ProgramFilesFolder - I want to
install something in Program Files\Common Files\MyCompany.In my main
setup program I am also referencing ProgramFilesFolder - I want to
install something in Program Files\MyCompany\MyProduct. Same story for
CommonFilesFolder and CommonAppDataFolder.
In my main setup I reference the module defined by my MSM having
parent DirectoryRef Id=CommonAppDataFolder.
When I build the setup program I get ICE82 warnings like: light.exe :
warning LGHT1076: ICE82: This action ProgramFilesFolder.4970B713_F7C
B_4D61_B40B_4612256BA1FC has duplicate sequence number 1 in the table AdvtExecut
eSequence.
When I look inside AdvtExecuteSequence, AdminUISequence,
AdminExecuteSequence, InstallExecuteSequence, InstallUISequence they
all define : CommonFilesFolder.MSM_GUID, ProgramFilesFolder.MSM_GUID,
CommonAppDataFolder.MSM_GUID all having sequence 1.

Can you please tell me if there is someting wrong with what I've done
and how should I do it correctly in order to avoid this warning ?

Regards,
Cristian.

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Network install - group policy: problem assigning to user.

2007-08-31 Thread Ujesh

Hi:
I think there is some issue with ur Group policy settings.
As far as i knw there is no issue with Wix since i have installed my sample
MSI (generated from Wix file) using Group policy settings.




OneReallyCoolApplication wrote:
 
 Hi, I am trying to install a WIX-built MSI package to network users using
 Windows Server 2003's Group Policy Object Editor. I can publish to a user
 and assign to a computer, but cannot assign to a user - the OS does not
 display any sort of message and nothing appears in Add and Remove
 Programs. Is there something that I can do in WiX to resolve this, maybe a
 property that I need to set? (I'm not sure if this is relevant to WiX, but
 thought it was worth a try). Thanks. 
 

-- 
View this message in context: 
http://www.nabble.com/Network-install---group-policy%3A-problem-assigning-to-user.-tf4357243.html#a12421706
Sent from the wix-users mailing list archive at Nabble.com.


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Remove section using XMLConfig

2007-08-31 Thread Stefan Pavlik
I found the solution:

XML file:
?xml version=1.0?
dpInst
  search
subDirectoryDirOne/subDirectory
subDirectoryDirTwo/subDirectory
  /search
  suppressAddRemovePrograms/
  quietInstall/
/dpInst

To remove the line
subDirectoryDirTwo/subDirectory
you need to write the XMLConfig in following way:

File Id='XmlSettings' Name='dpinst.xml' DiskId='1' /
XmlConfig Id='RemoveOneLine'
   File='[#XmlSettings]  '
   Action='delete'
   ElementPath='//dpInst/search'
   VerifyPath='subDirectory[/[].=DirTwo[/]]'
   Node='element'
   On='install'
   Sequence='1' /

Hope that it will help somebody...

Stefan


-- 
Stefan Pavlik | [EMAIL PROTECTED]
Whitestein Technologies s.r.o. | www.whitestein.com
Panenska 28 | 811 03 Bratislava | Slovak Republic
Main +421 2 5443-5502 | Direct +421 2 5930-0735

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Remove section using XMLConfig

2007-08-31 Thread Stefan Pavlik
And again - of course you need to use
 VerifyPath='subDirectory[\[].=DirTwo[\]]'

The \ is escape character (not /).

Stefan Pavlik wrote:
 I found the solution:
 
 XML file:
 ?xml version=1.0?
 dpInst
   search
 subDirectoryDirOne/subDirectory
 subDirectoryDirTwo/subDirectory
   /search
   suppressAddRemovePrograms/
   quietInstall/
 /dpInst
 
 To remove the line
 subDirectoryDirTwo/subDirectory
 you need to write the XMLConfig in following way:
 
 File Id='XmlSettings' Name='dpinst.xml' DiskId='1' /
 XmlConfig Id='RemoveOneLine'
File='[#XmlSettings]  '
Action='delete'
ElementPath='//dpInst/search'
VerifyPath='subDirectory[/[].=DirTwo[/]]'
  Node='element'
On='install'
Sequence='1' /
 
 Hope that it will help somebody...
 
 Stefan
 
 

-- 
Stefan Pavlik | [EMAIL PROTECTED]
Whitestein Technologies s.r.o. | www.whitestein.com
Panenska 28 | 811 03 Bratislava | Slovak Republic
Main +421 2 5443-5502 | Direct +421 2 5930-0735

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Associating Icons to File Types

2007-08-31 Thread Thomas Leigh
Just create a few registry entries: 
http://msdn2.microsoft.com/en-us/library/aa969377.aspx


From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dan Beall
Sent: 30 August 2007 17:34
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Associating Icons to File Types

Can anybody point me to instructions for:


(1) Associating an icon to a particular file type

(2)Launching the application to which that file type is associated when the 
icon is double-clicked

Thanks!
Dan
-- This message has been scanned for viruses by Sophos PureMessage.
-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Password in the msi logs

2007-08-31 Thread Pallavi Patrutkar
Hello,

 

In this case, I am facing a problem. In spite of me putting Hidden=yes
for my password property, password gets printed in the log file if it is
passed as a parameter to DLL through a custom action. I have set
HideTarget=yes for this custom action, still it displays the password.

 

Am I missing out on anything?

 

Thank you,

 

Regards,

Pallavi.

 



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Dana
Gutride
Sent: Thursday, June 07, 2007 1:12 AM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Password in the msi logs

 

You can set this in WiX by setting Hidden=yes in the Property Element.

Dana

On 6/6/07, Aaron Shurts [EMAIL PROTECTED] wrote:

Add the property name to MsiHiddenProperties property.  This is a
semi-colon delimited list of properties whose values you do not want
written to the log.

http://msdn2.microsoft.com/en-us/library/aa370308.aspx

Regards,
//aj

On 6/6/07, Don Tasanasanta  [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]  wrote:

In my install UI I ask for a password and store it in a property. If
someone runs the install with logging turned on that property is found
in several places in the log along with the unprotected password. Is
there any way to prevent this? 



-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now. 
http://sourceforge.net/powerbar/db2/
___
WiX-users mailing list 
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users




-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now. 
http://sourceforge.net/powerbar/db2/
___
WiX-users mailing list 
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] force upgrade

2007-08-31 Thread Frédéric Viollet
Hi everyone,

is there a way to force an upgrade even if the version I'm want to 
install is already installed?
I'm using the bootstrapping possibility offered by Wix to generate a 
executable file (setupbld). The options I use are mcpsu.
At the moment, if I double click on the setup file and that the 
product's version is already installed, nothing happens. There isn't 
even a notification to tell that the installation won't start because 
the product is already up to date. What I would like is start the 
installation process even if I'm trying to install the same version.
Is this possible?

Thanks for your help.

Fred

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] force upgrade

2007-08-31 Thread Frédéric Viollet

I forgot to say : I'm using WixV3 3.0.2420.0

Frédéric Viollet a écrit :

Hi everyone,

is there a way to force an upgrade even if the version I'm want to 
install is already installed?
I'm using the bootstrapping possibility offered by Wix to generate a 
executable file (setupbld). The options I use are mcpsu.
At the moment, if I double click on the setup file and that the 
product's version is already installed, nothing happens. There isn't 
even a notification to tell that the installation won't start because 
the product is already up to date. What I would like is start the 
installation process even if I'm trying to install the same version.

Is this possible?

Thanks for your help.

Fred

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

  


begin:vcard
fn;quoted-printable:Fr=C3=A9d=C3=A9ric Viollet
n;quoted-printable:Viollet;Fr=C3=A9d=C3=A9ric
org:Bull, Architect of an Open World (TM);Evidian S.A.
adr;quoted-printable:;;Rue Jean Jaur=C3=A8s;Les Clayes Sous Bois;;78340;France
email;internet:[EMAIL PROTECTED]
title:Software Engineer
tel;work:01 30 80 77 34
url:http://www.evidian.com - http://www.bull.com
version:2.1
end:vcard

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] To register product at the end of installation

2007-08-31 Thread Anidil

What is the best way of doing this? Should i be launching internet explorer
from the installer?
-- 
View this message in context: 
http://www.nabble.com/To-register-product-at-the-end-of-installation-tf4359762.html#a12425173
Sent from the wix-users mailing list archive at Nabble.com.


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Associating Icons to File Types

2007-08-31 Thread John Hall
 

Can anybody point me to instructions for:

 

(1) Associating an icon to a particular file type

(2)Launching the application to which that file type is
associated when the icon is double-clicked

Dan,

 

Here is some example XML taken from one of my products (it's WiX 3.0,
but should be adaptable for v2):

Component Id=FileTypes.BSDL Guid=...
  File Id=bsdl.ico Name=BSDL.ico /

  RegistryValue Id=Reg.Extn.BSD  Root=HKCR Key=.bsd
Value=BSDLfile Type=string /
  RegistryKey Id=Reg.Class.BSDL Root=HKCR Key=BSDLfile
Action=createAndRemoveOnUninstall
RegistryValue Id=Reg.Class.BSDL.Value Value=BSDL File
Type=string /
RegistryValue Id=Reg.Class.BSDL.Icon Key=DefaultIcon
Value=[#bsdl.ico],0 Type=string /
  /RegistryKey
/Component

I have my icon for the filetype in an icon file, but you could reference
an exe or dll that you've installed instead.

 

Regards,

John

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Create Hardlink with WiX

2007-08-31 Thread David Stindl
Hallo all,
does anybody know, if it's possible to create Hardlink on Win XP
filesystem with WiX installation? Thanks a lot for your help...
  David.

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Bug? InstallCertificates called when it shouldn't be?

2007-08-31 Thread John Hancock (HSG)
I'm working in Wix v3, and I've got a conditional component that is supposed to 
install a certificate when the property CERTIFICATEPATH is set, but I'm running 
into problems because InstallCertificates seems to be called regardless of 
whether the component with the certificate is installed. InstallCertificates 
then fails installing with the invalid data. This seems like a bug that 
InstallCertificates is being called even though its component was not supposed 
to be installed.

The component definition:

  Component Id=CertificateComponent Guid=MY-GUID KeyPath=yes
ConditionInstalled OR CERTIFICATEPATH/Condition
iis:Certificate Id=SSLcertificate Name=MySSLCertificate 
CertificatePath=[CERTIFICATEPATH] Request=no 
PFXPassword=[CERTIFICATEPASSWORD] StoreLocation=localMachine 
StoreName=personal/
  /Component


It looks like the installer decided it doesn't need to install the component:
MSI (s) (88:74) [09:19:35:063]: Component: CertificateComponent; Installed: 
Absent;   Request: Local;   Action: Null

But then the InstallCertificates action is still called with the certificate 
data from that component (tries to resolve SSLCertificate) and the 
installation fails (see below log).
If I remove the component from the package entirely, everything goes OK.

MSI (s) (88:74) [09:19:35:854]: Doing action: InstallCertificates
Action 9:19:35: InstallCertificates.
Action start 9:19:35: InstallCertificates.
MSI (s) (88:74) [09:19:35:864]: Creating MSIHANDLE (30) of type 790542 for 
thread 3188
MSI (s) (88:74) [09:19:35:864]: Invoking remote custom action. DLL: 
C:\WINNT\Installer\MSI72.tmp, Entrypoint: InstallCertificates
MSI (s) (88!F4) [09:19:36:085]: Creating MSIHANDLE (31) of type 790541 for 
thread 3060
MSI (s) (88!F4) [09:19:36:085]: Creating MSIHANDLE (32) of type 790531 for 
thread 3060
MSI (s) (88!F4) [09:19:36:085]: Closing MSIHANDLE (32) of type 790531 for 
thread 3060
MSI (s) (88!F4) [09:19:36:085]: Creating MSIHANDLE (33) of type 790540 for 
thread 3060
MSI (s) (88!F4) [09:19:36:085]: Creating MSIHANDLE (34) of type 790531 for 
thread 3060
MSI (s) (88!F4) [09:19:36:085]: Creating MSIHANDLE (35) of type 790531 for 
thread 3060
MSI (s) (88!F4) [09:19:36:085]: Closing MSIHANDLE (35) of type 790531 for 
thread 3060
MSI (s) (88!F4) [09:19:36:085]: Creating MSIHANDLE (36) of type 790531 for 
thread 3060
MSI (s) (88!F4) [09:19:36:085]: Closing MSIHANDLE (36) of type 790531 for 
thread 3060
MSI (s) (88!F4) [09:19:36:085]: Creating MSIHANDLE (37) of type 790531 for 
thread 3060
MSI (s) (88!F4) [09:19:36:085]: Closing MSIHANDLE (37) of type 790531 for 
thread 3060
MSI (s) (88!F4) [09:19:36:085]: Creating MSIHANDLE (38) of type 790531 for 
thread 3060
InstallCertificates:  Error 0x80070003: Failed to read PFX file:
MSI (s) (88!F4) [09:19:36:085]: Closing MSIHANDLE (38) of type 790531 for 
thread 3060
MSI (s) (88!F4) [09:19:36:085]: Creating MSIHANDLE (39) of type 790531 for 
thread 3060
InstallCertificates:  Error 0x80070003: Failed to read certificate from file 
path.
MSI (s) (88!F4) [09:19:36:085]: Closing MSIHANDLE (39) of type 790531 for 
thread 3060
MSI (s) (88!F4) [09:19:36:085]: Creating MSIHANDLE (40) of type 790531 for 
thread 3060
InstallCertificates:  Error 0x80070003: Failed to resolve certificate: 
SSLcertificate
MSI (s) (88!F4) [09:19:36:085]: Closing MSIHANDLE (40) of type 790531 for 
thread 3060
MSI (s) (88!F4) [09:19:36:085]: Closing MSIHANDLE (34) of type 790531 for 
thread 3060
MSI (s) (88!F4) [09:19:36:085]: Closing MSIHANDLE (33) of type 790540 for 
thread 3060
MSI (s) (88!F4) [09:19:36:085]: Closing MSIHANDLE (31) of type 790541 for 
thread 3060
MSI (s) (88:74) [09:19:36:085]: Closing MSIHANDLE (30) of type 790542 for 
thread 3188
Action ended 9:19:36: InstallCertificates. Return value 3.
-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] To goto prod. reg. website at the end of installation

2007-08-31 Thread Anidil

How do i customize my ExitDialog UI dialog (Last UI Dialog) to include a
checkbox which takes the user to product registration url when clicked
Finish
-- 
View this message in context: 
http://www.nabble.com/To-goto-prod.-reg.-website-at-the-end-of-installation-tf4360326.html#a12427023
Sent from the wix-users mailing list archive at Nabble.com.


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] To goto prod. reg. website at the end of installation

2007-08-31 Thread Calin Iaru

I used a custom action which is triggered when pressing the Finish button.  
The action is launched if the checkbox is selected.

On Fri, 31 Aug 2007 16:05:19 +0200, Anidil [EMAIL PROTECTED] wrote:


 How do i customize my ExitDialog UI dialog (Last UI Dialog) to include a
 checkbox which takes the user to product registration url when clicked
 Finish

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] MSI building problem...

2007-08-31 Thread Schrieken, Rene
The .msm files are merge files. They contain prepackaged components and add 
stuff needed by your msi. 



From: [EMAIL PROTECTED] on behalf of V K Gangwar
Sent: Fri 8/31/2007 17:02
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] MSI building problem...


Hello All,

I have a .msi package which is developed on MS visual studio 2005. When I open 
that project on MS studio2005, I am seeing two files having extension .msm. 
These files are not there in project codebase. When I try to build these files 
are giving errors. When I exclude these files I am able to build. From where I 
am getting these two files and what is the purpose of these files.

regards,
Veerendra




Park yourself in front of a world of choices in alternative vehicles.
Visit the Yahoo! Auto Green Center. 
http://us.rd.yahoo.com/evt=48246/*http://autos.yahoo.com/green_center/;_ylc=X3oDMTE5cDF2bXZzBF9TAzk3MTA3MDc2BHNlYwNtYWlsdGFncwRzbGsDZ3JlZW4tY2VudGVy
 


This e-mail and any attachment is for authorised use by the intended 
recipient(s) only. It may contain proprietary material, confidential 
information and/or be subject to legal privilege. It should not be copied, 
disclosed to, retained or used by, any other party. If you are not an intended 
recipient then please promptly delete this e-mail and any attachment and all 
copies and inform the sender. Thank you.
-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Better XML coding

2007-08-31 Thread Schrieken, Rene
 '...in the wix source file...'   would indicate that you now have only one wxs 
file? You can have more than one wxs file.



From: [EMAIL PROTECTED] on behalf of Pierson Lee (Volt)
Sent: Fri 8/31/2007 17:49
To: Anidil; wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Better XML coding



Depends if you're using a standard UI or if you customized it. If you're using 
a standard one, I'd use the wixlib, if you customized it, you are going to have 
to include it in the wix source.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Anidil
Sent: Friday, August 31, 2007 8:47 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Better XML coding


is it better to include the installer UI XML codes in the wix source file
instead of using the wixui.wixlib during the link time? Which is the
recommended method?
--
View this message in context: 
http://www.nabble.com/Better-XML-coding-tf4360942.html#a12429018
Sent from the wix-users mailing list archive at Nabble.com.


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users




This e-mail and any attachment is for authorised use by the intended 
recipient(s) only. It may contain proprietary material, confidential 
information and/or be subject to legal privilege. It should not be copied, 
disclosed to, retained or used by, any other party. If you are not an intended 
recipient then please promptly delete this e-mail and any attachment and all 
copies and inform the sender. Thank you.
-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Decompiling .msi through MS Visual Studio 2005

2007-08-31 Thread Schrieken, Rene
There isn't. 



From: [EMAIL PROTECTED] on behalf of V K Gangwar
Sent: Fri 8/31/2007 16:53
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Decompiling .msi through MS Visual Studio 2005


Hello,

Is there any way to decompile .msi file in MS Visual Studio 2005 instead of 
doing on Command Line (using dark).

thanks!!

Regards,
Veerendra




Moody friends. Drama queens. Your life? Nope! - their life, your story.
Play Sims Stories at Yahoo! Games. 
http://us.rd.yahoo.com/evt=48224/*http://sims.yahoo.com/ 


This e-mail and any attachment is for authorised use by the intended 
recipient(s) only. It may contain proprietary material, confidential 
information and/or be subject to legal privilege. It should not be copied, 
disclosed to, retained or used by, any other party. If you are not an intended 
recipient then please promptly delete this e-mail and any attachment and all 
copies and inform the sender. Thank you.
-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Create Hardlink with WiX

2007-08-31 Thread Christopher Painter
I am curious what user stories drive this requirement as I've never written an 
install that needed this.  I usually see ( and usually symbolic) links in Unix 
and very rarely in Windows environments.

Mark Johnson [EMAIL PROTECTED] wrote:   
Let me know if you create a custom action for creating hardlinks, I sure
could use that too!


David Stindl wrote:
 
 Hallo all,
 does anybody know, if it's possible to create Hardlink on Win XP
 filesystem with WiX installation? Thanks a lot for your help...
 David.
 
 -
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems? Stop.
 Now Search log events and configuration files using AJAX and a browser.
 Download your FREE copy of Splunk now  http://get.splunk.com/
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users
 
 

-- 
View this message in context: 
http://www.nabble.com/Create-Hardlink-with-WiX-tf4360207.html#a12429420
Sent from the wix-users mailing list archive at Nabble.com.


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now  http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


   
-
Need a vacation? Get great deals to amazing places on Yahoo! Travel. -
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Create Hardlink with WiX

2007-08-31 Thread Oliver Schneider
To create hardlinks on pre-W2K *and* later, use MoveFileEx() with
MOVEFILE_CREATE_HARDLINK ... works like a charm since NT 4.0 ;)

Alternatively, if it makes you feel bad to use undocumented features,
use CreateHardLink() on W2K and later.

Mark Johnson wrote:
 Let me know if you create a custom action for creating hardlinks, I sure
 could use that too!

-- 
Oliver Schneider

Researcher / Developer

FRISK Software International
Thverholti 18
IS-105 Reykjavik
Iceland

+354 540 7400

http://www.f-prot.com | http://forum.f-prot.com

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users