]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #4018: Disable "for me" installations on Vista.
authorMartin v. Löwis <martin@v.loewis.de>
Mon, 13 Oct 2008 11:23:35 +0000 (11:23 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Mon, 13 Oct 2008 11:23:35 +0000 (11:23 +0000)
Misc/NEWS
Tools/msi/msi.py

index dc191d64fec09dcee5c3e31b3ecb6f13ea546f7d..3cfdc06dd48122a8236a4d62e11509d5136aea8a 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,6 +32,8 @@ Library
 Build
 -----
 
+- Issue #4018: Disable "for me" installations on Vista.
+
 - Issue #3758: Add ``patchcheck`` build target to .PHONY.
 
 
index 285cb9f0345cd8876a4f017c5bd5a13cab09d184..707786e42284ead618c8a76800086404770d5882 100644 (file)
@@ -217,7 +217,8 @@ def build_database():
                   schema, ProductName="Python "+full_current_version+productsuffix,
                   ProductCode=product_code,
                   ProductVersion=current_version,
-                  Manufacturer=u"Python Software Foundation")
+                  Manufacturer=u"Python Software Foundation",
+                  request_uac = True)
     # The default sequencing of the RemoveExistingProducts action causes
     # removal of files that got just installed. Place it after
     # InstallInitialize, so we first uninstall everything, but still roll
@@ -697,10 +698,11 @@ def add_ui(db):
                         "AdminInstall", "Next", "Cancel")
     whichusers.title("Select whether to install [ProductName] for all users of this computer.")
     # A radio group with two options: allusers, justme
-    g = whichusers.radiogroup("AdminInstall", 135, 60, 160, 50, 3,
+    g = whichusers.radiogroup("AdminInstall", 135, 60, 235, 80, 3,
                               "WhichUsers", "", "Next")
+    g.condition("Disable", "VersionNT=600") # Not available on Vista and Windows 2008
     g.add("ALL", 0, 5, 150, 20, "Install for all users")
-    g.add("JUSTME", 0, 25, 150, 20, "Install just for me")
+    g.add("JUSTME", 0, 25, 235, 20, "Install just for me (not available on Windows Vista)")
 
     whichusers.back("Back", None, active=0)