author | herrick |
Tue, 26 Feb 2019 12:08:20 -0500 | |
branch | JDK-8200758-branch |
changeset 57215 | 62db1c695d13 |
parent 57181 | d10b861e8d62 |
child 57254 | c1b92a014e89 |
permissions | -rw-r--r-- |
57038 | 1 |
<?xml version="1.0" encoding="utf-8"?> |
2 |
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" |
|
3 |
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension"> |
|
57181
d10b861e8d62
8214564: --win-upgrade-uuid does not work as expected
herrick
parents:
57039
diff
changeset
|
4 |
<Product Id="PRODUCT_GUID" Name="APPLICATION_NAME" |
57038 | 5 |
Language="1033" Version="APPLICATION_VERSION" |
57181
d10b861e8d62
8214564: --win-upgrade-uuid does not work as expected
herrick
parents:
57039
diff
changeset
|
6 |
Manufacturer="APPLICATION_VENDOR" |
57038 | 7 |
UpgradeCode="PRODUCT_UPGRADE_GUID"> |
8 |
<Package Description="APPLICATION_DESCRIPTION" Comments="None" |
|
9 |
InstallerVersion="200" Compressed="yes" |
|
10 |
InstallScope="INSTALL_SCOPE" Platform="PLATFORM"/> |
|
11 |
<Media Id="1" Cabinet="simple.cab" EmbedCab="yes" /> |
|
57181
d10b861e8d62
8214564: --win-upgrade-uuid does not work as expected
herrick
parents:
57039
diff
changeset
|
12 |
UPGRADE_BLOCK |
57038 | 13 |
|
57181
d10b861e8d62
8214564: --win-upgrade-uuid does not work as expected
herrick
parents:
57039
diff
changeset
|
14 |
<!-- We use RemoveFolderEx to ensure application folder is fully |
57038 | 15 |
removed on uninstall. Including files created outside of MSI |
16 |
after application had been installed (e.g. on AU or user state). |
|
57181
d10b861e8d62
8214564: --win-upgrade-uuid does not work as expected
herrick
parents:
57039
diff
changeset
|
17 |
|
d10b861e8d62
8214564: --win-upgrade-uuid does not work as expected
herrick
parents:
57039
diff
changeset
|
18 |
Hovewer, RemoveFolderEx is only available in WiX 3.6, |
57038 | 19 |
we will comment it out if we running older WiX. |
20 |
||
21 |
RemoveFolderEx requires that we "remember" the path for uninstall. |
|
22 |
Read the path value and set the APPLICATIONFOLDER property with the value. |
|
23 |
--> |
|
24 |
<Property Id="APPLICATIONFOLDER"> |
|
57181
d10b861e8d62
8214564: --win-upgrade-uuid does not work as expected
herrick
parents:
57039
diff
changeset
|
25 |
<RegistrySearch Key="SOFTWARE\APPLICATION_VENDOR\APPLICATION_NAME" |
d10b861e8d62
8214564: --win-upgrade-uuid does not work as expected
herrick
parents:
57039
diff
changeset
|
26 |
Root="REGISTRY_ROOT" Type="raw" |
57038 | 27 |
Id="APPLICATIONFOLDER_REGSEARCH" Name="Path" /> |
28 |
</Property> |
|
29 |
<DirectoryRef Id="APPLICATIONFOLDER"> |
|
30 |
<Component Id="CleanupMainApplicationFolder" Guid="*" Win64="WIN64"> |
|
31 |
<RegistryValue Root="REGISTRY_ROOT" |
|
32 |
Key="SOFTWARE\APPLICATION_VENDOR\APPLICATION_NAME" |
|
33 |
Name="Path" Type="string" Value="[APPLICATIONFOLDER]" |
|
34 |
KeyPath="yes" /> |
|
35 |
<!-- We need to use APPLICATIONFOLDER variable here or RemoveFolderEx |
|
36 |
will not remove on "install". But only if WiX 3.6 is used. --> |
|
57181
d10b861e8d62
8214564: --win-upgrade-uuid does not work as expected
herrick
parents:
57039
diff
changeset
|
37 |
WIX36_ONLY_START |
57038 | 38 |
<util:RemoveFolderEx On="uninstall" Property="APPLICATIONFOLDER" /> |
39 |
WIX36_ONLY_END |
|
40 |
</Component> |
|
57181
d10b861e8d62
8214564: --win-upgrade-uuid does not work as expected
herrick
parents:
57039
diff
changeset
|
41 |
</DirectoryRef> |
57038 | 42 |
<?include bundle.wxi ?> |
43 |
UI_BLOCK |
|
44 |
<Icon Id="DesktopIcon.exe" SourceFile="APPLICATION_ICON" /> |
|
45 |
<Icon Id="StartMenuIcon.exe" SourceFile="APPLICATION_ICON" /> |
|
46 |
SECONDARY_LAUNCHER_ICONS |
|
47 |
</Product> |
|
48 |
</Wix> |