Seems to me you need a custom action in order to specify which exact program
you wish to use to open the file.

So try setting up a custom action to open the file in IE, or whatever.

    <Property Id="IE"> C:\Program Files\Internet Explorer\IEXPLORE.EXE
</Property>
    <CustomAction Id="OpenIE" Property="IE" ExeCommand="hotel.aspx"
Return="asyncNoWait" />

Then you need to schedule it:
    <InstallExecuteSequence>
      <Custom Action="OpenIE" After="CostFinalize" />
    </InstallExecuteSequence>

Have a look on  http://www.tramontana.co.hu/wix/lesson3.php#3.2 here , they
probably do a much better job of explaining that then me.

You may encounter the problem of the action being executed too early and
thus it may be unable to locate the file you wish to open (presuming this
file is installed by the installer).
To get around this I think you need a deffered custom action, but I'm not
100% on that.
Anyone else got any ideas?

Regards, Alexei
-- 
View this message in context: 
http://www.nabble.com/Problems-with-shortcuts-tf4240759.html#a12071249
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

Reply via email to