-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathComponents.wxs
35 lines (32 loc) · 1.31 KB
/
Components.wxs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Fragment>
<ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
<ComponentRef Id="MainAppShortcut"/>
</ComponentGroup>
<DirectoryRef Id="INSTALLFOLDER" FileSource="..\InstallFolder\">
<Component Id="MainAppShortcut" Guid="{FDE58D8C-E6B6-4FC4-8E78-B193B0B7FF93}">
<Shortcut
Id="MainAppShortcut"
Name="Pinnacle"
Target="[INSTALLFOLDER]PinnacleSupervisor.exe"
Directory="InstallProgramMenuFolder"
WorkingDirectory="INSTALLFOLDER"/>
<!--<Shortcut
Id="OperatorInterfaceShortcut"
Name="PinnacleOperatorInterface"
Target="[INSTALLFOLDER]Shared/PinnacleOperatorInterface.exe"
Directory="InstallProgramMenuFolder"
WorkingDirectory="INSTALLFOLDER"/>-->
<RegistryValue Id="RegShortcutKey"
Root="HKCU"
Key="SOFTWARE\!(loc.ProductFolderName)"
Name="Shortcut"
Value="1"
Type="integer"
KeyPath="yes"/>
<RemoveFolder Id="RemoveStartMenu" Directory="InstallProgramMenuFolder" On="uninstall"/>
</Component>
</DirectoryRef>
</Fragment>
</Wix>