Hi there.

$(env.xxx) is merely a pre-processing directive that means "substitute with
the compiling machine's value of env. variable xxx". It's not evaluated at
execution of the package, so you're in fact hard-coding a value (e.g.
C:\Documents and Settings\All Users). This is not what you want, hence the
warning.

Setting ALLUSERS and utilizing the StartMenuFolder property is probably the
way you want to go. Check out the Windows Installer SDK documentation for
details on both of those properties (and more).

/rafael
 
-----Original Message-----
From: Vuchuru, Surekha (SBT US EXT) [mailto:surekha.vuchuru....@siemens.com]

Sent: Monday, July 20, 2009 2:02 PM
To: General discussion for Windows Installer XML toolset.
Subject: [WiX-users] Wix warning LGHT1076 : ICE48

Hello All,
 
Please ignore my previous email...Here is my problem.
 
I am getting a Wix compiler warning while trying to assign a property and
use it in Directory element.
 
<Property Id="ALLUSERSPROFILE" Value="$(env.ALLUSERSPROFILE)"/>

 

<Directory Id="ALLUSERSPROFILE" Name="AllUsersProfile">

<Directory Id="StartMenu" Name="Start Menu">

<Directory Id="Programs" Name="Programs">

<Directory Id="ProgramMenuDir" Name="TestDir" />

</Directory>

</Directory>

</Directory>

Here is the error :

warning LGHT1076: ICE48: Directory 'ALLUSERSPROFILE' appears to be hardcoded
in the property table to a local drive.
 
The error occurs on <Directory Id="ALLUSERSPROFILE"
Name="AllUsersProfile"> line.
Please let me if there is something I can do to get rid of this warning.
 
Thanks and Regards,
Surekha Vuchuru
----------------------------------------------------------------------------
--
Enter the BlackBerry Developer Challenge This is your chance to win up to
$100,000 in prizes! For a limited time, vendors submitting new applications
to BlackBerry App World(TM) will have the opportunity to enter the
BlackBerry Developer Challenge. See full prize details at:
http://p.sf.net/sfu/Challenge
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


------------------------------------------------------------------------------
Enter the BlackBerry Developer Challenge  
This is your chance to win up to $100,000 in prizes! For a limited time, 
vendors submitting new applications to BlackBerry App World(TM) will have
the opportunity to enter the BlackBerry Developer Challenge. See full prize  
details at: http://p.sf.net/sfu/Challenge
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to