blob: ca6a3c0ff45bf94e0b260d3e5e01f8bffbede653 [file] [log] [blame]
Tim Peters7e5dcf62001-07-20 09:32:16 +00001; Script generated by the Inno Setup Script Wizard.
2; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
3
4; This is the whole ball of wax for an Inno installer for Python.
5; To use, download Inno Setup from http://www.jrsoftware.org/isdl.htm/,
6; install it, and double-click on this file. That launches the Inno
7; script compiler. The GUI is extemely simple, and has only one button
8; you may not recognize instantly: click it. You're done. It builds
9; the installer into PCBuild/Python-2.2a1.exe. Size and speed of the
10; installer are competitive with the Wise installer; Inno uninstall
Tim Petersb5c61a82001-07-21 21:16:39 +000011; seems much quicker than Wise (but also feebler, and the uninstall
12; log is in some un(human)readable binary format).
Tim Peters7e5dcf62001-07-20 09:32:16 +000013;
14; What's Done
15; -----------
16; All the usual Windows Python files are installed by this now.
17; All the usual Windows Python Start menu entries are created and
18; work fine.
Tim Petersb5c61a82001-07-21 21:16:39 +000019; .py, .pyw, .pyc and .pyo extensions are registered.
20; PROBLEM: Inno uninstall does not restore their previous registry
21; associations (if any). Wise did. This will make life
22; difficult for alpha (etc) testers.
23; The Python install is fully functional for "typical" uses.
Tim Peters7e5dcf62001-07-20 09:32:16 +000024;
25; What's Not Done
26; ---------------
Tim Petersb5c61a82001-07-21 21:16:39 +000027; None of "Mark Hammond's" registry entries are written.
Tim Peters7e5dcf62001-07-20 09:32:16 +000028; No installation of files is done into the system dir:
29; The MS DLLs aren't handled at all by this yet.
30; Python22.dll is unpacked into the main Python dir.
31;
32; Inno can't do different things on NT/2000 depending on whether the user
33; has Admin privileges, so I don't know how to "solve" either of those,
34; short of building two installers (one *requiring* Admin privs, the
35; other not doing anything that needs Admin privs).
36;
37; Inno has no concept of variables, so lots of lines in this file need
38; to be fiddled by hand across releases. Simplest way out: stick this
39; file in a giant triple-quoted r-string (note that backslashes are
40; required all over the place here -- forward slashes DON'T WORK in
41; Inno), and use %(yadda)s string interpolation to do substitutions; i.e.,
42; write a very simple Python program to *produce* this script.
43
44[Setup]
Martin v. Löwis04570db2003-10-31 14:02:41 +000045AppName=Python and combined Win32 Extensions
46AppVerName=Python 2.2.2 and combined Win32 Extensions 150
47AppId=Python 2.2.2.150
48AppVersion=2.2.2.150
49AppCopyright=Python is Copyright © 2001 Python Software Foundation. Win32 Extensions are Copyright © 1996-2001 Greg Stein and Mark Hammond.
Tim Peters7e5dcf62001-07-20 09:32:16 +000050
51; Default install dir; value of {app} later (unless user overrides).
52; {sd} = system root drive, probably "C:".
53DefaultDirName={sd}\Python22
Martin v. Löwis04570db2003-10-31 14:02:41 +000054;DefaultDirName={pf}\Python
Tim Peters7e5dcf62001-07-20 09:32:16 +000055
Tim Petersb5c61a82001-07-21 21:16:39 +000056; Start menu folder name; value of {group} later (unless user overrides).
Tim Peters7e5dcf62001-07-20 09:32:16 +000057DefaultGroupName=Python 2.2
58
Tim Peters7e5dcf62001-07-20 09:32:16 +000059; Point SourceDir to one above PCBuild = src.
Martin v. Löwis04570db2003-10-31 14:02:41 +000060; means this script can run unchanged from anyone's CVS tree, no matter
61; what they called the top-level directories.
62SourceDir=.
63OutputDir=..
64OutputBaseFilename=Python-2.2.2-Win32-150-Setup
Tim Peters7e5dcf62001-07-20 09:32:16 +000065
Martin v. Löwis04570db2003-10-31 14:02:41 +000066AppPublisher=PythonLabs at Digital Creations
Tim Peters7e5dcf62001-07-20 09:32:16 +000067AppPublisherURL=http://www.python.org
68AppSupportURL=http://www.python.org
69AppUpdatesURL=http://www.python.org
70
Martin v. Löwis04570db2003-10-31 14:02:41 +000071AlwaysCreateUninstallIcon=true
72ChangesAssociations=true
Tim Peters7e5dcf62001-07-20 09:32:16 +000073UninstallLogMode=new
Martin v. Löwis04570db2003-10-31 14:02:41 +000074AllowNoIcons=true
75AdminPrivilegesRequired=true
76UninstallDisplayIcon={app}\pyc.ico
77WizardDebug=false
Tim Petersb5c61a82001-07-21 21:16:39 +000078
79; The fewer screens the better; leave these commented.
Martin v. Löwis04570db2003-10-31 14:02:41 +000080
81Compression=bzip
82InfoBeforeFile=LICENSE.txt
Tim Peters7e5dcf62001-07-20 09:32:16 +000083;InfoBeforeFile=Misc\NEWS
Tim Petersb5c61a82001-07-21 21:16:39 +000084
Tim Peters7e5dcf62001-07-20 09:32:16 +000085; uncomment the following line if you want your installation to run on NT 3.51 too.
86; MinVersion=4,3.51
87
88[Types]
Martin v. Löwis04570db2003-10-31 14:02:41 +000089Name: normal; Description: Select desired components; Flags: iscustom
Tim Peters7e5dcf62001-07-20 09:32:16 +000090
91[Components]
Martin v. Löwis04570db2003-10-31 14:02:41 +000092Name: main; Description: Python and Win32 Extensions; Types: normal
93Name: docs; Description: Python documentation (HTML); Types: normal
94Name: tk; Description: TCL/TK, tkinter, and Idle; Types: normal
95Name: tools; Description: Python utility scripts (Tools\); Types: normal
96Name: test; Description: Python test suite (Lib\test\); Types: normal
Tim Petersb5c61a82001-07-21 21:16:39 +000097
98[Tasks]
Martin v. Löwis04570db2003-10-31 14:02:41 +000099Name: extensions; Description: Register file associations (.py, .pyw, .pyc, .pyo); Components: main; Check: IsAdminLoggedOn
Tim Peters7e5dcf62001-07-20 09:32:16 +0000100
101[Files]
102; Caution: Using forward slashes instead screws up in amazing ways.
103; Unknown: By the time Components (and other attrs) are added to these lines, they're
104; going to get awfully long. But don't see a way to continue logical lines across
105; physical lines.
106
Martin v. Löwis04570db2003-10-31 14:02:41 +0000107Source: LICENSE.txt; DestDir: {app}; CopyMode: alwaysoverwrite
108Source: README.txt; DestDir: {app}; CopyMode: alwaysoverwrite
109Source: News.txt; DestDir: {app}; CopyMode: alwaysoverwrite
110Source: *.ico; DestDir: {app}; CopyMode: alwaysoverwrite; Components: main
111
112Source: python.exe; DestDir: {app}; CopyMode: alwaysoverwrite; Components: main
113Source: pythonw.exe; DestDir: {app}; CopyMode: alwaysoverwrite; Components: main
114Source: w9xpopen.exe; DestDir: {app}; CopyMode: alwaysoverwrite; Components: main
Tim Peters7e5dcf62001-07-20 09:32:16 +0000115
116
Martin v. Löwis04570db2003-10-31 14:02:41 +0000117Source: DLLs\tcl83.dll; DestDir: {app}\DLLs; CopyMode: alwaysoverwrite; Components: tk
118Source: DLLs\tk83.dll; DestDir: {app}\DLLs; CopyMode: alwaysoverwrite; Components: tk
119Source: tcl\*.*; DestDir: {app}\tcl; CopyMode: alwaysoverwrite; Components: tk; Flags: recursesubdirs
Tim Peters7e5dcf62001-07-20 09:32:16 +0000120
Martin v. Löwis04570db2003-10-31 14:02:41 +0000121Source: sysdir\python22.dll; DestDir: {sys}; CopyMode: alwaysskipifsameorolder; Components: main; Flags: sharedfile restartreplace
122Source: sysdir\PyWinTypes22.dll; DestDir: {sys}; CopyMode: alwaysskipifsameorolder; Components: main; Flags: restartreplace sharedfile
123Source: sysdir\pythoncom22.dll; DestDir: {sys}; CopyMode: alwaysskipifsameorolder; Components: main; Flags: restartreplace sharedfile
Tim Peters7e5dcf62001-07-20 09:32:16 +0000124
Martin v. Löwis04570db2003-10-31 14:02:41 +0000125Source: DLLs\_socket.pyd; DestDir: {app}\DLLs; CopyMode: alwaysoverwrite; Components: main
126Source: libs\_socket.lib; DestDir: {app}\libs; CopyMode: alwaysoverwrite; Components: main
Tim Peters7e5dcf62001-07-20 09:32:16 +0000127
Martin v. Löwis04570db2003-10-31 14:02:41 +0000128Source: DLLs\_sre.pyd; DestDir: {app}\DLLs; CopyMode: alwaysoverwrite; Components: main
129Source: libs\_sre.lib; DestDir: {app}\libs; CopyMode: alwaysoverwrite; Components: main
Tim Peters7e5dcf62001-07-20 09:32:16 +0000130
Martin v. Löwis04570db2003-10-31 14:02:41 +0000131Source: DLLs\_symtable.pyd; DestDir: {app}\DLLs; CopyMode: alwaysoverwrite; Components: main
132Source: libs\_symtable.lib; DestDir: {app}\libs; CopyMode: alwaysoverwrite; Components: main
Tim Peters7e5dcf62001-07-20 09:32:16 +0000133
Martin v. Löwis04570db2003-10-31 14:02:41 +0000134Source: DLLs\_testcapi.pyd; DestDir: {app}\DLLs; CopyMode: alwaysoverwrite; Components: main
135Source: libs\_testcapi.lib; DestDir: {app}\libs; CopyMode: alwaysoverwrite; Components: main
Tim Peters7e5dcf62001-07-20 09:32:16 +0000136
Martin v. Löwis04570db2003-10-31 14:02:41 +0000137Source: DLLs\_tkinter.pyd; DestDir: {app}\DLLs; CopyMode: alwaysoverwrite; Components: tk
138Source: libs\_tkinter.lib; DestDir: {app}\libs; CopyMode: alwaysoverwrite; Components: tk
Tim Peters7e5dcf62001-07-20 09:32:16 +0000139
Martin v. Löwis04570db2003-10-31 14:02:41 +0000140Source: DLLs\mmap.pyd; DestDir: {app}\DLLs; CopyMode: alwaysoverwrite; Components: main
141Source: libs\mmap.lib; DestDir: {app}\libs; CopyMode: alwaysoverwrite; Components: main
Tim Peters7e5dcf62001-07-20 09:32:16 +0000142
Martin v. Löwis04570db2003-10-31 14:02:41 +0000143Source: DLLs\parser.pyd; DestDir: {app}\DLLs; CopyMode: alwaysoverwrite; Components: main
144Source: libs\parser.lib; DestDir: {app}\libs; CopyMode: alwaysoverwrite; Components: main
Tim Peters7e5dcf62001-07-20 09:32:16 +0000145
Martin v. Löwis04570db2003-10-31 14:02:41 +0000146Source: DLLs\pyexpat.pyd; DestDir: {app}\DLLs; CopyMode: alwaysoverwrite; Components: main
147Source: libs\pyexpat.lib; DestDir: {app}\libs; CopyMode: alwaysoverwrite; Components: main
Tim Peters7e5dcf62001-07-20 09:32:16 +0000148
Martin v. Löwis04570db2003-10-31 14:02:41 +0000149Source: DLLs\select.pyd; DestDir: {app}\DLLs; CopyMode: alwaysoverwrite; Components: main
150Source: libs\select.lib; DestDir: {app}\libs; CopyMode: alwaysoverwrite; Components: main
Tim Peters7e5dcf62001-07-20 09:32:16 +0000151
Martin v. Löwis04570db2003-10-31 14:02:41 +0000152Source: DLLs\unicodedata.pyd; DestDir: {app}\DLLs; CopyMode: alwaysoverwrite; Components: main
153Source: libs\unicodedata.lib; DestDir: {app}\libs; CopyMode: alwaysoverwrite; Components: main
Tim Peters7e5dcf62001-07-20 09:32:16 +0000154
Georg Brandl38feaf02008-05-25 07:45:51 +0000155Source: DLLs\winreg.pyd; DestDir: {app}\DLLs; CopyMode: alwaysoverwrite; Components: main
156Source: libs\winreg.lib; DestDir: {app}\libs; CopyMode: alwaysoverwrite; Components: main
Tim Peters7e5dcf62001-07-20 09:32:16 +0000157
Martin v. Löwis04570db2003-10-31 14:02:41 +0000158Source: DLLs\winsound.pyd; DestDir: {app}\DLLs; CopyMode: alwaysoverwrite; Components: main
159Source: libs\winsound.lib; DestDir: {app}\libs; CopyMode: alwaysoverwrite; Components: main
Tim Peters7e5dcf62001-07-20 09:32:16 +0000160
Martin v. Löwis04570db2003-10-31 14:02:41 +0000161Source: DLLs\zlib.pyd; DestDir: {app}\DLLs; CopyMode: alwaysoverwrite; Components: main
162Source: libs\zlib.lib; DestDir: {app}\libs; CopyMode: alwaysoverwrite; Components: main
Tim Peters7e5dcf62001-07-20 09:32:16 +0000163
Martin v. Löwis04570db2003-10-31 14:02:41 +0000164Source: libs\python22.lib; DestDir: {app}\libs; CopyMode: alwaysoverwrite; Components: main
Tim Peters7e5dcf62001-07-20 09:32:16 +0000165
Martin v. Löwis04570db2003-10-31 14:02:41 +0000166Source: DLLs\expat.dll; DestDir: {app}\DLLs; CopyMode: alwaysoverwrite; Components: main
Tim Peters7e5dcf62001-07-20 09:32:16 +0000167
Tim Peters7e5dcf62001-07-20 09:32:16 +0000168
Tim Peters7e5dcf62001-07-20 09:32:16 +0000169
Martin v. Löwis04570db2003-10-31 14:02:41 +0000170Source: Lib\*.py; DestDir: {app}\Lib; CopyMode: alwaysoverwrite; Components: main
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000171Source: Lib\compiler\*.*; DestDir: {app}\Lib\compiler; CopyMode: alwaysoverwrite; Components: main; Flags: recursesubdirs
Martin v. Löwis04570db2003-10-31 14:02:41 +0000172Source: Lib\distutils\*.*; DestDir: {app}\Lib\distutils; CopyMode: alwaysoverwrite; Components: main; Flags: recursesubdirs
173Source: Lib\email\*.*; DestDir: {app}\Lib\email; CopyMode: alwaysoverwrite; Components: main; Flags: recursesubdirs
174Source: Lib\encodings\*.*; DestDir: {app}\Lib\encodings; CopyMode: alwaysoverwrite; Components: main; Flags: recursesubdirs
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000175Source: Lib\hotshot\*.*; DestDir: {app}\Lib\hotshot; CopyMode: alwaysoverwrite; Components: main; Flags: recursesubdirs
Martin v. Löwis04570db2003-10-31 14:02:41 +0000176Source: Lib\lib-old\*.*; DestDir: {app}\Lib\lib-old; CopyMode: alwaysoverwrite; Components: main; Flags: recursesubdirs
177Source: Lib\xml\*.*; DestDir: {app}\Lib\xml; CopyMode: alwaysoverwrite; Components: main; Flags: recursesubdirs
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000178Source: Lib\hotshot\*.*; DestDir: {app}\Lib\hotshot; CopyMode: alwaysoverwrite; Components: main; Flags: recursesubdirs
Martin v. Löwis04570db2003-10-31 14:02:41 +0000179Source: Lib\test\*.*; DestDir: {app}\Lib\test; CopyMode: alwaysoverwrite; Components: test; Flags: recursesubdirs
Georg Brandl6e47a332008-05-17 19:15:58 +0000180Source: Lib\tkinter\*.py; DestDir: {app}\Lib\tkinter; CopyMode: alwaysoverwrite; Components: tk; Flags: recursesubdirs
Tim Peters7e5dcf62001-07-20 09:32:16 +0000181
Martin v. Löwis04570db2003-10-31 14:02:41 +0000182Source: Lib\site-packages\README.txt; DestDir: {app}\Lib\site-packages; CopyMode: alwaysoverwrite; Components: main
Tim Peters7e5dcf62001-07-20 09:32:16 +0000183
Martin v. Löwis04570db2003-10-31 14:02:41 +0000184Source: Lib\site-packages\PyWin32.chm; DestDir: {app}\Lib\site-packages; CopyMode: alwaysoverwrite; Components: docs
185Source: Lib\site-packages\win32\*.*; DestDir: {app}\Lib\site-packages\win32; CopyMode: alwaysoverwrite; Components: main; Flags: recursesubdirs
186Source: Lib\site-packages\win32com\*.*; DestDir: {app}\Lib\site-packages\win32com; CopyMode: alwaysoverwrite; Components: main; Flags: recursesubdirs
187Source: Lib\site-packages\win32comext\*.*; DestDir: {app}\Lib\site-packages\win32comext; CopyMode: alwaysoverwrite; Components: main; Flags: recursesubdirs
Tim Peters7e5dcf62001-07-20 09:32:16 +0000188
Martin v. Löwis04570db2003-10-31 14:02:41 +0000189Source: include\*.h; DestDir: {app}\include; CopyMode: alwaysoverwrite; Components: main
Tim Peters7e5dcf62001-07-20 09:32:16 +0000190
Martin v. Löwis04570db2003-10-31 14:02:41 +0000191Source: Tools\idle\*.*; DestDir: {app}\Tools\idle; CopyMode: alwaysoverwrite; Components: tk; Flags: recursesubdirs
Tim Peters7e5dcf62001-07-20 09:32:16 +0000192
Martin v. Löwis04570db2003-10-31 14:02:41 +0000193Source: Tools\pynche\*.*; DestDir: {app}\Tools\pynche; CopyMode: alwaysoverwrite; Components: tools; Flags: recursesubdirs
194Source: Tools\scripts\*.*; DestDir: {app}\Tools\Scripts; CopyMode: alwaysoverwrite; Components: tools; Flags: recursesubdirs
195Source: Tools\webchecker\*.*; DestDir: {app}\Tools\webchecker; CopyMode: alwaysoverwrite; Components: tools; Flags: recursesubdirs
196Source: Tools\versioncheck\*.*; DestDir: {app}\Tools\versioncheck; CopyMode: alwaysoverwrite; Components: tools; Flags: recursesubdirs
Tim Peters7e5dcf62001-07-20 09:32:16 +0000197
Martin v. Löwis04570db2003-10-31 14:02:41 +0000198Source: Doc\*.*; DestDir: {app}\Doc; CopyMode: alwaysoverwrite; Flags: recursesubdirs; Components: docs
Tim Peters7e5dcf62001-07-20 09:32:16 +0000199
Tim Peters7e5dcf62001-07-20 09:32:16 +0000200
201[Icons]
Martin v. Löwis04570db2003-10-31 14:02:41 +0000202Name: {group}\Python (command line); Filename: {app}\python.exe; WorkingDir: {app}; Components: main
203Name: {group}\Python Manuals; Filename: {app}\Doc\index.html; WorkingDir: {app}; Components: docs
204Name: {group}\Win32 Extensions Help; Filename: {app}\Lib\site-packages\PyWin32.chm; WorkingDir: {app}\Lib\site-packages; Components: docs
205Name: {group}\Module Docs; Filename: {app}\pythonw.exe; WorkingDir: {app}; Parameters: """{app}\Tools\Scripts\pydoc.pyw"""; Components: tools
206Name: {group}\IDLE (Python GUI); Filename: {app}\pythonw.exe; WorkingDir: {app}; Parameters: """{app}\Tools\idle\idle.pyw"""; Components: tools
Tim Petersb5c61a82001-07-21 21:16:39 +0000207
208[Registry]
209; Register .py
Martin v. Löwis04570db2003-10-31 14:02:41 +0000210Tasks: extensions; Root: HKCR; Subkey: .py; ValueType: string; ValueName: ; ValueData: Python File; Flags: uninsdeletevalue
211Tasks: extensions; Root: HKCR; Subkey: .py; ValueType: string; ValueName: Content Type; ValueData: text/plain; Flags: uninsdeletevalue
212Tasks: extensions; Root: HKCR; Subkey: Python File; ValueType: string; ValueName: ; ValueData: Python File; Flags: uninsdeletekey
213Tasks: extensions; Root: HKCR; Subkey: Python File\DefaultIcon; ValueType: string; ValueName: ; ValueData: {app}\Py.ico
214Tasks: extensions; Root: HKCR; Subkey: Python File\shell\open\command; ValueType: string; ValueName: ; ValueData: """{app}\python.exe"" ""%1"" %*"
Tim Petersb5c61a82001-07-21 21:16:39 +0000215
216; Register .pyc
Martin v. Löwis04570db2003-10-31 14:02:41 +0000217Tasks: extensions; Root: HKCR; Subkey: .pyc; ValueType: string; ValueName: ; ValueData: Python CompiledFile; Flags: uninsdeletevalue
218Tasks: extensions; Root: HKCR; Subkey: Python CompiledFile; ValueType: string; ValueName: ; ValueData: Compiled Python File; Flags: uninsdeletekey
219Tasks: extensions; Root: HKCR; Subkey: Python CompiledFile\DefaultIcon; ValueType: string; ValueName: ; ValueData: {app}\pyc.ico
220Tasks: extensions; Root: HKCR; Subkey: Python CompiledFile\shell\open\command; ValueType: string; ValueName: ; ValueData: """{app}\python.exe"" ""%1"" %*"
Tim Petersb5c61a82001-07-21 21:16:39 +0000221
222; Register .pyo
Martin v. Löwis04570db2003-10-31 14:02:41 +0000223Tasks: extensions; Root: HKCR; Subkey: .pyo; ValueType: string; ValueName: ; ValueData: Python CompiledFile; Flags: uninsdeletevalue
Tim Petersb5c61a82001-07-21 21:16:39 +0000224
225; Register .pyw
Martin v. Löwis04570db2003-10-31 14:02:41 +0000226Tasks: extensions; Root: HKCR; Subkey: .pyw; ValueType: string; ValueName: ; ValueData: Python NoConFile; Flags: uninsdeletevalue
227Tasks: extensions; Root: HKCR; Subkey: .pyw; ValueType: string; ValueName: Content Type; ValueData: text/plain; Flags: uninsdeletevalue
228Tasks: extensions; Root: HKCR; Subkey: Python NoConFile; ValueType: string; ValueName: ; ValueData: Python File (no console); Flags: uninsdeletekey
229Tasks: extensions; Root: HKCR; Subkey: Python NoConFile\DefaultIcon; ValueType: string; ValueName: ; ValueData: {app}\Py.ico
230Tasks: extensions; Root: HKCR; Subkey: Python NoConFile\shell\open\command; ValueType: string; ValueName: ; ValueData: """{app}\pythonw.exe"" ""%1"" %*"
231
232
233; Python Registry Keys
234Root: HKLM; Subkey: SOFTWARE\Python; Flags: uninsdeletekeyifempty; Check: IsAdminLoggedOn
235Root: HKLM; Subkey: SOFTWARE\Python\PythonCore; Flags: uninsdeletekeyifempty
236Root: HKLM; Subkey: SOFTWARE\Python\PythonCore\2.2; Flags: uninsdeletekeyifempty
237Root: HKLM; Subkey: SOFTWARE\Python\PythonCore\2.2\PythonPath; ValueData: "{app}\Lib;{app}\DLLs"; Flags: uninsdeletekeyifempty
Martin v. Löwis04570db2003-10-31 14:02:41 +0000238Root: HKLM; Subkey: SOFTWARE\Python\PythonCore\2.2\PythonPath\win32; ValueData: "{app}\lib\site-packages\win32;{app}\lib\site-packages\win32\lib"; Flags: uninsdeletekey
239Root: HKLM; Subkey: SOFTWARE\Python\PythonCore\2.2\PythonPath\win32com; ValueData: C:\Python\lib\site-packages; Flags: uninsdeletekey
240Root: HKLM; Subkey: SOFTWARE\Python\PythonCore\2.2\Modules; Flags: uninsdeletekeyifempty
241Root: HKLM; Subkey: SOFTWARE\Python\PythonCore\2.2\Modules\pythoncom; ValueData: {sys}\pythoncom22.dll; Flags: uninsdeletekey
242Root: HKLM; Subkey: SOFTWARE\Python\PythonCore\2.2\Modules\pywintypes; ValueData: {sys}\PyWinTypes22.dll; Flags: uninsdeletekey
243Root: HKLM; Subkey: SOFTWARE\Python\PythonCore\2.2\InstallPath; ValueData: {app}; Flags: uninsdeletekeyifempty; ValueType: string
244Root: HKLM; Subkey: SOFTWARE\Python\PythonCore\2.2\InstallPath\InstallGroup; ValueData: {group}; Flags: uninsdeletekey
245Root: HKLM; Subkey: SOFTWARE\Python\PythonCore\2.2\Help; Flags: uninsdeletekeyifempty
246Root: HKLM; Subkey: SOFTWARE\Python\PythonCore\2.2\Help\Main Python Documentation; ValueType: string; ValueData: {app}\Doc\index.html; Flags: uninsdeletekey; Components: docs
247Root: HKLM; Subkey: SOFTWARE\Python\PythonCore\2.2\Help\Python Win32 Documentation; ValueType: string; ValueData: {app}\lib\site-packages\PyWin32.chm; Flags: uninsdeletekey; Components: docs
248
249[_ISTool]
250EnableISX=true
251
252
253[Code]
254Program Setup;
255
256Function IsAdminNotLoggedOn(): Boolean;
257begin
258 Result := Not IsAdminLoggedOn();
259end;
260
261begin
262end.
263
264
265
266
267[UninstallDelete]
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000268Name: {app}\Lib\compiler\*.pyc; Type: files
269Name: {app}\Lib\compiler\*.pyo; Type: files
270Name: {app}\Lib\compiler; Type: dirifempty
Martin v. Löwis04570db2003-10-31 14:02:41 +0000271Name: {app}\Lib\distutils\command\*.pyc; Type: files
272Name: {app}\Lib\distutils\command\*.pyo; Type: files
273Name: {app}\Lib\distutils\command; Type: dirifempty
274Name: {app}\Lib\distutils\*.pyc; Type: files
275Name: {app}\Lib\distutils\*.pyo; Type: files
276Name: {app}\Lib\distutils; Type: dirifempty
277Name: {app}\Lib\email\test\*.pyc; Type: files
278Name: {app}\Lib\email\test\*.pyo; Type: files
279Name: {app}\Lib\email\test; Type: dirifempty
280Name: {app}\Lib\email\*.pyc; Type: files
281Name: {app}\Lib\email\*.pyo; Type: files
282Name: {app}\Lib\email; Type: dirifempty
283Name: {app}\Lib\encodings\*.pyc; Type: files
284Name: {app}\Lib\encodings\*.pyo; Type: files
285Name: {app}\Lib\encodings; Type: dirifempty
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000286Name: {app}\Lib\hotshot\*.pyc; Type: files
287Name: {app}\Lib\hotshot\*.pyo; Type: files
288Name: {app}\Lib\hotshot; Type: dirifempty
Martin v. Löwis04570db2003-10-31 14:02:41 +0000289Name: {app}\Lib\lib-old\*.pyc; Type: files
290Name: {app}\Lib\lib-old\*.pyo; Type: files
291Name: {app}\Lib\lib-old; Type: dirifempty
Georg Brandl6e47a332008-05-17 19:15:58 +0000292Name: {app}\Lib\tkinter\*.pyc; Type: files
293Name: {app}\Lib\tkinter\*.pyo; Type: files
294Name: {app}\Lib\tkinter; Type: dirifempty
Martin v. Löwis04570db2003-10-31 14:02:41 +0000295Name: {app}\Lib\test\*.pyc; Type: files
296Name: {app}\Lib\test\*.pyo; Type: files
297Name: {app}\Lib\test; Type: dirifempty
298Name: {app}\Lib\xml\dom\*.pyc; Type: files
299Name: {app}\Lib\xml\dom\*.pyo; Type: files
300Name: {app}\Lib\xml\dom; Type: dirifempty
301Name: {app}\Lib\xml\parsers\*.pyc; Type: files
302Name: {app}\Lib\xml\parsers\*.pyo; Type: files
303Name: {app}\Lib\xml\parsers; Type: dirifempty
304Name: {app}\Lib\xml\sax\*.pyc; Type: files
305Name: {app}\Lib\xml\sax\*.pyo; Type: files
306Name: {app}\Lib\xml\sax; Type: dirifempty
307Name: {app}\Lib\xml\*.pyc; Type: files
308Name: {app}\Lib\xml\*.pyo; Type: files
309Name: {app}\Lib\xml; Type: dirifempty
310
311Name: {app}\Lib\site-packages\win32; Type: filesandordirs
312Name: {app}\Lib\site-packages\win32com; Type: filesandordirs
313Name: {app}\Lib\site-packages\win32comext; Type: filesandordirs
314Name: {app}\Lib\site-packages\pythoncom.py*; Type: files
315Name: {app}\Lib\site-packages; Type: dirifempty
316
317Name: {app}\Lib\*.pyc; Type: files
318Name: {app}\Lib; Type: dirifempty
319
320Name: {app}\Tools\pynche\*.pyc; Type: files
321Name: {app}\Tools\pynche\*.pyo; Type: files
322Name: {app}\Tools\pynche; Type: dirifempty
323
324Name: {app}\Tools\idle\*.pyc; Type: files
325Name: {app}\Tools\idle\*.pyo; Type: files
326Name: {app}\Tools\idle; Type: dirifempty
327
328Name: {app}\Tools\scripts\*.pyc; Type: files
329Name: {app}\Tools\scripts\*.pyo; Type: files
330Name: {app}\Tools\scripts; Type: dirifempty
331
332Name: {app}\Tools\versioncheck\*.pyc; Type: files
333Name: {app}\Tools\versioncheck\*.pyo; Type: files
334Name: {app}\Tools\versioncheck; Type: dirifempty
335
336Name: {app}\Tools\webchecker\*.pyc; Type: files
337Name: {app}\Tools\webchecker\*.pyo; Type: files
338Name: {app}\Tools\webchecker; Type: dirifempty
339
340Name: {app}\Tools; Type: dirifempty
Tim Peters7e5dcf62001-07-20 09:32:16 +0000341