How to get the value of INSTALLDIR in wix

475 Views Asked by At

Am copying files to INSTALLDIR using wix. And how do i get the path of copied file location. I want to use the value(path) of INSTALLDIR.

Thanks in Advance

1

There are 1 best solutions below

0
On

Using [INSTALLDIR]. Directories with capital letters also act as property.

If you can use VbScript Custom Actions, then you can try this: Msgbox Session.Property("INSTALLDIR")