I am trying to register an out-of-process COM file (.exe) through WiX after extracting the COM registration from regspy.exe, and am running into the problem that the registry key I need to write is:

<RegistryValue Value="C:\PROGRA~1\COMMON~1\file.exe /Automation" Type="String" />

Now I would like to use the Windows Installer property [CommonFilesFolder] as not everyone installs to C:\

For an in-process (.dll) the long name is acceptable:

<RegistryValue Value="[CommonFilesFolder]file.dll" Type="string" />

But it appears this in not true for out-of-process. Is there a way to convince or convert [CommonFilesFolder] to the short name? This is a particular problem for x64, as the name will resolve to C:\PROGRA~2\ instead of C:\PROGRA~1\

link|improve this question

70% accept rate
Putting quotes around the executable name should also work with long paths, like Value="&quot;[CommonFilesFolder]file.exe&quot; /Automation". – Alexey Ivanov Apr 12 '11 at 6:02
feedback

1 Answer

up vote 4 down vote accepted

Use [!idOfFile] to get the full short path. (See "Formatted" in MSI SDK for the full list of special formatting keys.)

link|improve this answer
Works perfectly! Thanks! – Rob Hunter Apr 11 '11 at 21:05
feedback

Your Answer

 
or
required, but never shown

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