windows installer - How do I enforce an argument to be passed into the Shortcut from a WIX Toolset Configuration File? -
i using wix toolset create msi.
i shortcut call exe "/config". how do that?
essentially program is, let's say, called "program.exe". if run using cmd, want run following:
program.exe /config
how can set shortcuts created msi installer call above , not
program.exe
use arguments attribute on shortcut element set attributes want passed application:
<shortcut id="applicationstartmenushortcut" name="my application name" description="my application description" target="program.exe" arguments="/config"/>
Comments
Post a Comment