Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
eba774b4
Kaydet (Commit)
eba774b4
authored
Eki 13, 2008
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #4018: Disable "for me" installations on Vista.
üst
76f71a52
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
NEWS
Misc/NEWS
+2
-0
msi.py
Tools/msi/msi.py
+5
-3
No files found.
Misc/NEWS
Dosyayı görüntüle @
eba774b4
...
...
@@ -32,6 +32,8 @@ Library
Build
-----
- Issue #4018: Disable "for me" installations on Vista.
- Issue #3758: Add ``patchcheck`` build target to .PHONY.
...
...
Tools/msi/msi.py
Dosyayı görüntüle @
eba774b4
...
...
@@ -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
,
5
0
,
3
,
g
=
whichusers
.
radiogroup
(
"AdminInstall"
,
135
,
60
,
235
,
8
0
,
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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment