Our dll's are strongly typed (I think that's what its called).  So we
can't have dll's of different versions talking to each other.  What is
the best way to apply a hotfix for when you only need to replace a
couple files.  We can rebuild the new dll's to be the same version as
the old ones, but how do you get those to be updated?

-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Stefan
Kuhr
Sent: Friday, January 19, 2007 1:28 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Conditional start menu shortcut creation


Hello everyone,

I want to install both the x64 and the x86 version of an executable on
the
harddisk, no matter if the machine is x86 or x64. But I only want to
create
one start menu shortcut for the app, the one that is appropriate for the
target OS where the msi gets installed. How Do I go about that? I tried
this
for the component, so the start menu entry for the x86 should not appear
on
x86, but unfortunately it appears anyway:

    <DirectoryRef Id="INSTALLDIR">
      <Component Id='PnPMonComp' Guid='???????????'>
        <File Id='PnPMonEXE' Name='PnPMon.exe' LongName='PnPMon.exe'
DiskId='1'
          Source='PnPMon.exe' Vital='yes'>
          <Shortcut Id="startmenuPnPMon" Directory="ProgramMenuDir"
Name="PnPMon" 
            LongName="PnPMon" WorkingDirectory='INSTALLDIR'
Icon="PnPMon.exe" IconIndex="0">
            <Condition Level="0">NOT VersionNT64</Condition>
          </Shortcut>
        </File>
      </Component>
    </DirectoryRef>

How can I create a start menu shortcut conditionally?

Any help appreciated,

-- 
Stefan Kuhr


-- 
View this message in context:
http://www.nabble.com/Conditional-start-menu-shortcut-creation-tf3041366
.html#a8453976
Sent from the wix-users mailing list archive at Nabble.com.


------------------------------------------------------------------------
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share
your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDE
V
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to