I am using WiX for an installation project. I have a shortcut to my executable file on the desktop. When I go to the properties of shortcut the button Open file location
is disabled. How do I make the button set to enable?
Here is my code:
<File Id="App.exe" Name="App.exe" KeyPath="yes" Source="$(var.SourceDir)\App.exe">
<Shortcut Id="AppDesktop" Directory="DesktopFolder"
Name="App" Icon="Icon.ico"
IconIndex="0" Advertise="yes"
WorkingDirectory="INSTALLLOCATION"/>
</File>