summaryrefslogtreecommitdiffstats
path: root/Tools/msi/bundle/packagegroups
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2015-05-03 21:54:32 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2015-05-03 21:54:32 (GMT)
commit1d4880db3d48bbb52226a7ea1bfeb6f6c8c81f64 (patch)
tree44179b714c767c59c9408b1b6808649c8cba7ec2 /Tools/msi/bundle/packagegroups
parent2d0a69a456831f483a612fa97c7ed1b178b1bdd2 (diff)
downloadcpython-1d4880db3d48bbb52226a7ea1bfeb6f6c8c81f64.zip
cpython-1d4880db3d48bbb52226a7ea1bfeb6f6c8c81f64.tar.gz
cpython-1d4880db3d48bbb52226a7ea1bfeb6f6c8c81f64.tar.bz2
Enables shortcuts to be deselected when installing on Windows.
Diffstat (limited to 'Tools/msi/bundle/packagegroups')
-rw-r--r--Tools/msi/bundle/packagegroups/doc.wxs2
-rw-r--r--Tools/msi/bundle/packagegroups/exe.wxs2
2 files changed, 4 insertions, 0 deletions
diff --git a/Tools/msi/bundle/packagegroups/doc.wxs b/Tools/msi/bundle/packagegroups/doc.wxs
index 24b9ff1..7843f44 100644
--- a/Tools/msi/bundle/packagegroups/doc.wxs
+++ b/Tools/msi/bundle/packagegroups/doc.wxs
@@ -6,6 +6,7 @@
SourceFile="doc.msi"
Compressed="$(var.CompressMSI)"
DownloadUrl="$(var.DownloadUrl)"
+ EnableFeatureSelection="yes"
ForcePerMachine="yes"
InstallCondition="InstallAllUsers and Include_doc">
<MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
@@ -15,6 +16,7 @@
SourceFile="doc.msi"
Compressed="$(var.CompressMSI)"
DownloadUrl="$(var.DownloadUrl)"
+ EnableFeatureSelection="yes"
ForcePerMachine="no"
InstallCondition="not InstallAllUsers and Include_doc">
<MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
diff --git a/Tools/msi/bundle/packagegroups/exe.wxs b/Tools/msi/bundle/packagegroups/exe.wxs
index 046b90e..50346d9 100644
--- a/Tools/msi/bundle/packagegroups/exe.wxs
+++ b/Tools/msi/bundle/packagegroups/exe.wxs
@@ -7,6 +7,7 @@
ForcePerMachine="yes"
Compressed="$(var.CompressMSI)"
DownloadUrl="$(var.DownloadUrl)"
+ EnableFeatureSelection="yes"
InstallCondition="InstallAllUsers and (Include_exe or Include_launcher or Include_pip)">
<MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
</MsiPackage>
@@ -32,6 +33,7 @@
ForcePerMachine="no"
Compressed="$(var.CompressMSI)"
DownloadUrl="$(var.DownloadUrl)"
+ EnableFeatureSelection="yes"
InstallCondition="not InstallAllUsers and (Include_exe or Include_launcher or Include_pip)">
<MsiProperty Name="TARGETDIR" Value="[TargetDir]" />
</MsiPackage>