Re: [WiX-users] How to hide a file in WXS configuration file ?

2014-10-13 Thread Michael Turner
Fabrice,

I think you may be confusing *build-time* source paths (on your machine)
with *run-time* destination paths (potentially on a different machine).  The
only mention of "app\resources" that I see in your code snippet is here:

   

This means that when your installer is built, it takes the file from
app\resources\_dt.xsl on your machine (or the machine where the installer is
built), and puts it in the MSI package.  The "app\resources\_dt.xls" path
tells the WiX toolset where to find this file, to embed it into the MSI
package at "build time", but that is the end of that path's involvement.

Then, when the MSI package is installed (at "run time"), it takes the
_dt.xsl file that is now stored in the MSI package's embedded "CAB", and
installs it to the directory specified by APPLICATIONFOLDER, because that is
the Directory of MyFileId's Component.  The MSI package does not know about
the original "app\resources" source path at this point, as its involvement
ended when the MSI package was built.

Next, MyFileCopyId says to take the same _dt.xsl that it previously
installed to APPLICATIONFOLDER, and install another copy of it to
DestinationDirectory="APPLICATIONFOLDER".  But the MSI runtime detects that
those paths are the same (it is saying to copy the file to *itself*), so it
does nothing.

Now, in the scenario where you build the MSI package and install it *on the
same machine*, the end result (on a superficial level) looks the same as if
you had copied the file from your "app\resources" source path to the
"APPLICATIONFOLDER" destination path, but that is not precisely what
happens:  this is not a *direct* copy-and-paste from the source folder to
the destination folder.  Rather, the file is read from the source path,
embedded in a package, (at this point the package could be distributed to a
different machine), read from the package, and installed to a destination
folder -- and there is a great deal more going on behind the scenes,
including the support for the "resiliency repair" that Phil mentioned.


So unless you have defined an "app\resources" *destination* folder structure
(i.e., with Directory elements in the WiX markup) that you didn't show in
your code snippet, or unless you are trying to copy and/or move an
app\resources\_dt.xsl file that *already existed* on the destination machine
(instead of packaging and delivering your own _dt.xsl), then I don't quite
follow you.

Regards,
Mike


Fabrice MAUPIN wrote
> Hi,
> 
> The file is not copied in the same location !
> 
> The file is copied from "app/resources" to the root of APPLICATION FOLDER.
> 
> The structure of the package after the install :
> 
> APPLICATION FOLDER
>   | APP
>   | Resources
>   My file
>   | RUNTIME
> 
> " Also, if "the folder which contains this file can be deleted." means
> that you are going to remove the files and folder that were installed
> directly by the install (not the copyfile) then you have an issue there
> because MSI resiliency repair will attempt to restore it."
> 
> It means that it is not possible to remove files or folders (installing by
> MSI) after install (else restore them by MSI)  ?
> 
> ---------
> Fabrice
> 
> -Message d'origine-
> De : Phil Wilson [mailto:

> phildgwilson@

> ] 
> Envoyé : vendredi 10 octobre 2014 18:33
> À : General discussion about the WiX toolset.
> Objet : Re: [WiX-users] How to hide a file in WXS configuration file ?
> 
> I think the point Michael is making is that during the install you are
> copying a file to APPLICATIONFOLDER as part of the "normal" MSI install
> process, and then you're doing a separate copyfile of that same file to
> the same location with the same name. This can't be right, so maybe you've
> just made a typo error, but in any case the WiX docs say that a copyfile
> of the same file to the same location with the same name doesn't do
> anything. So presumably you want to copy it to some other location?
> 
> Also, if "the folder which contains this file can be deleted." means that
> you are going to remove the files and folder that were installed directly
> by the install (not the copyfile) then you have an issue there because MSI
> resiliency repair will attempt to restore it.
> ---
> Phil Wilson
> 
> 
> On Fri, Oct 10, 2014 at 12:19 AM, Fabrice MAUPIN <

> fmaupin@

> > wrote:
>> Hi,
>>
>> For information, I use WiX 3.8.
>>
>> "...copying a file that you're already installing, but I've never 
>> found a good reason to use it in this way"
>>
>> Yes I've a 

Re: [WiX-users] How to hide a file in WXS configuration file ?

2014-10-13 Thread Phil Wilson
Your WiX has a MyFileId component that installs the file to
APPLICATIONFOLDER. That's an installed file, just to get awy from the
confusion of the word "copy".

 You also have a component MyFileCopyId that is doing a CopyFile of
something to APPLICATIONFOLDER, That says:



which means copy the installed "MyFileId" to APPLICATIONFOLDER, and it
looks like MyFileId is that same file, MyFileId, that is already
installed to APPLICATIONFOLDER. As far as I can see, you are really
installing that file then trying to copy it to the same location.

It's a feature of Windows Installer that its resiliency will attempt
to restore a broken installation, and includes re-installing them from
the original install location.
---
Phil Wilson


On Mon, Oct 13, 2014 at 12:09 AM, Fabrice MAUPIN  wrote:
> Hi,
>
> The file is not copied in the same location !
>
> The file is copied from "app/resources" to the root of APPLICATION FOLDER.
>
> The structure of the package after the install :
>
> APPLICATION FOLDER
> | APP
> | Resources
> My file
> | RUNTIME
>
> " Also, if "the folder which contains this file can be deleted." means that 
> you are going to remove the files and folder that were installed directly by 
> the install (not the copyfile) then you have an issue there because MSI 
> resiliency repair will attempt to restore it."
>
> It means that it is not possible to remove files or folders (installing by 
> MSI) after install (else restore them by MSI)  ?
>
> -
> Fabrice
>
> -Message d'origine-
> De : Phil Wilson [mailto:phildgwil...@gmail.com]
> Envoyé : vendredi 10 octobre 2014 18:33
> À : General discussion about the WiX toolset.
> Objet : Re: [WiX-users] How to hide a file in WXS configuration file ?
>
> I think the point Michael is making is that during the install you are 
> copying a file to APPLICATIONFOLDER as part of the "normal" MSI install 
> process, and then you're doing a separate copyfile of that same file to the 
> same location with the same name. This can't be right, so maybe you've just 
> made a typo error, but in any case the WiX docs say that a copyfile of the 
> same file to the same location with the same name doesn't do anything. So 
> presumably you want to copy it to some other location?
>
> Also, if "the folder which contains this file can be deleted." means that you 
> are going to remove the files and folder that were installed directly by the 
> install (not the copyfile) then you have an issue there because MSI 
> resiliency repair will attempt to restore it.
> ---
> Phil Wilson
>
>
> On Fri, Oct 10, 2014 at 12:19 AM, Fabrice MAUPIN  wrote:
>> Hi,
>>
>> For information, I use WiX 3.8.
>>
>> "...copying a file that you're already installing, but I've never
>> found a good reason to use it in this way"
>>
>> Yes I've a good reason : I want install certain files to the root of
>> the application folder for particular functional use-cases and one of
>> the ways to do that is to package this files into my JavaFX
>> Application.
>>
>> Once the copied file, the folder which contains this file can be deleted.
>>
>> Fabrice
>>
>> -Message d'origine-
>> De : Michael Turner [mailto:mcturner...@gmail.com] Envoyé : jeudi 9
>> octobre 2014 17:59 À : wix-users@lists.sourceforge.net Objet : Re:
>> [WiX-users] How to hide a file in WXS configuration file ?
>>
>>
>> Fabrice,
>>
>> The CopyFile element is kind of an oddball, particularly in the
>> use-case where it points to another File in the same installer.  Sure,
>> the CopyFile element exists, and it supports copying a file that
>> you're already installing, but I've never found a good reason to use
>> it in this way; it might be useful for copying a file that's already
>> on the destination machine (i.e., the syntax where you specify one or
>> more Source* attributes), but that's about it.  When you use the
>> FileId="..." syntax, the way that it binds one component to another
>> has some weird consequences.  But if you're just trying to save space
>> by not having to store the same file twice in the MSI, you can do that
>> without CopyFile.  As of WiX 3.5 (I think?), the WiX Linker does
>> "smart cabbing":  if it detects that two File elements are using the
>> same physical source file, then it stores the file just once and then has 
>> both File elements point to it.
>> http://robmensching.com/b

Re: [WiX-users] How to hide a file in WXS configuration file ?

2014-10-13 Thread Fabrice MAUPIN
Hi,

The file is not copied in the same location !

The file is copied from "app/resources" to the root of APPLICATION FOLDER.

The structure of the package after the install :

APPLICATION FOLDER
| APP
| Resources
My file
| RUNTIME

" Also, if "the folder which contains this file can be deleted." means that you 
are going to remove the files and folder that were installed directly by the 
install (not the copyfile) then you have an issue there because MSI resiliency 
repair will attempt to restore it."

It means that it is not possible to remove files or folders (installing by MSI) 
after install (else restore them by MSI)  ?

-
Fabrice

-Message d'origine-
De : Phil Wilson [mailto:phildgwil...@gmail.com] 
Envoyé : vendredi 10 octobre 2014 18:33
À : General discussion about the WiX toolset.
Objet : Re: [WiX-users] How to hide a file in WXS configuration file ?

I think the point Michael is making is that during the install you are copying 
a file to APPLICATIONFOLDER as part of the "normal" MSI install process, and 
then you're doing a separate copyfile of that same file to the same location 
with the same name. This can't be right, so maybe you've just made a typo 
error, but in any case the WiX docs say that a copyfile of the same file to the 
same location with the same name doesn't do anything. So presumably you want to 
copy it to some other location?

Also, if "the folder which contains this file can be deleted." means that you 
are going to remove the files and folder that were installed directly by the 
install (not the copyfile) then you have an issue there because MSI resiliency 
repair will attempt to restore it.
---
Phil Wilson


On Fri, Oct 10, 2014 at 12:19 AM, Fabrice MAUPIN  wrote:
> Hi,
>
> For information, I use WiX 3.8.
>
> "...copying a file that you're already installing, but I've never 
> found a good reason to use it in this way"
>
> Yes I've a good reason : I want install certain files to the root of 
> the application folder for particular functional use-cases and one of 
> the ways to do that is to package this files into my JavaFX 
> Application.
>
> Once the copied file, the folder which contains this file can be deleted.
>
> Fabrice
>
> -Message d'origine-----
> De : Michael Turner [mailto:mcturner...@gmail.com] Envoyé : jeudi 9 
> octobre 2014 17:59 À : wix-users@lists.sourceforge.net Objet : Re: 
> [WiX-users] How to hide a file in WXS configuration file ?
>
>
> Fabrice,
>
> The CopyFile element is kind of an oddball, particularly in the 
> use-case where it points to another File in the same installer.  Sure, 
> the CopyFile element exists, and it supports copying a file that 
> you're already installing, but I've never found a good reason to use 
> it in this way; it might be useful for copying a file that's already 
> on the destination machine (i.e., the syntax where you specify one or 
> more Source* attributes), but that's about it.  When you use the 
> FileId="..." syntax, the way that it binds one component to another 
> has some weird consequences.  But if you're just trying to save space 
> by not having to store the same file twice in the MSI, you can do that 
> without CopyFile.  As of WiX 3.5 (I think?), the WiX Linker does 
> "smart cabbing":  if it detects that two File elements are using the 
> same physical source file, then it stores the file just once and then has 
> both File elements point to it.
> http://robmensching.com/blog/posts/2007/6/1/quotsmart-cabbingquot-adde
> d-to-w
> ix-toolset/
>
> Anyway, if I understand you, you want to install the same file to two 
> different places, with the Hidden flag set in one place but not in the 
> other?  (However, your code snippet is specifying APPLICATIONFOLDER 
> twice, so maybe I misunderstand you.)  This is one of the many things 
> you can't do with CopyFile; you can't change file attributes during 
> the copy.  But thanks to "smart cabbing", you can just use two File 
> elements, and as long as you're using WiX 3.5 or later, this won't make your 
> MSI any larger.
>
> E.g.,
>
>
>
> (In my example, I am leaving off unnecessary attributes, per 
> http://www.joyofsetup.com/2009/12/31/simplifying-wix-component-authori
> ng/ .)
>
> Regards,
> Mike
>
>
> Fabrice MAUPIN wrote
>> Hello everybody,
>>
>> This is an extract of my WXS configuration file :
>>
>>
>> 
>>
>>
>> 
>>
>> > Source="app\resources\_dt.xsl" KeyPath="yes" />
>>
>> 
>>
>

Re: [WiX-users] How to hide a file in WXS configuration file ?

2014-10-10 Thread Phil Wilson
I think the point Michael is making is that during the install you are
copying a file to APPLICATIONFOLDER as part of the "normal" MSI
install process, and then you're doing a separate copyfile of that
same file to the same location with the same name. This can't be
right, so maybe you've just made a typo error, but in any case the WiX
docs say that a copyfile of the same file to the same location with
the same name doesn't do anything. So presumably you want to copy it
to some other location?

Also, if "the folder which contains this file can be deleted." means
that you are going to remove the files and folder that were installed
directly by the install (not the copyfile) then you have an issue
there because MSI resiliency repair will attempt to restore it.
---
Phil Wilson


On Fri, Oct 10, 2014 at 12:19 AM, Fabrice MAUPIN  wrote:
> Hi,
>
> For information, I use WiX 3.8.
>
> "...copying a file that you're already installing, but I've never found a
> good reason to use it in this way"
>
> Yes I've a good reason : I want install certain files to the root of the
> application folder for particular functional use-cases
> and one of the ways to do that is to package this files into my JavaFX
> Application.
>
> Once the copied file, the folder which contains this file can be deleted.
>
> Fabrice
>
> -Message d'origine-
> De : Michael Turner [mailto:mcturner...@gmail.com]
> Envoyé : jeudi 9 octobre 2014 17:59
> À : wix-users@lists.sourceforge.net
> Objet : Re: [WiX-users] How to hide a file in WXS configuration file ?
>
>
> Fabrice,
>
> The CopyFile element is kind of an oddball, particularly in the use-case
> where it points to another File in the same installer.  Sure, the CopyFile
> element exists, and it supports copying a file that you're already
> installing, but I've never found a good reason to use it in this way; it
> might be useful for copying a file that's already on the destination machine
> (i.e., the syntax where you specify one or more Source* attributes), but
> that's about it.  When you use the FileId="..." syntax, the way that it
> binds one component to another has some weird consequences.  But if you're
> just trying to save space by not having to store the same file twice in the
> MSI, you can do that without CopyFile.  As of WiX 3.5 (I think?), the WiX
> Linker does "smart cabbing":  if it detects that two File elements are using
> the same physical source file, then it stores the file just once and then
> has both File elements point to it.
> http://robmensching.com/blog/posts/2007/6/1/quotsmart-cabbingquot-added-to-w
> ix-toolset/
>
> Anyway, if I understand you, you want to install the same file to two
> different places, with the Hidden flag set in one place but not in the
> other?  (However, your code snippet is specifying APPLICATIONFOLDER twice,
> so maybe I misunderstand you.)  This is one of the many things you can't do
> with CopyFile; you can't change file attributes during the copy.  But thanks
> to "smart cabbing", you can just use two File elements, and as long as
> you're using WiX 3.5 or later, this won't make your MSI any larger.
>
> E.g.,
>
>
>
> (In my example, I am leaving off unnecessary attributes, per
> http://www.joyofsetup.com/2009/12/31/simplifying-wix-component-authoring/ .)
>
> Regards,
> Mike
>
>
> Fabrice MAUPIN wrote
>> Hello everybody,
>>
>> This is an extract of my WXS configuration file :
>>
>>
>> 
>>
>>
>> 
>>
>> > Source="app\resources\_dt.xsl" KeyPath="yes" />
>>
>> 
>>
>> 
>>
>> > DestinationDirectory="APPLICATIONFOLDER" />
>>
>>
>> 
>>
>> 
>>
>>
>>
>> 
>>
>> 
>>
>> 
>>
>> 
>>
>> I would like to hide the  "_dt.xsl" file which was copied : is it
>> possible ?
>>
>> If yes, how ?
>>
>> Thanks you.
>> Fabrice
>
>
>
>
>
> --
> View this message in context:
> http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-to-hide-a-
> file-in-WXS-configuration-file-tp7597186p7597195.html
> Sent from the wix-users mailing list archive at Nabble.com.
>
> 
> --
> Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer Achieve PCI
> DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports Are you
> Audit-Ready for PCI DSS 3.0 Compliance? Download White paper Comply to PCI
> DSS 3.0 Requiremen

Re: [WiX-users] How to hide a file in WXS configuration file ?

2014-10-10 Thread Fabrice MAUPIN
Hi,

For information, I use WiX 3.8.

"...copying a file that you're already installing, but I've never found a
good reason to use it in this way"

Yes I've a good reason : I want install certain files to the root of the
application folder for particular functional use-cases  
and one of the ways to do that is to package this files into my JavaFX
Application.

Once the copied file, the folder which contains this file can be deleted.

Fabrice

-Message d'origine-
De : Michael Turner [mailto:mcturner...@gmail.com] 
Envoyé : jeudi 9 octobre 2014 17:59
À : wix-users@lists.sourceforge.net
Objet : Re: [WiX-users] How to hide a file in WXS configuration file ?


Fabrice,

The CopyFile element is kind of an oddball, particularly in the use-case
where it points to another File in the same installer.  Sure, the CopyFile
element exists, and it supports copying a file that you're already
installing, but I've never found a good reason to use it in this way; it
might be useful for copying a file that's already on the destination machine
(i.e., the syntax where you specify one or more Source* attributes), but
that's about it.  When you use the FileId="..." syntax, the way that it
binds one component to another has some weird consequences.  But if you're
just trying to save space by not having to store the same file twice in the
MSI, you can do that without CopyFile.  As of WiX 3.5 (I think?), the WiX
Linker does "smart cabbing":  if it detects that two File elements are using
the same physical source file, then it stores the file just once and then
has both File elements point to it.
http://robmensching.com/blog/posts/2007/6/1/quotsmart-cabbingquot-added-to-w
ix-toolset/

Anyway, if I understand you, you want to install the same file to two
different places, with the Hidden flag set in one place but not in the
other?  (However, your code snippet is specifying APPLICATIONFOLDER twice,
so maybe I misunderstand you.)  This is one of the many things you can't do
with CopyFile; you can't change file attributes during the copy.  But thanks
to "smart cabbing", you can just use two File elements, and as long as
you're using WiX 3.5 or later, this won't make your MSI any larger.

E.g.,



(In my example, I am leaving off unnecessary attributes, per
http://www.joyofsetup.com/2009/12/31/simplifying-wix-component-authoring/ .)

Regards,
Mike


Fabrice MAUPIN wrote
> Hello everybody,
> 
> This is an extract of my WXS configuration file :
> 
>  
> 
> 
>  
> 
>  
>  Source="app\resources\_dt.xsl" KeyPath="yes" />
> 
> 
> 
> 
> 
>  DestinationDirectory="APPLICATIONFOLDER" />
>  
> 
> 
> 
> 
> 
> 
> 
> 
>  
> 
>  
> 
> 
> 
> 
> I would like to hide the  "_dt.xsl" file which was copied : is it 
> possible ?
> 
> If yes, how ?
> 
> Thanks you.
> Fabrice





--
View this message in context:
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-to-hide-a-
file-in-WXS-configuration-file-tp7597186p7597195.html
Sent from the wix-users mailing list archive at Nabble.com.


--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer Achieve PCI
DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports Are you
Audit-Ready for PCI DSS 3.0 Compliance? Download White paper Comply to PCI
DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


---
Ce courrier électronique ne contient aucun virus ou logiciel malveillant parce 
que la protection avast! Antivirus est active.
http://www.avast.com


--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] How to hide a file in WXS configuration file ?

2014-10-09 Thread Michael Turner
Fabrice,

The CopyFile element is kind of an oddball, particularly in the use-case
where it points to another File in the same installer.  Sure, the CopyFile
element exists, and it supports copying a file that you're already
installing, but I've never found a good reason to use it in this way; it
might be useful for copying a file that's already on the destination machine
(i.e., the syntax where you specify one or more Source* attributes), but
that's about it.  When you use the FileId="..." syntax, the way that it
binds one component to another has some weird consequences.  But if you're
just trying to save space by not having to store the same file twice in the
MSI, you can do that without CopyFile.  As of WiX 3.5 (I think?), the WiX
Linker does "smart cabbing":  if it detects that two File elements are using
the same physical source file, then it stores the file just once and then
has both File elements point to it.
http://robmensching.com/blog/posts/2007/6/1/quotsmart-cabbingquot-added-to-wix-toolset/

Anyway, if I understand you, you want to install the same file to two
different places, with the Hidden flag set in one place but not in the
other?  (However, your code snippet is specifying APPLICATIONFOLDER twice,
so maybe I misunderstand you.)  This is one of the many things you can't do
with CopyFile; you can't change file attributes during the copy.  But thanks
to "smart cabbing", you can just use two File elements, and as long as
you're using WiX 3.5 or later, this won't make your MSI any larger.

E.g.,



(In my example, I am leaving off unnecessary attributes, per
http://www.joyofsetup.com/2009/12/31/simplifying-wix-component-authoring/ .)

Regards,
Mike


Fabrice MAUPIN wrote
> Hello everybody,
> 
> This is an extract of my WXS configuration file :
> 
>  
> 
> 
>  
> 
>  
>  Source="app\resources\_dt.xsl" KeyPath="yes" />
> 
> 
> 
> 
> 
>  DestinationDirectory="APPLICATIONFOLDER" />
>  
> 
> 
> 
> 
> 
> 
> 
> 
>  
> 
>  
> 
> 
> 
> 
> I would like to hide the  "_dt.xsl" file which was copied : is it possible
> ?
> 
> If yes, how ?
> 
> Thanks you.
> Fabrice





--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-to-hide-a-file-in-WXS-configuration-file-tp7597186p7597195.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] How to hide a file in WXS configuration file ?

2014-10-09 Thread Fabrice MAUPIN
Ok thanks, it's ok !

-Message d'origine-
De : Matt O'Connell [mailto:techsupport...@gmail.com] 
Envoyé : jeudi 9 octobre 2014 12:26
À : General discussion about the WiX toolset.
Objet : Re: [WiX-users] How to hide a file in WXS configuration file ?

http://wixtoolset.org/documentation/manual/v3/xsd/wix/file.html
(use Hidden attribute)

On 09/10/2014 07:55, Fabrice MAUPIN wrote:
> Hello everybody,
>
>   
>
> This is an extract of my WXS configuration file :
>
>   
>
>   
>
>   
>
>Source="app\resources\_dt.xsl" KeyPath="yes" />
>
>  
>
>  
>
>   DestinationDirectory="APPLICATIONFOLDER" />
>
>  
>
>   
>
>  
>
>  
>
>  
>
>   
>
>   
>
>  
>
>   
>
> I would like to hide the  "_dt.xsl" file which was copied : is it possible ?
>
>   
>
> If yes, how ?
>
>   
>
> Thanks you.
>
>   
>
> Fabrice
>
>   
>
>   
>
>   
>
>
>
> ---
> Ce courrier électronique ne contient aucun virus ou logiciel malveillant 
> parce que la protection avast! Antivirus est active.
> http://www.avast.com
> --
>  Meet PCI DSS 3.0 Compliance Requirements with EventLog 
> Analyzer Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI 
> DSS Reports Are you Audit-Ready for PCI DSS 3.0 Compliance? Download 
> White paper Comply to PCI DSS 3.0 Requirement 10 and 11.5 with 
> EventLog Analyzer 
> http://pubads.g.doubleclick.net/gampad/clk?id=154622311&iu=/4140/ostg.
> clktrk ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users


--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer Achieve PCI DSS 
3.0 Compliant Status with Out-of-the-box PCI DSS Reports Are you Audit-Ready 
for PCI DSS 3.0 Compliance? Download White paper Comply to PCI DSS 3.0 
Requirement 10 and 11.5 with EventLog Analyzer 
http://pubads.g.doubleclick.net/gampad/clk?id=154622311&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


---
Ce courrier électronique ne contient aucun virus ou logiciel malveillant parce 
que la protection avast! Antivirus est active.
http://www.avast.com


--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] How to hide a file in WXS configuration file ?

2014-10-09 Thread Matt O'Connell
http://wixtoolset.org/documentation/manual/v3/xsd/wix/file.html
(use Hidden attribute)

On 09/10/2014 07:55, Fabrice MAUPIN wrote:
> Hello everybody,
>
>   
>
> This is an extract of my WXS configuration file :
>
>   
>
>   
>
>   
>
>Source="app\resources\_dt.xsl" KeyPath="yes" />
>
>  
>
>  
>
>   DestinationDirectory="APPLICATIONFOLDER" />
>
>  
>
>   
>
>  
>
>  
>
>  
>
>   
>
>   
>
>  
>
>   
>
> I would like to hide the  "_dt.xsl" file which was copied : is it possible ?
>
>   
>
> If yes, how ?
>
>   
>
> Thanks you.
>
>   
>
> Fabrice
>
>   
>
>   
>
>   
>
>
>
> ---
> Ce courrier électronique ne contient aucun virus ou logiciel malveillant 
> parce que la protection avast! Antivirus est active.
> http://www.avast.com
> --
> Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
> Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
> Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
> Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
> http://pubads.g.doubleclick.net/gampad/clk?id=154622311&iu=/4140/ostg.clktrk
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users


--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] How to hide a file in WXS configuration file ?

2014-10-09 Thread Fabrice MAUPIN
Hello everybody,

 

This is an extract of my WXS configuration file :

 

 

 

 





 



 







 

 



 

I would like to hide the  "_dt.xsl" file which was copied : is it possible ?

 

If yes, how ?

 

Thanks you.

 

Fabrice

 

 

 



---
Ce courrier électronique ne contient aucun virus ou logiciel malveillant parce 
que la protection avast! Antivirus est active.
http://www.avast.com
--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311&iu=/4140/ostg.clktrk
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users