I'm making an installer with the WiX 3.5 toolset, and I've run across a problem:

The installer needs to be able to detect whether another program is present, and if so, add a DLL file in its directory. I use the following code to figure out where the second program is installed:

<Property Id="FIND_INSTALLDIR" Value="[%ProgramFilesFolder]\PROGRAM">
    <RegistrySearch
        Id="INSTALLDIRSearch"
        Root="HKLM"
        Name="UninstallString"
        Type="file"
        Key="SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\PROGRAM"
    />
</Property>

The trouble is, if the second program isn't installed, Windows Installer gives me an error:

Could not access network location [%ProgramFilesFolder]\PROGRAM

I need to be able to handle this gracefully, though... how do I recover from the error?

link|improve this question

feedback

2 Answers

Perhaps this will help you: WiX: Detecting the presence of a directory at install time

Basically, you need to make sure that the property you are using for the DLL folder is set to a valid path, even if the DLL will not be installed (the actual path was not found).

link|improve this answer
Hm... yeah I'll try that, I'm not sure if it'll help but it looks nice. Thanks. – Mehrdad Mar 8 '11 at 19:02
Huh -- the link helped, but not in the way you mentioned. :) All I had to do is to not set Value... everything else worked perfectly! – Mehrdad Mar 8 '11 at 23:32
+1 because this helped me, but since it wasn't the solution, I can't really accept the answer. Thanks though! :) – Mehrdad Mar 9 '11 at 4:33
feedback
up vote 1 down vote accepted

With Cosmin's help, I found the solution:

All I had to do is to not set Value, so that it wouldn't try to find the folder... everything else worked perfectly!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.