I need to create a symbolic-link for a particular folder; that folder is created by a WIX installer. Is there any way to create a symbolic-link from WIX installer? I have read about mklink, but I do not know how to use that in WIX (v3)?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
I had crated a link by using Shortcut keyword. And I found it is the easiest way to resolve this. Please find this code.
But this is not equivalent to symbolic link. |
||||
|
|
|
You can use Custom actions to run the mklink. Run the custom actions after InstallFinalize. Or you can use Short cut instead of symbolic links. In Custom Action file:
Wix File:
Include the Custom Action in InstallExecuteSequence
|
||||
|
|