DEVEL15-windows-nsis-installer-20080130
[openafs.git] / src / WINNT / install / NSIS / OpenAFS.nsi
1 !define RELEASE 1
2 ; OpenAFS Install Script for NSIS
3 ; This version compiles with NSIS v2.07
4 ;
5 ; Originally written by Rob Murawski <rsm4@ieee.org>
6 ;
7 ;Redistribution and use in source and binary forms, with or without modification, are permitted
8 ;provided that the following conditions are met:
9 ;
10 ;  Redistributions of source code must retain the above copyright notice, this list of conditions
11 ;  and the following disclaimer. Redistributions in binary form must reproduce the above copyright
12 ;  notice, this list of conditions and the following disclaimer in the documentation and/or other
13 ;  materials provided with the distribution. The name of the author may not be used to endorse or
14 ;  promote products derived from this software without specific prior written permission.
15 ;
16 ;  THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
17 ;  INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
18 ;  PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
19 ;  INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
20 ;  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
21 ;  BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
22 ;  STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
23 ;  USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 ;
25 ;
26 ;     Some code originally based on:
27 ;     NSIS Modern User Interface version 1.63
28 ;     MultiLanguage Example Script
29 ;     Written by Joost Verburg
30
31 ; Read in the environment information
32 !include ${INCLUDEDIR}\nsi-includes.nsi
33
34 !ifndef RELEASE
35 !ifndef DEBUG
36 Name "OpenAFS ${AFS_VERSION} ${__DATE__} ${__TIME__}"
37 !else
38 Name "OpenAFS ${AFS_VERSION} ${__DATE__} ${__TIME__} Checked/Debug"
39 !endif               ; End DEBUG/!DEBUG
40 !else
41 !ifndef DEBUG
42 Name "OpenAFS ${AFS_VERSION}"
43 !else                ; DEBUG
44 Name "OpenAFS ${AFS_VERSION} Checked/Debug"
45 !endif               ; End DEBUG/!DEBUG
46 !endif
47 VIProductVersion "${AFS_VERSION}.00"
48 VIAddVersionKey "ProductName" "OpenAFS"
49 VIAddVersionKey "CompanyName" "OpenAFS.org"
50 VIAddVersionKey "ProductVersion" ${AFS_VERSION}
51 VIAddVersionKey "FileVersion" ${AFS_VERSION}
52 VIAddVersionKey "FileDescription" "OpenAFS for Windows Installer"
53 VIAddVersionKey "LegalCopyright" "(C)2000-2007"
54 !ifdef DEBUG
55 VIAddVersionKey "PrivateBuild" "Checked/Debug"
56 !endif               ; End DEBUG
57
58
59 !include "MUI.nsh"
60 !include Sections.nsh
61
62 ;--------------------------------
63 ;Configuration
64
65 !define REPLACEDLL_NOREGISTER
66
67   ;General
68 !ifndef AFSIFS
69 !ifndef DEBUG
70   OutFile "${AFS_DESTDIR}\WinInstall\OpenAFSforWindows.exe"
71 !else
72   OutFile "${AFS_DESTDIR}\WinInstall\OpenAFSforWindows-DEBUG.exe"
73 !endif
74 !else
75 !ifndef DEBUG
76   OutFile "${AFS_DESTDIR}\WinInstall\OpenAFSforWindows-IFS.exe"
77 !else
78   OutFile "${AFS_DESTDIR}\WinInstall\OpenAFSforWindows-IFS-DEBUG.exe"
79 !endif
80 !endif
81   SilentInstall normal
82   SetCompressor /solid lzma
83   !define MUI_ICON "..\..\client_config\OpenAFS.ico"
84   !define MUI_UNICON "..\..\client_config\OpenAFS.ico"
85   !define AFS_COMPANY_NAME "OpenAFS"
86   !define AFS_PRODUCT_NAME "OpenAFS"
87   !define AFS_REGKEY_ROOT "Software\TransarcCorporation"
88   !define NID_PLUGIN_MGR  "Software\MIT\NetIDMgr\PluginManager"
89   CRCCheck force
90
91   ;Folder selection page
92   InstallDir "$PROGRAMFILES\OpenAFS"      ; Install to shorter path
93   
94   ;Remember install folder
95   InstallDirRegKey HKCU ${AFS_REGKEY_ROOT} ""
96   
97   ;Remember the installer language
98   !define MUI_LANGDLL_REGISTRY_ROOT "HKCU" 
99   !define MUI_LANGDLL_REGISTRY_KEY ${AFS_REGKEY_ROOT}
100   !define MUI_LANGDLL_REGISTRY_VALUENAME "Installer Language"
101   
102   ;Where are the files?
103   !define AFS_CLIENT_BUILDDIR "${AFS_DESTDIR}\root.client\usr\vice\etc"
104   !define AFS_WININSTALL_DIR "${AFS_DESTDIR}\WinInstall\Config"
105   !define AFS_BUILD_INCDIR "${AFS_DESTDIR}\include"
106   !define AFS_CLIENT_LIBDIR "${AFS_DESTDIR}\lib"
107   !define AFS_SERVER_BUILDDIR "${AFS_DESTDIR}\root.server\usr\afs\bin"
108   !define AFS_ETC_BUILDDIR "${AFS_DESTDIR}\etc"
109   !define SYSTEMDIR   "$%SystemRoot%\System32" 
110   
111 ;--------------------------------
112 ;Modern UI Configuration
113
114   !define MUI_LICENSEPAGE
115   !define MUI_CUSTOMPAGECOMMANDS
116   !define MUI_WELCOMEPAGE
117   !define MUI_COMPONENTSPAGE
118   !define MUI_COMPONENTSPAGE_SMALLDESC
119   !define MUI_DIRECTORYPAGE
120
121   !define MUI_ABORTWARNING
122   !define MUI_FINISHPAGE
123   
124   !define MUI_UNINSTALLER
125   !define MUI_UNCONFIRMPAGE
126   
127   
128   !insertmacro MUI_PAGE_WELCOME
129   !insertmacro MUI_PAGE_LICENSE "Licenses.rtf"
130   !insertmacro MUI_PAGE_COMPONENTS
131   !insertmacro MUI_PAGE_DIRECTORY
132   Page custom AFSPageGetCellServDB
133   Page custom AFSPageGetCellName
134   Page custom AFSPageConfigAFSCreds
135   !insertmacro MUI_PAGE_INSTFILES
136   !insertmacro MUI_PAGE_FINISH
137   
138 ;--------------------------------
139 ;Languages
140
141   !insertmacro MUI_LANGUAGE "English"
142   ;!insertmacro MUI_LANGUAGE "French"
143   !insertmacro MUI_LANGUAGE "German"
144   !insertmacro MUI_LANGUAGE "Spanish"
145   !insertmacro MUI_LANGUAGE "SimpChinese"
146   !insertmacro MUI_LANGUAGE "TradChinese"    
147   !insertmacro MUI_LANGUAGE "Japanese"
148   !insertmacro MUI_LANGUAGE "Korean"
149   ;!insertmacro MUI_LANGUAGE "Italian"
150   ;!insertmacro MUI_LANGUAGE "Dutch"
151   ;!insertmacro MUI_LANGUAGE "Danish"
152   ;!insertmacro MUI_LANGUAGE "Greek"
153   ;!insertmacro MUI_LANGUAGE "Russian"
154   !insertmacro MUI_LANGUAGE "PortugueseBR"
155   ;!insertmacro MUI_LANGUAGE "Polish"
156   ;!insertmacro MUI_LANGUAGE "Ukrainian"
157   ;!insertmacro MUI_LANGUAGE "Czech"
158   ;!insertmacro MUI_LANGUAGE "Slovak"
159   ;!insertmacro MUI_LANGUAGE "Croatian"
160   ;!insertmacro MUI_LANGUAGE "Bulgarian"
161   ;!insertmacro MUI_LANGUAGE "Hungarian"
162   ;!insertmacro MUI_LANGUAGE "Thai"
163   ;!insertmacro MUI_LANGUAGE "Romanian"
164   ;!insertmacro MUI_LANGUAGE "Macedonian"
165   ;!insertmacro MUI_LANGUAGE "Turkish"
166   
167 ;--------------------------------
168 ;Language Strings
169     
170   ;Descriptions
171   LangString DESC_SecCopyUI ${LANG_ENGLISH} "OpenAFS for Windows: English"
172   ;LangString DESC_SecCopyUI ${LANG_FRENCH} "OpenAFS for Windows: French"
173   LangString DESC_SecCopyUI ${LANG_GERMAN} "OpenAFS for Windows: German"
174   LangString DESC_SecCopyUI ${LANG_SPANISH} "OpenAFS for Windows: Spanish"
175   LangString DESC_SecCopyUI ${LANG_SIMPCHINESE} "OpenAFS for Windows: Simplified Chinese"
176   LangString DESC_SecCopyUI ${LANG_TRADCHINESE} "OpenAFS for Windows: Traditional Chinese description"
177   LangString DESC_SecCopyUI ${LANG_JAPANESE} "OpenAFS for Windows: Japanese description"
178   LangString DESC_SecCopyUI ${LANG_KOREAN} "OpenAFS for Windows: Korean description"
179   ;LangString DESC_SecCopyUI ${LANG_ITALIAN} "OpenAFS for Windows: Italian description"
180   ;LangString DESC_SecCopyUI ${LANG_DUTCH} "OpenAFS for Windows: Dutch description"
181   ;LangString DESC_SecCopyUI ${LANG_DANISH} "OpenAFS for Windows: Danish description"
182   ;LangString DESC_SecCopyUI ${LANG_GREEK} "OpenAFS for Windows: Greek description"
183   ;LangString DESC_SecCopyUI ${LANG_RUSSIAN} "OpenAFS for Windows: Russian description"
184   LangString DESC_SecCopyUI ${LANG_PORTUGUESEBR} "OpenAFS for Windows: Portuguese (Brasil) description"
185   ;LangString DESC_SecCopyUI ${LANG_POLISH} "OpenAFS for Windows: Polish description"
186   ;LangString DESC_SecCopyUI ${LANG_UKRAINIAN} "OpenAFS for Windows: Ukrainian description"
187   ;LangString DESC_SecCopyUI ${LANG_CZECH} "OpenAFS for Windows: Czechian description"
188   ;LangString DESC_SecCopyUI ${LANG_SLOVAK} "OpenAFS for Windows: Slovakian description"
189   ;LangString DESC_SecCopyUI ${LANG_CROATIAN} "OpenAFS for Windows: Slovakian description"
190   ;LangString DESC_SecCopyUI ${LANG_BULGARIAN} "OpenAFS for Windows: Bulgarian description"
191   ;LangString DESC_SecCopyUI ${LANG_HUNGARIAN} "OpenAFS for Windows: Hungarian description"
192   ;LangString DESC_SecCopyUI ${LANG_THAI} "OpenAFS for Windows: Thai description"
193   ;LangString DESC_SecCopyUI ${LANG_ROMANIAN} "OpenAFS for Windows: Romanian description"
194   ;LangString DESC_SecCopyUI ${LANG_MACEDONIAN} "OpenAFS for Windows: Macedonian description"
195   ;LangString DESC_SecCopyUI ${LANG_TURKISH} "OpenAFS for Windows: Turkish description"
196
197   LangString DESC_secClient ${LANG_ENGLISH} "OpenAFS Client: Allows you to access AFS from your Windows PC."
198   LangString DESC_secClient ${LANG_GERMAN} "OpenAFS Client: Allows you to access AFS from your Windows PC."
199   LangString DESC_secClient ${LANG_SPANISH} "OpenAFS Client: Allows you to access AFS from your Windows PC."
200   LangString DESC_secClient ${LANG_SIMPCHINESE} "OpenAFS Client: Allows you to access AFS from your Windows PC."
201   LangString DESC_secClient ${LANG_TRADCHINESE} "OpenAFS Client: Allows you to access AFS from your Windows PC."
202   LangString DESC_secClient ${LANG_JAPANESE} "OpenAFS Client: Allows you to access AFS from your Windows PC."
203   LangString DESC_secClient ${LANG_KOREAN} "OpenAFS Client: Allows you to access AFS from your Windows PC."
204   LangString DESC_secClient ${LANG_PORTUGUESEBR} "OpenAFS Client: Allows you to access AFS from your Windows PC."
205   
206   LangString DESC_secLoopback ${LANG_ENGLISH} "MS Loopback adapter: Installs the adapter for a more reliable AFS client."
207   LangString DESC_secLoopback ${LANG_GERMAN} "MS Loopback adapter: Installs the adapter for a more reliable AFS client."
208   LangString DESC_secLoopback ${LANG_SPANISH} "MS Loopback adapter: Installs the adapter for a more reliable AFS client."
209   LangString DESC_secLoopback ${LANG_SIMPCHINESE} "MS Loopback adapter: Installs the adapter for a more reliable AFS client."
210   LangString DESC_secLoopback ${LANG_TRADCHINESE} "MS Loopback adapter: Installs the adapter for a more reliable AFS client."
211   LangString DESC_secLoopback ${LANG_JAPANESE} "MS Loopback adapter: Installs the adapter for a more reliable AFS client."
212   LangString DESC_secLoopback ${LANG_KOREAN} "MS Loopback adapter: Installs the adapter for a more reliable AFS client."
213   LangString DESC_secLoopback ${LANG_PORTUGUESEBR} "MS Loopback adapter: Installs the adapter for a more reliable AFS client."
214
215   LangString DESC_secServer ${LANG_ENGLISH} "OpenAFS Server: Allows you to run an AFS file server. This option requires the AFS Client."
216   LangString DESC_secServer ${LANG_GERMAN} "OpenAFS Server: Allows you to run an AFS file server. This option requires the AFS Client."
217   LangString DESC_secServer ${LANG_SPANISH} "OpenAFS Server: Allows you to run an AFS file server. This option requires the AFS Client."
218   LangString DESC_secServer ${LANG_SIMPCHINESE} "OpenAFS Server: Allows you to run an AFS file server. This option requires the AFS Client."
219   LangString DESC_secServer ${LANG_TRADCHINESE} "OpenAFS Server: Allows you to run an AFS file server. This option requires the AFS Client."
220   LangString DESC_secServer ${LANG_JAPANESE} "OpenAFS Server: Allows you to run an AFS file server. This option requires the AFS Client."
221   LangString DESC_secServer ${LANG_KOREAN} "OpenAFS Server: Allows you to run an AFS file server. This option requires the AFS Client."
222   LangString DESC_secServer ${LANG_PORTUGUESEBR} "OpenAFS Server: Allows you to run an AFS file server. This option requires the AFS Client."
223   
224   LangString DESC_secControl ${LANG_ENGLISH} "Control Center: GUI utilities for managing and configuring AFS servers.  This option requires the AFS Client."
225   LangString DESC_secControl ${LANG_GERMAN} "Control Center: GUI utilities for managing and configuring AFS servers.  This option requires the AFS Client."
226   LangString DESC_secControl ${LANG_SPANISH} "Control Center: GUI utilities for managing and configuring AFS servers.  This option requires the AFS Client."
227   LangString DESC_secControl ${LANG_SIMPCHINESE} "Control Center: GUI utilities for managing and configuring AFS servers.  This option requires the AFS Client."
228   LangString DESC_secControl ${LANG_TRADCHINESE} "Control Center: GUI utilities for managing and configuring AFS servers.  This option requires the AFS Client."
229   LangString DESC_secControl ${LANG_JAPANESE} "Control Center: GUI utilities for managing and configuring AFS servers.  This option requires the AFS Client."
230   LangString DESC_secControl ${LANG_KOREAN} "Control Center: GUI utilities for managing and configuring AFS servers.  This option requires the AFS Client."
231   LangString DESC_secControl ${LANG_PORTUGUESEBR} "Control Center: GUI utilities for managing and configuring AFS servers.  This option requires the AFS Client."
232   
233   LangString DESC_secDocs ${LANG_ENGLISH} "Supplemental Documentation: Additional documentation for using OpenAFS."
234   LangString DESC_secDocs ${LANG_GERMAN} "Supplemental Documentation: Additional documentation for using OpenAFS."
235   LangString DESC_secDocs ${LANG_SPANISH} "Supplemental Documentation: Additional documentation for using OpenAFS."
236   LangString DESC_secDocs ${LANG_SIMPCHINESE} "Supplemental Documentation: Additional documentation for using OpenAFS."
237   LangString DESC_secDocs ${LANG_TRADCHINESE} "Supplemental Documentation: Additional documentation for using OpenAFS."
238   LangString DESC_secDocs ${LANG_JAPANESE} "Supplemental Documentation: Additional documentation for using OpenAFS."
239   LangString DESC_secDocs ${LANG_KOREAN} "Supplemental Documentation: Additional documentation for using OpenAFS."
240   LangString DESC_secDocs ${LANG_PORTUGUESEBR} "Supplemental Documentation: Additional documentation for using OpenAFS."
241   
242   LangString DESC_secSDK ${LANG_ENGLISH} "SDK: Header files and libraries for developing software with OpenAFS."
243   LangString DESC_secSDK ${LANG_GERMAN} "SDK: Header files and libraries for developing software with OpenAFS."
244   LangString DESC_secSDK ${LANG_SPANISH} "SDK: Header files and libraries for developing software with OpenAFS."
245   LangString DESC_secSDK ${LANG_SIMPCHINESE} "SDK: Header files and libraries for developing software with OpenAFS."
246   LangString DESC_secSDK ${LANG_TRADCHINESE} "SDK: Header files and libraries for developing software with OpenAFS."
247   LangString DESC_secSDK ${LANG_JAPANESE} "SDK: Header files and libraries for developing software with OpenAFS."
248   LangString DESC_secSDK ${LANG_KOREAN} "SDK: Header files and libraries for developing software with OpenAFS."
249   LangString DESC_secSDK ${LANG_PORTUGUESEBR} "SDK: Header files and libraries for developing software with OpenAFS."
250   
251   LangString DESC_secDEBUG ${LANG_ENGLISH} "Debug symbols: Used for debugging problems with OpenAFS."
252   LangString DESC_secDEBUG ${LANG_GERMAN} "Debug symbols: Used for debugging problems with OpenAFS."
253   LangString DESC_secDEBUG ${LANG_SPANISH} "Debug symbols: Used for debugging problems with OpenAFS."
254   LangString DESC_secDEBUG ${LANG_SIMPCHINESE} "Debug symbols: Used for debugging problems with OpenAFS."
255   LangString DESC_secDEBUG ${LANG_TRADCHINESE} "Debug symbols: Used for debugging problems with OpenAFS."
256   LangString DESC_secDEBUG ${LANG_JAPANESE} "Debug symbols: Used for debugging problems with OpenAFS."
257   LangString DESC_secDEBUG ${LANG_KOREAN} "Debug symbols: Used for debugging problems with OpenAFS."
258   LangString DESC_secDEBUG ${LANG_PORTUGUESEBR} "Debug symbols: Used for debugging problems with OpenAFS."
259
260 ; Popup error messages
261   LangString CellError ${LANG_ENGLISH} "You must specify a valid CellServDB file to copy during install"
262   LangString CellError ${LANG_GERMAN} "You must specify a valid CellServDB file to copy during the install"
263   LangString CellError ${LANG_SPANISH} "You must specify a valid CellServDB file to copy during the install"
264   LangString CellError ${LANG_SIMPCHINESE} "You must specify a valid CellServDB file to copy during the install"
265   LangString CellError ${LANG_TRADCHINESE} "You must specify a valid CellServDB file to copy during the install"
266   LangString CellError ${LANG_JAPANESE} "You must specify a valid CellServDB file to copy during the install"
267   LangString CellError ${LANG_KOREAN} "You must specify a valid CellServDB file to copy during the install"
268   LangString CellError ${LANG_PORTUGUESEBR} "You must specify a valid CellServDB file to copy during the install"
269   
270   LangString CellNameError ${LANG_ENGLISH} "You must specify a cell name for your client to use."
271   LangString CellNameError ${LANG_GERMAN} "You must specify a cell name for your client to use."
272   LangString CellNameError ${LANG_SPANISH} "You must specify a cell name for your client to use."
273   LangString CellNameError ${LANG_SIMPCHINESE} "You must specify a cell name for your client to use."
274   LangString CellNameError ${LANG_TRADCHINESE} "You must specify a cell name for your client to use."
275   LangString CellNameError ${LANG_JAPANESE} "You must specify a cell name for your client to use."
276   LangString CellNameError ${LANG_KOREAN} "You must specify a cell name for your client to use."
277   LangString CellNameError ${LANG_PORTUGUESEBR} "You must specify a cell name for your client to use."
278   
279   LangString URLError ${LANG_ENGLISH} "You must specify a URL if you choose the option to download the CellServDB."
280   LangString URLError ${LANG_GERMAN} "You must specify a URL if you choose the option to download the CellServDB."
281   LangString URLError ${LANG_SPANISH} "You must specify a URL if you choose the option to download the CellServDB."
282   LangString URLError ${LANG_SIMPCHINESE} "You must specify a URL if you choose the option to download the CellServDB."
283   LangString URLError ${LANG_TRADCHINESE} "You must specify a URL if you choose the option to download the CellServDB."
284   LangString URLError ${LANG_JAPANESE} "You must specify a URL if you choose the option to download the CellServDB."
285   LangString URLError ${LANG_KOREAN} "You must specify a URL if you choose the option to download the CellServDB."
286   LangString URLError ${LANG_PORTUGUESEBR} "You must specify a URL if you choose the option to download the CellServDB."
287
288   
289 ; Upgrade/re-install strings
290    LangString UPGRADE_CLIENT ${LANG_ENGLISH} "Upgrade AFS Client"
291    LangString UPGRADE_CLIENT ${LANG_GERMAN} "Upgrade AFS Client"
292    LangString UPGRADE_CLIENT ${LANG_SPANISH} "Upgrade AFS Client"
293    LangString UPGRADE_CLIENT ${LANG_SIMPCHINESE} "Upgrade AFS Client"
294    LangString UPGRADE_CLIENT ${LANG_TRADCHINESE} "Upgrade AFS Client"
295    LangString UPGRADE_CLIENT ${LANG_JAPANESE} "Upgrade AFS Client"
296    LangString UPGRADE_CLIENT ${LANG_KOREAN} "Upgrade AFS Client"
297    LangString UPGRADE_CLIENT ${LANG_PORTUGUESEBR} "Upgrade AFS Client"
298  
299    LangString REINSTALL_CLIENT ${LANG_ENGLISH} "Re-install AFS Client"
300    LangString REINSTALL_CLIENT ${LANG_GERMAN} "Re-install AFS Client"
301    LangString REINSTALL_CLIENT ${LANG_SPANISH} "Re-install AFS Client"
302    LangString REINSTALL_CLIENT ${LANG_SIMPCHINESE} "Re-install AFS Client"
303    LangString REINSTALL_CLIENT ${LANG_TRADCHINESE} "Re-install AFS Client"
304    LangString REINSTALL_CLIENT ${LANG_JAPANESE} "Re-install AFS Client"
305    LangString REINSTALL_CLIENT ${LANG_KOREAN} "Re-install AFS Client"
306    LangString REINSTALL_CLIENT ${LANG_PORTUGUESEBR} "Re-install AFS Client"
307   
308    LangString UPGRADE_SERVER ${LANG_ENGLISH} "Upgrade AFS Server"
309    LangString UPGRADE_SERVER ${LANG_GERMAN} "Upgrade AFS Server"
310    LangString UPGRADE_SERVER ${LANG_SPANISH} "Upgrade AFS Server"
311    LangString UPGRADE_SERVER ${LANG_SIMPCHINESE} "Upgrade AFS Server"
312    LangString UPGRADE_SERVER ${LANG_TRADCHINESE} "Upgrade AFS Server"
313    LangString UPGRADE_SERVER ${LANG_JAPANESE} "Upgrade AFS Server"
314    LangString UPGRADE_SERVER ${LANG_KOREAN} "Upgrade AFS Server"
315    LangString UPGRADE_SERVER ${LANG_PORTUGUESEBR} "Upgrade AFS Server"
316     
317    LangString REINSTALL_SERVER ${LANG_ENGLISH} "Re-install AFS Server"
318    LangString REINSTALL_SERVER ${LANG_GERMAN} "Re-install AFS Server"
319    LangString REINSTALL_SERVER ${LANG_SPANISH} "Re-install AFS Server"
320    LangString REINSTALL_SERVER ${LANG_SIMPCHINESE} "Re-install AFS Server"
321    LangString REINSTALL_SERVER ${LANG_TRADCHINESE} "Re-install AFS Server"
322    LangString REINSTALL_SERVER ${LANG_JAPANESE} "Re-install AFS Server"
323    LangString REINSTALL_SERVER ${LANG_KOREAN} "Re-install AFS Server"
324    LangString REINSTALL_SERVER ${LANG_PORTUGUESEBR} "Re-install AFS Server"
325   
326   ReserveFile "CellServPage.ini"
327   ReserveFile "AFSCell.ini"
328   !insertmacro MUI_RESERVEFILE_INSTALLOPTIONS ;InstallOptions plug-in
329   !insertmacro MUI_RESERVEFILE_LANGDLL ;Language selection dialog
330
331   RequestExecutionLevel admin
332
333 ;--------------------------------
334 ; Macros
335 ; Macro - Upgrade DLL File
336 ; Written by Joost Verburg
337 ; ------------------------
338 ;
339 ; Parameters:
340 ; LOCALFILE   - Location of the new DLL file (on the compiler system)
341 ; DESTFILE    - Location of the DLL file that should be upgraded
342 ;              (on the user's system)
343 ; TEMPBASEDIR - Directory on the user's system to store a temporary file
344 ;               when the system has to be rebooted.
345 ;               For Win9x support, this should be on the same volume as the
346 ;               DESTFILE!
347 ;               The Windows temp directory could be located on any volume,
348 ;               so you cannot use  this directory.
349 ;
350 ; Define REPLACEDLL_NOREGISTER if you want to upgrade a DLL that does not
351 ; have to be registered.
352 ;
353 ; Note: If you want to support Win9x, you can only use
354 ;       short filenames (8.3).
355 ;
356 ; Example of usage:
357 ; !insertmacro ReplaceDLL "dllname.dll" "$SYSDIR\dllname.dll" "$SYSDIR"
358 ;
359
360 !macro ReplaceDLL LOCALFILE DESTFILE TEMPBASEDIR
361
362   Push $R0
363   Push $R1
364   Push $R2
365   Push $R3
366   Push $R4
367   Push $R5
368
369   ;------------------------
370   ;Unique number for labels
371
372   !define REPLACEDLL_UNIQUE ${__LINE__}
373
374   ;------------------------
375   ;Copy the parameters used on run-time to a variable
376   ;This allows the usage of variables as paramter
377
378   StrCpy $R4 "${DESTFILE}"
379   StrCpy $R5 "${TEMPBASEDIR}"
380
381   ;------------------------
382   ;Check file and version
383   ;
384   IfFileExists $R4 0 replacedll.copy_${REPLACEDLL_UNIQUE}
385   
386   ;ClearErrors
387   ;  GetDLLVersionLocal "${LOCALFILE}" $R0 $R1
388   ;  GetDLLVersion $R4 $R2 $R3
389   ;IfErrors replacedll.upgrade_${REPLACEDLL_UNIQUE}
390   ;
391   ;IntCmpU $R0 $R2 0 replacedll.done_${REPLACEDLL_UNIQUE} \
392   ;  replacedll.upgrade_${REPLACEDLL_UNIQUE}
393   ;IntCmpU $R1 $R3 replacedll.done_${REPLACEDLL_UNIQUE} \
394   ;  replacedll.done_${REPLACEDLL_UNIQUE} \
395   ;  replacedll.upgrade_${REPLACEDLL_UNIQUE}
396
397   ;------------------------
398   ;Let's replace the DLL!
399
400   SetOverwrite try
401
402   ;replacedll.upgrade_${REPLACEDLL_UNIQUE}:
403     !ifndef REPLACEDLL_NOREGISTER
404       ;Unregister the DLL
405       UnRegDLL $R4
406     !endif
407
408   ;------------------------
409   ;Try to copy the DLL directly
410
411   ClearErrors
412     StrCpy $R0 $R4
413     Call :replacedll.file_${REPLACEDLL_UNIQUE}
414   IfErrors 0 replacedll.noreboot_${REPLACEDLL_UNIQUE}
415
416   ;------------------------
417   ;DLL is in use. Copy it to a temp file and Rename it on reboot.
418
419   GetTempFileName $R0 $R5
420     Call :replacedll.file_${REPLACEDLL_UNIQUE}
421   Rename /REBOOTOK $R0 $R4
422
423   ;------------------------
424   ;Register the DLL on reboot
425
426   !ifndef REPLACEDLL_NOREGISTER
427     WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\RunOnce" \
428       "Register $R4" 'rundll32.exe "$R4",DllRegisterServer'
429   !endif
430
431   Goto replacedll.done_${REPLACEDLL_UNIQUE}
432
433   ;------------------------
434   ;DLL does not exist - just extract
435
436   replacedll.copy_${REPLACEDLL_UNIQUE}:
437     StrCpy $R0 $R4
438     Call :replacedll.file_${REPLACEDLL_UNIQUE}
439
440   ;------------------------
441   ;Register the DLL
442
443   replacedll.noreboot_${REPLACEDLL_UNIQUE}:
444     !ifndef REPLACEDLL_NOREGISTER
445       RegDLL $R4
446     !endif
447
448   ;------------------------
449   ;Done
450
451   replacedll.done_${REPLACEDLL_UNIQUE}:
452
453   Pop $R5
454   Pop $R4
455   Pop $R3
456   Pop $R2
457   Pop $R1
458   Pop $R0
459
460   ;------------------------
461   ;End
462
463   Goto replacedll.end_${REPLACEDLL_UNIQUE}
464
465   ;------------------------
466   ;Called to extract the DLL
467
468   replacedll.file_${REPLACEDLL_UNIQUE}:
469     File /oname=$R0 "${LOCALFILE}"
470     Return
471
472   replacedll.end_${REPLACEDLL_UNIQUE}:
473
474  ;------------------------
475  ;Restore settings
476
477  SetOverwrite lastused
478  
479  !undef REPLACEDLL_UNIQUE
480
481 !macroend
482
483
484 ;--------------------------------
485 ;Reserve Files
486   
487   ;Things that need to be extracted on first (keep these lines before any File command!)
488   ;Only useful for BZIP2 compression
489   !insertmacro MUI_RESERVEFILE_LANGDLL
490   
491 ;--------------------------------
492 ; User Variables
493
494 var REG_SUB_KEY
495 var REG_VALUE
496 var REG_DATA_1
497 var REG_DATA_2
498 var REG_DATA_3
499 var REG_DATA_4
500
501
502 ;--------------------------------
503 ;Installer Sections
504
505 ;----------------------
506 ; OpenAFS CLIENT
507 Section "!AFS Client" secClient
508
509   SetShellVarContext all
510
511   ; Check for bad previous installation (if we are doing a new install)
512   Call IsAnyAFSInstalled
513   Pop $R0
514   StrCmp $R0 "0" +1 skipCheck
515   Call CheckPathForAFS
516   skipCheck:
517
518   ; Stop any running services or we can't replace the files
519   ; Stop the running processes
520   GetTempFileName $R0
521   File /oname=$R0 "${AFS_WININSTALL_DIR}\Killer.exe"   ; Might not have the MSVCR71.DLL file to run
522   nsExec::Exec '$R0 afsd_service.exe'
523   nsExec::Exec '$R0 afscreds.exe'
524   Exec "afscreds.exe -z"
525   ; in case we are upgrading an old version that does not support -z
526   nsExec::Exec '$R0 afscreds.exe'
527 !IFDEF INSTALL_KFW
528   ;nsExec::Exec '$R0 krbcc32s.exe'
529 !ENDIF
530
531   nsExec::Exec "net stop TransarcAFSDaemon"
532   nsExec::Exec "net stop TransarcAFSServer"
533   
534    ; Do client components
535   SetOutPath "$INSTDIR\Client\Program"
536   File "${AFS_CLIENT_BUILDDIR}\afsshare.exe"
537   !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\libosi.dll" "$INSTDIR\Client\Program\libosi.dll" "$INSTDIR"
538   !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\libafsconf.dll" "$INSTDIR\Client\Program\libafsconf.dll" "$INSTDIR"
539   File "${AFS_CLIENT_BUILDDIR}\klog.exe"
540   File "${AFS_CLIENT_BUILDDIR}\tokens.exe"
541   File "${AFS_CLIENT_BUILDDIR}\unlog.exe"
542   File "${AFS_CLIENT_BUILDDIR}\fs.exe"
543   File "${AFS_CLIENT_BUILDDIR}\afsdacl.exe"
544   File "${AFS_CLIENT_BUILDDIR}\cmdebug.exe"
545   File "${AFS_CLIENT_BUILDDIR}\aklog.exe"
546   !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afscreds.exe"    "$INSTDIR\Client\Program\afscreds.exe"    "$INSTDIR"
547   !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afs_shl_ext.dll" "$INSTDIR\Client\Program\afs_shl_ext.dll" "$INSTDIR"
548   !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afsd_service.exe" "$INSTDIR\Client\Program\afsd_service.exe" "$INSTDIR"
549   File "${AFS_CLIENT_BUILDDIR}\symlink.exe"
550   File "${AFS_DESTDIR}\bin\kpasswd.exe"
551   File "${AFS_SERVER_BUILDDIR}\pts.exe"
552   File "${AFS_SERVER_BUILDDIR}\bos.exe"
553   File "${AFS_SERVER_BUILDDIR}\kas.exe"
554   File "${AFS_SERVER_BUILDDIR}\vos.exe"
555   File "${AFS_SERVER_BUILDDIR}\udebug.exe"
556   File "${AFS_DESTDIR}\bin\translate_et.exe"
557   File "${AFS_DESTDIR}\etc\rxdebug.exe"
558   File "${AFS_DESTDIR}\etc\backup.exe"
559   !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afs_cpa.cpl" "$INSTDIR\Client\Program\afs_cpa.cpl" "$INSTDIR"
560   !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afscred.dll" "$INSTDIR\Client\Program\afscred.dll" "$INSTDIR"
561   !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afscred_en_us.dll" "$INSTDIR\Client\Program\afscred_en_us.dll" "$INSTDIR"
562   File "${AFS_CLIENT_BUILDDIR}\afsplhlp.chm"
563   
564   !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afslogon.dll" "$INSTDIR\Client\Program\afslogon.dll" "$INSTDIR"
565   File "${AFS_CLIENT_BUILDDIR}\afscpcc.exe"
566
567 !ifdef AFSIFS
568   SetOutPath "$SYSDIR"
569 !ifndef DEBUG
570   !insertmacro ReplaceDLL "..\..\afsrdr\objfre_w2K_x86\i386\afsrdr.sys" "$SYSDIR\DRIVERS\afsrdr.sys" "$INSTDIR"
571 !else
572   !insertmacro ReplaceDLL "..\..\afsrdr\objchk_w2K_x86\i386\afsrdr.sys" "$SYSDIR\DRIVERS\afsrdr.sys" "$INSTDIR"
573 !endif
574 !endif
575    
576    Call AFSLangFiles
577
578   ; Get AFS CellServDB file
579   Call afs.GetCellServDB
580
581   GetTempFileName $R0
582   File /oname=$R0 "${AFS_WININSTALL_DIR}\AdminGroup.exe"
583   nsExec::Exec '$R0 -create'
584
585 !ifdef INSTALL_KFW
586   ; Include Kerberos for Windows files in the installer...
587   SetOutPath "$INSTDIR\kfw\bin\"
588   File "${KFW_SOURCE}\bin\*"
589   SetOutPath "$INSTDIR\kfw\doc"
590   File "${KFW_SOURCE}\doc\*"
591 !endif
592    
593   ;Store install folder
594   WriteRegStr HKCU "${AFS_REGKEY_ROOT}\Client" "" $INSTDIR
595   Call AFSCommon.Install
596   
597   ; Write registry entries
598   WriteRegStr HKCR "*\shellex\ContextMenuHandlers\AFS Client Shell Extension" "" "{DC515C27-6CAC-11D1-BAE7-00C04FD140D2}"
599   WriteRegStr HKCR "CLSID\{DC515C27-6CAC-11D1-BAE7-00C04FD140D2}" "" "AFS Client Shell Extension"
600   WriteRegStr HKCR "CLSID\{DC515C27-6CAC-11D1-BAE7-00C04FD140D2}\InprocServer32" "" "$INSTDIR\Client\Program\afs_shl_ext.dll"
601   WriteRegStr HKCR "CLSID\{DC515C27-6CAC-11D1-BAE7-00C04FD140D2}\InprocServer32" "ThreadingModel" "Apartment"
602   WriteRegStr HKCR "FOLDER\shellex\ContextMenuHandlers\AFS Client Shell Extension" "" "{DC515C27-6CAC-11D1-BAE7-00C04FD140D2}"
603   WriteRegStr HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Approved" "{DC515C27-6CAC-11D1-BAE7-00C04FD140D2}" "AFS Client Shell Extension"
604   WriteRegStr HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Control Panel\Cpls" "afs_cpa" "$INSTDIR\Client\Program\afs_cpa.cpl"
605
606   ; Support for apps that wrote submount data directly to afsdsbmt.ini
607   WriteRegStr HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion\IniFileMapping\afsdsbmt.ini" "AFS Mappings" "USR:Software\OpenAFS\Client\mappings"
608   WriteRegStr HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion\IniFileMapping\afsdsbmt.ini" "AFS Submounts" "SYS:OpenAFS\Client\Submounts"
609   
610   ; AFS Reg entries
611   DeleteRegKey HKLM "${AFS_REGKEY_ROOT}\AFS Client\CurrentVersion"
612   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Client\CurrentVersion" "VersionString" ${AFS_VERSION}
613   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Client\CurrentVersion" "Title" "AFS Client"
614   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Client\CurrentVersion" "Description" "AFS Client"
615   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Client\CurrentVersion" "PathName" "$INSTDIR\Client"
616   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Client\CurrentVersion" "Software Type" "File System"
617   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Client\CurrentVersion" "MajorVersion" ${AFS_MAJORVERSION}
618   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Client\CurrentVersion" "MinorVersion" ${AFS_MINORVERSION}
619   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Client\CurrentVersion" "PatchLevel" ${AFS_PATCHLEVEL}
620   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Client\${AFS_VERSION}" "VersionString" ${AFS_VERSION}
621   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Client\${AFS_VERSION}" "Title" "AFS Client"
622   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Client\${AFS_VERSION}" "Description" "AFS Client"
623   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Client\${AFS_VERSION}" "Software Type" "File System"
624   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Client\${AFS_VERSION}" "PathName" "$INSTDIR\Client\Program"
625   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Client\${AFS_VERSION}" "MajorVersion" ${AFS_MAJORVERSION}
626   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Client\${AFS_VERSION}" "MinorVersion" ${AFS_MINORVERSION}
627   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Client\${AFS_VERSION}" "PatchLevel" ${AFS_PATCHLEVEL}
628 !ifdef DEBUG
629   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Client\CurrentVersion" "Debug" 1
630   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Client\${AFS_VERSION}" "Debug" 1
631 !else
632    ; Delete the DEBUG string
633    DeleteRegValue HKLM "${AFS_REGKEY_ROOT}\AFS Client\CurrentVersion" "Debug"
634    DeleteRegValue HKLM "${AFS_REGKEY_ROOT}\AFS Client\${AFS_VERSION}" "Debug"
635 !endif
636
637   ;NetIDMgr Plug-in Reg Entries
638   WriteRegStr HKLM "${NID_PLUGIN_MGR}\Modules\OpenAFS" "ImagePath" "$INSTDIR\Client\Program\afscred.dll"
639   WriteRegStr HKLM "${NID_PLUGIN_MGR}\Modules\OpenAFS" "Description" "OpenAFS Module"
640   WriteRegStr HKLM "${NID_PLUGIN_MGR}\Modules\OpenAFS" "Vendor" "Secure Endpoints Inc."
641   WriteRegStr HKLM "${NID_PLUGIN_MGR}\Modules\OpenAFS" "PluginList" "AfsCred"
642   WriteRegDWORD HKLM "${NID_PLUGIN_MGR}\Modules\OpenAFS" "NoUnload" "1"
643   
644   WriteRegStr HKLM "${NID_PLUGIN_MGR}\Plugins\AfsCred" "Module" "OpenAFS"
645   WriteRegStr HKLM "${NID_PLUGIN_MGR}\Plugins\AfsCred" "Description" "AFS Credentials Provider"
646   WriteRegStr HKLM "${NID_PLUGIN_MGR}\Plugins\AfsCred" "Dependencies" "Krb5Cred"
647   WriteRegDWORD HKLM "${NID_PLUGIN_MGR}\Plugins\AfsCred" "Type" "1"
648
649    ; On Windows 2000 work around KB301673.  This is fixed in Windows XP and 2003
650    Call GetWindowsVersion
651    Pop $R1
652    StrCmp $R1 "2000" +1 +2
653    WriteRegDWORD HKLM "SYSTEM\CurrentControlSet\Services\NetBT\Parameters" "SmbDeviceEnabled" 0
654   
655   ;Write start menu entries
656   CreateDirectory "$SMPROGRAMS\OpenAFS\Client"
657   CreateShortCut "$SMPROGRAMS\OpenAFS\Uninstall OpenAFS.lnk" "$INSTDIR\Uninstall.exe"
658   
659   ; Create command line options for AFSCreds...
660   StrCpy $R2 ""
661   ReadINIStr $R1 $2 "Field 3" "State"
662   StrCmp $R1 "1" +1 +2
663   StrCpy $R2 "-A "
664   ReadINIStr $R1 $2 "Field 5" "State"
665   StrCmp $R1 "1" +1 +2
666   StrCpy $R2 "$R2-M "
667   ReadINIStr $R1 $2 "Field 7" "State"
668   StrCmp $R1 "1" +1 +2
669   StrCpy $R2 "$R2-N "
670   ReadINIStr $R1 $2 "Field 9" "State"
671   StrCmp $R1 "1" +1 +2
672   StrCpy $R2 "$R2-Q "
673   ReadINIStr $R1 $2 "Field 13" "State"
674   StrCmp $R1 "1" +1 +2
675   StrCpy $R2 "$R2-S"
676  
677   WriteRegStr HKLM "SOFTWARE\OpenAFS\Client" "AfscredsShortcutParams" "$R2"
678   
679   CreateShortCut "$SMPROGRAMS\OpenAFS\Client\Authentication.lnk" "$INSTDIR\Client\Program\afscreds.exe" "$R2"
680   
681   ReadINIStr $R1 $2 "Field 1" "State"
682   StrCmp $R1 "1" +1 +2
683   CreateShortCut "$SMSTARTUP\AFS Credentials.lnk" "$INSTDIR\Client\Program\afscreds.exe" "$R2"
684
685   Push "$INSTDIR\Client\Program"
686   Call AddToUniquePath
687   Push "$INSTDIR\Common"
688   Call AddToUniquePath
689   
690 !ifdef INSTALL_KFW
691   ; Add kfw to path too
692   Push "$INSTDIR\kfw\bin"
693   Call AddToUniquePath
694 !endif
695    
696   ; Create the AFS service
697   SetOutPath "$INSTDIR\Common"
698   File "${AFS_WININSTALL_DIR}\Service.exe"
699   nsExec::Exec "net stop TransarcAFSDaemon"
700   nsExec::Exec "net stop AfsRdr"
701   ;IMPORTANT!  If we are not refreshing the config files, do NOT remove the service
702   ;Don't re-install because it must be present or we wouldn't have passed the Reg check
703  
704   ReadRegStr $R2 HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\Parameters" "Cell"
705   StrCmp $R2 "" +1 skipremove
706   nsExec::Exec '$INSTDIR\Common\Service.exe u TransarcAFSDaemon'
707   nsExec::Exec '$INSTDIR\Common\Service.exe TransarcAFSDaemon "$INSTDIR\Client\Program\afsd_service.exe" "OpenAFS Client Service"'
708   nsExec::Exec '$INSTDIR\Common\Service.exe u AfsRdr'
709 !ifdef AFSIFS
710   nsExec::Exec '$INSTDIR\Common\Service.exe AfsRdr "System32\DRIVERS\afsrdr.sys" "AFS Redirector"'
711 !endif
712 skipremove:
713   Delete "$INSTDIR\Common\service.exe"
714
715   ; Daemon entries
716   WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon" "" ""
717   WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\NetworkProvider" "ProviderPath" "$INSTDIR\Client\Program\afslogon.dll"
718   WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\NetworkProvider" "AuthentProviderPath" "$INSTDIR\Client\Program\afslogon.dll"
719   WriteRegDWORD HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\NetworkProvider" "Class" 2
720   WriteRegDWORD HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\NetworkProvider" "VerboseLogging" 10
721
722   ; Must also add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\NetworkProvider\HwOrder
723   ; and HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\NetworkProvider\Order
724   ; to also include the service name.
725   Call AddProvider
726   ReadINIStr $R0 $1 "Field 7" "State"
727   WriteRegDWORD HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\NetworkProvider" "LogonOptions" $R0
728   WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\NetworkProvider" "LogonScript" "$INSTDIR\Client\Program\afscreds.exe -:%s -x -a -m -n -q"
729   WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\NetworkProvider" "Name" "OpenAFSDaemon"
730
731   ;Write cell name
732   ReadINIStr $R0 $1 "Field 2" "State"
733   WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\Parameters" "Cell" $R0
734   ReadINIStr $R0 $1 "Field 3" "State"
735   WriteRegDWORD HKLM "SOFTWARE\OpenAFS\Client" "ShowTrayIcon" 1
736   WriteRegDWORD HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\Parameters" "SecurityLevel" $R0
737   ReadINIStr $R0 $1 "Field 5" "State"  
738   WriteRegDWORD HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\Parameters" "FreelanceClient" $R0
739   ReadINIStr $R0 $1 "Field 9" "State"
740   WriteRegDWORD HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\Parameters" "UseDNS" $R0
741   WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\Parameters" "NetbiosName" "AFS"
742   WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\Parameters" "MountRoot" "/afs"
743   WriteRegDWORD HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\Parameters" "RxMaxMTU" 1260
744   WriteRegDWORD HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\Parameters" "IsGateway" 0
745   WriteRegDWORD HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\Parameters" "HideDotFiles" 1
746
747   ; Find Lana By Name appears to be causing grief for many people 
748   ; I do not have time to track this down so I am simply going to disable it
749   WriteRegDWORD HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\Parameters" "NoFindLanaByName" 1
750
751   strcpy $REG_SUB_KEY "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon" 
752   strcpy $REG_VALUE   "DependOnGroup" 
753   strcpy $REG_DATA_1  "PNP_TDI"
754   strcpy $REG_DATA_2  ""
755   strcpy $REG_DATA_3  ""
756   strcpy $REG_DATA_4  ""
757   Call RegWriteMultiStr
758   strcpy $REG_SUB_KEY "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon" 
759   strcpy $REG_VALUE   "DependOnService" 
760   strcpy $REG_DATA_1  "Tcpip"
761   strcpy $REG_DATA_2  "NETBIOS"
762   strcpy $REG_DATA_3  "RpcSs"
763 !ifdef AFSIFS
764   strcpy $REG_DATA_4  "AfsRdr"
765 !else
766   strcpy $REG_DATA_4  ""
767 !endif
768   Call RegWriteMultiStr
769 !ifdef AFSIFS
770   strcpy $REG_SUB_KEY "SYSTEM\CurrentControlSet\Services\AfsRdr" 
771   strcpy $REG_VALUE   "DependOnService" 
772   strcpy $REG_DATA_1  "Tcpip"
773   strcpy $REG_DATA_2  ""
774   strcpy $REG_DATA_3  ""
775   strcpy $REG_DATA_4  ""
776   Call RegWriteMultiStr
777 !endif
778
779   ; WinLogon Event Notification
780   WriteRegDWORD HKLM "Software\Microsoft\Windows NT\CurrentVersion\WinLogon\Notify\AfsLogon" "Asynchronous" 0
781   WriteRegDWORD HKLM "Software\Microsoft\Windows NT\CurrentVersion\WinLogon\Notify\AfsLogon" "Impersonate"  1
782   WriteRegStr HKLM "Software\Microsoft\Windows NT\CurrentVersion\WinLogon\Notify\AfsLogon" "DLLName" "afslogon.dll"
783   WriteRegStr HKLM "Software\Microsoft\Windows NT\CurrentVersion\WinLogon\Notify\AfsLogon" "Logon" "AFS_Logon_Event"
784   WriteRegStr HKLM "Software\Microsoft\Windows NT\CurrentVersion\WinLogon\Notify\AfsLogon" "Logoff" "AFS_Logoff_Event"
785   WriteRegStr HKLM "Software\Microsoft\Windows NT\CurrentVersion\WinLogon\Notify\AfsLogon" "Startup" "AFS_Startup_Event"
786
787 ; No longer install KFW Logon Handler - KFW 3.1 and above supports this functionality
788 ;  WriteRegDWORD HKLM "Software\Microsoft\Windows NT\CurrentVersion\WinLogon\Notify\KFWLogon" "Asynchronous" 0
789 ;  WriteRegDWORD HKLM "Software\Microsoft\Windows NT\CurrentVersion\WinLogon\Notify\KFWLogon" "Impersonate"  0
790 ;  WriteRegStr HKLM "Software\Microsoft\Windows NT\CurrentVersion\WinLogon\Notify\KFWLogon" "DLLName" "afslogon.dll"
791 ;  WriteRegStr HKLM "Software\Microsoft\Windows NT\CurrentVersion\WinLogon\Notify\KFWLogon" "Logon" "KFW_Logon_Event"
792
793   SetRebootFlag true
794   
795   WriteUninstaller "$INSTDIR\Uninstall.exe"
796   WriteRegStr HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\OpenAFS" "DisplayIcon" "$INSTDIR\Uninstall.exe,0"  
797   Call CreateDesktopIni
798   
799 SectionEnd
800
801
802
803 ; MS Loopback adapter
804 Section "!MS Loopback Adapter" secLoopback
805
806 Call afs.InstallMSLoopback
807
808 SectionEnd
809
810
811 ;------------------------
812 ; OpenAFS SERVER  
813 Section /o "AFS Server" secServer
814
815   SetShellVarContext all
816
817   ; Check for bad previous installation (if we are doing a new install)
818   Call IsAnyAFSInstalled
819   Pop $R0
820   StrCmp $R0 "0" +1 skipCheck
821   Call CheckPathForAFS
822 skipCheck:
823
824   ; Stop any running services or we can't replace the files
825   ; Stop the running processes
826   GetTempFileName $R0
827   File /oname=$R0 "${AFS_WININSTALL_DIR}\Killer.exe"
828   nsExec::Exec '$R0 afscreds.exe'
829   Exec "afscreds.exe -z"
830   ; in case we are upgrading an old version that does not support -z
831   Sleep 2000
832   nsExec::Exec '$R0 afscreds.exe'
833 !IFDEF INSTALL_KFW
834   ;nsExec::Exec '$R0 krbcc32s.exe'
835 !ENDIF
836
837   Delete $R0
838   
839   nsExec::Exec "net stop TransarcAFSDaemon"
840   nsExec::Exec "net stop TransarcAFSServer"
841
842   CreateDirectory "$INSTDIR\Server\usr\afs\etc"
843   CreateDirectory "$INSTDIR\Server\usr\afs\local"
844   CreateDirectory "$INSTDIR\Server\usr\afs\etc\logs"
845   
846   SetOutPath "$INSTDIR\Server\usr\afs\bin"  
847   File "${AFS_SERVER_BUILDDIR}\afskill.exe"
848   File "${AFS_SERVER_BUILDDIR}\afssvrcfg.exe"
849   File "${AFS_SERVER_BUILDDIR}\asetkey.exe"
850   File "${AFS_SERVER_BUILDDIR}\bosctlsvc.exe"
851   File "${AFS_SERVER_BUILDDIR}\bosserver.exe"
852   File "${AFS_SERVER_BUILDDIR}\buserver.exe"
853   File "${AFS_ETC_BUILDDIR}\butc.exe"
854   File "${AFS_SERVER_BUILDDIR}\fileserver.exe"
855   File "${AFS_ETC_BUILDDIR}\fms.exe"
856   File "${AFS_SERVER_BUILDDIR}\kaserver.exe"
857   File "${AFS_SERVER_BUILDDIR}\ptserver.exe"
858   File "${AFS_SERVER_BUILDDIR}\salvager.exe"
859   File "${AFS_SERVER_BUILDDIR}\upclient.exe"
860   File "${AFS_SERVER_BUILDDIR}\upserver.exe"
861   File "${AFS_SERVER_BUILDDIR}\vlserver.exe"
862   File "${AFS_SERVER_BUILDDIR}\volinfo.exe"
863   File "${AFS_SERVER_BUILDDIR}\volserver.exe"
864  
865  ;AFS Server common files
866  SetOutPath "$INSTDIR\Common"
867  File "${AFS_SERVER_BUILDDIR}\afsvosadmin.dll"
868  File "${AFS_SERVER_BUILDDIR}\afsbosadmin.dll"
869  File "${AFS_SERVER_BUILDDIR}\afscfgadmin.dll"
870  File "${AFS_SERVER_BUILDDIR}\afskasadmin.dll"
871  File "${AFS_SERVER_BUILDDIR}\afsptsadmin.dll"
872
873  SetOutPath "$INSTDIR\Common"
874    Call AFSLangFiles
875    
876    SetOutPath "$SYSDIR"
877   !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afsserver.cpl" "$SYSDIR\afsserver.cpl" "$INSTDIR"
878    
879   ;Store install folder
880   WriteRegStr HKCU "${AFS_REGKEY_ROOT}\AFS Server" "" $INSTDIR
881   
882   DeleteRegKey HKLM "${AFS_REGKEY_ROOT}\AFS Server\CurrentVersion"
883   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Server\CurrentVersion" "VersionString" ${AFS_VERSION}
884   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Server\CurrentVersion" "Title" "AFS Server"
885   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Server\CurrentVersion" "Description" "AFS Server for Windows"
886   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Server\CurrentVersion" "PathName" "$INSTDIR\Server"
887   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Server\CurrentVersion" "Software Type" "File System"
888   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Server\CurrentVersion" "MajorVersion" ${AFS_MAJORVERSION}
889   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Server\CurrentVersion" "MinorVersion" ${AFS_MINORVERSION}
890   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Server\CurrentVersion" "PatchLevel" ${AFS_PATCHLEVEL}
891   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Server\${AFS_VERSION}" "VersionString" ${AFS_VERSION}
892   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Server\${AFS_VERSION}" "Title" "AFS Server"
893   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Server\${AFS_VERSION}" "Description" "AFS Server for Windows"
894   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Server\${AFS_VERSION}" "Software Type" "File System"
895   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Server\${AFS_VERSION}" "PathName" "$INSTDIR\Server"
896   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Server\${AFS_VERSION}" "MajorVersion" ${AFS_MAJORVERSION}
897   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Server\${AFS_VERSION}" "MinorVersion" ${AFS_MINORVERSION}
898   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Server\${AFS_VERSION}" "PatchLevel" ${AFS_PATCHLEVEL}
899 !ifdef DEBUG
900   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Server\CurrentVersion" "Debug" 1
901   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Server\${AFS_VERSION}" "Debug" 1
902 !else
903    ; Delete the DEBUG string
904    DeleteRegValue HKLM "${AFS_REGKEY_ROOT}\AFS Server\CurrentVersion" "Debug"
905    DeleteRegValue HKLM "${AFS_REGKEY_ROOT}\AFS Server\${AFS_VERSION}" "Debug"
906 !endif
907   ; Install the service
908   SetOutPath "$INSTDIR\Common"
909   File "${AFS_WININSTALL_DIR}\Service.exe"
910 !ifdef DEBUG
911   File "${AFS_WININSTALL_DIR}\Service.pdb"
912 !endif
913
914   ; Check if the service exists--if it does, this is an upgrade/re-install
915   ReadRegStr $R0 HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSServer" "ImagePath"
916   StrCmp $R0 "$INSTDIR\Server\usr\afs\bin\bosctlsvc.exe" SkipStartup
917   
918   ; If an uninstall was done, but we kept the config files, also skip
919   IfFileExists "$INSTDIR\Server\usr\afs\etc\ThisCell" SkipStartup
920
921   ; Make the server config wizard auto-start on bootup if this is an install (not an upgrade)
922   ; WriteRegStr HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce" "AFS Server Wizard" '"$INSTDIR\Server\usr\afs\bin\afssvrcfg.exe" /wizard"'
923   
924   
925 SkipStartup:
926   ;Don't want to whack existing settings... Make users un-install and then re-install if they want that
927   ;nsExec::Exec '$INSTDIR\Common\service.exe u TransarcAFSServer'
928   nsExec::Exec '$INSTDIR\Common\service.exe TransarcAFSServer "$INSTDIR\Server\usr\afs\bin\bosctlsvc.exe" "OpenAFS AFS Server"'
929   Delete "$INSTDIR\Common\service.exe"
930
931   strcpy $REG_SUB_KEY "SYSTEM\CurrentControlSet\Services\TransarcAFSServer" 
932   strcpy $REG_VALUE   "DependOnGroup" 
933   strcpy $REG_DATA_1  "PNP_TDI"
934   strcpy $REG_DATA_2  ""
935   strcpy $REG_DATA_3  ""
936   strcpy $REG_DATA_4  ""
937   Call RegWriteMultiStr
938   strcpy $REG_SUB_KEY "SYSTEM\CurrentControlSet\Services\TransarcAFSServer" 
939   strcpy $REG_VALUE   "DependOnService" 
940   strcpy $REG_DATA_1  "Tcpip"
941   strcpy $REG_DATA_2  ""
942   strcpy $REG_DATA_3  ""
943   strcpy $REG_DATA_4  ""
944   Call RegWriteMultiStr
945   
946   ;CreateDirectory "$SMPROGRAMS\OpenAFS\Server"
947   ;CreateShortCut "$SMPROGRAMS\OpenAFS\Server\Server Configuration.lnk" "$INSTDIR\Server\usr\afs\bin\afssvrcfg.exe"
948   
949   WriteUninstaller "$INSTDIR\Uninstall.exe"
950   WriteRegStr HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\OpenAFS" "DisplayIcon" "$INSTDIR\Uninstall.exe,0"  
951
952 SectionEnd
953
954
955 ;----------------------------
956 ; OpenAFS Control Center
957 Section /o "AFS Control Center" secControl
958
959   SetShellVarContext all
960
961    SetOutPath "$INSTDIR\Control Center"
962   File "${AFS_SERVER_BUILDDIR}\TaAfsAccountManager.exe"
963   File "${AFS_SERVER_BUILDDIR}\TaAfsAdmSvr.exe"
964   File "${AFS_SERVER_BUILDDIR}\TaAfsServerManager.exe"
965    
966
967  ;AFS Server common files
968  Call AFSCommon.Install
969  Call AFSLangFiles
970  SetOutPath "$INSTDIR\Common"
971
972    ;Store install folder
973   WriteRegStr HKCU "${AFS_REGKEY_ROOT}\AFS Control Center\CurrentVersion" "PathName" $INSTDIR
974   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\CurrentVersion" "VersionString" ${AFS_VERSION}
975   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\CurrentVersion" "MajorVersion" ${AFS_MAJORVERSION}
976   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\CurrentVersion" "MinorVersion" ${AFS_MINORVERSION}
977   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\CurrentVersion" "PatchLevel" ${AFS_PATCHLEVEL}
978   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\${AFS_VERSION}" "VersionString" ${AFS_VERSION}
979   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\${AFS_VERSION}" "MajorVersion" ${AFS_MAJORVERSION}
980   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\${AFS_VERSION}" "MinorVersion" ${AFS_MINORVERSION}
981   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\${AFS_VERSION}" "PatchLevel" ${AFS_PATCHLEVEL}
982 !ifdef DEBUG
983   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\CurrentVersion" "Debug" 1
984   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\${AFS_VERSION}" "Debug" 1
985 !else
986    ; Delete the DEBUG string
987    DeleteRegValue HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\CurrentVersion" "Debug"
988    DeleteRegValue HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\${AFS_VERSION}" "Debug"
989 !endif
990
991   ;Write start menu entries
992   CreateDirectory "$SMPROGRAMS\OpenAFS\Control Center"
993   CreateShortCut "$SMPROGRAMS\OpenAFS\Control Center\Account Manager.lnk" "$INSTDIR\Control Center\TaAfsAccountManager.exe"
994   CreateShortCut "$SMPROGRAMS\OpenAFS\Control Center\Server Manager.lnk" "$INSTDIR\Control Center\TaAfsServerManager.exe"
995   
996   WriteUninstaller "$INSTDIR\Uninstall.exe"
997   WriteRegStr HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\OpenAFS" "DisplayIcon" "$INSTDIR\Uninstall.exe,0"  
998
999 SectionEnd   
1000
1001
1002 ;----------------------------
1003 ; OpenAFS Supplemental Documentation
1004 Section /o "Supplemental Documentation" secDocs
1005   SetShellVarContext all
1006
1007    StrCmp $LANGUAGE ${LANG_ENGLISH} DoEnglish
1008    StrCmp $LANGUAGE ${LANG_GERMAN} DoGerman
1009    StrCmp $LANGUAGE ${LANG_SPANISH} DoSpanish
1010    StrCmp $LANGUAGE ${LANG_JAPANESE} DoJapanese
1011    StrCmp $LANGUAGE ${LANG_KOREAN} DoKorean
1012    StrCmp $LANGUAGE ${LANG_PORTUGUESEBR} DoPortugueseBR
1013    StrCmp $LANGUAGE ${LANG_SIMPCHINESE} DoSimpChinese
1014    StrCmp $LANGUAGE ${LANG_TRADCHINESE} DoTradChinese
1015    
1016    
1017 DoEnglish:
1018    SetOutPath "$INSTDIR\Documentation\html\CmdRef"
1019    File "..\..\doc\install\Documentation\en_US\html\CmdRef\*"
1020    SetOutPath "$INSTDIR\Documentation\html\SysAdminGd"
1021    File "..\..\doc\install\Documentation\en_US\html\SysAdminGd\*"
1022    goto DoneLanguage
1023    
1024 DoGerman:
1025    SetOutPath "$INSTDIR\Documentation\html"
1026    File "..\..\doc\install\Documentation\de_DE\html\*"
1027    SetOutPath "$INSTDIR\Documentation\html\CmdRef"
1028    ;File "..\..\doc\install\Documentation\de_DE\html\CmdRef\*"
1029    ;SetOutPath "$INSTDIR\Documentation\html\SysAdminGd"
1030    ;File "..\..\doc\install\Documentation\de_DE\html\SysAdminGd\*"
1031    goto DoneLanguage
1032    
1033 DoSpanish:
1034    SetOutPath "$INSTDIR\Documentation\html"
1035    File "..\..\doc\install\Documentation\es_ES\html\*"
1036    SetOutPath "$INSTDIR\Documentation\html\CmdRef"
1037    ;File "..\..\doc\install\Documentation\es_ES\html\CmdRef\*"
1038    SetOutPath "$INSTDIR\Documentation\html\SysAdminGd"
1039    ;File "..\..\doc\install\Documentation\es_ES\html\SysAdminGd\*"
1040    goto DoneLanguage
1041
1042 DoJapanese:
1043    SetOutPath "$INSTDIR\Documentation\html"
1044    File "..\..\doc\install\Documentation\ja_JP\html\*"
1045    SetOutPath "$INSTDIR\Documentation\html\CmdRef"
1046    File "..\..\doc\install\Documentation\ja_JP\html\CmdRef\*"
1047    SetOutPath "$INSTDIR\Documentation\html\SysAdminGd"
1048    ;File "..\..\doc\install\Documentation\ja_JP\html\SysAdminGd\*"
1049    goto DoneLanguage
1050    
1051 DoKorean:
1052    SetOutPath "$INSTDIR\Documentation\html"
1053    File "..\..\doc\install\Documentation\ko_KR\html\*"
1054    ;SetOutPath "$INSTDIR\Documentation\html\CmdRef"
1055    ;File "..\..\doc\install\Documentation\ko_KR\html\CmdRef\*"
1056    SetOutPath "$INSTDIR\Documentation\html\SysAdminGd"
1057    File "..\..\doc\install\Documentation\ko_KR\html\SysAdminGd\*"
1058    goto DoneLanguage
1059    
1060 DoPortugueseBR:
1061    SetOutPath "$INSTDIR\Documentation\html"
1062    File "..\..\doc\install\Documentation\pt_BR\html\*"
1063    ;SetOutPath "$INSTDIR\Documentation\html\CmdRef"
1064    ;File "..\..\doc\install\Documentation\pt_BR\html\CmdRef\*"
1065    ;SetOutPath "$INSTDIR\Documentation\html\SysAdminGd"
1066    ;File "..\..\doc\install\Documentation\pt_BR\html\SysAdminGd\*"
1067    goto DoneLanguage
1068
1069 DoSimpChinese:
1070    SetOutPath "$INSTDIR\Documentation\html"
1071    File "..\..\doc\install\Documentation\zh_CN\html\*"
1072    ;SetOutPath "$INSTDIR\Documentation\html\CmdRef"
1073    ;File "..\..\doc\install\Documentation\zh_CN\html\CmdRef\*"
1074    ;SetOutPath "$INSTDIR\Documentation\html\SysAdminGd"
1075    ;File "..\..\doc\install\Documentation\zh_CN\html\SysAdminGd\*"
1076    goto DoneLanguage
1077    
1078 DoTradChinese:
1079    SetOutPath "$INSTDIR\Documentation\html"
1080    File "..\..\doc\install\Documentation\zh_TW\html\*"
1081    ;SetOutPath "$INSTDIR\Documentation\html\CmdRef"
1082    ;File "..\..\doc\install\Documentation\zh_TW\html\CmdRef\*"
1083    ;SetOutPath "$INSTDIR\Documentation\html\SysAdminGd"
1084    ;File "..\..\doc\install\Documentation\zh_TW\html\SysAdminGd\*"
1085    goto DoneLanguage
1086    
1087    
1088 DoneLanguage:
1089    ;Store install folder
1090   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Supplemental Documentation" "" $INSTDIR
1091   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Supplemental Documentation\CurrentVersion" "VersionString" ${AFS_VERSION}
1092   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Supplemental Documentation\CurrentVersion" "MajorVersion" ${AFS_MAJORVERSION}
1093   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Supplemental Documentation\CurrentVersion" "MinorVersion" ${AFS_MINORVERSION}
1094   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Supplemental Documentation\CurrentVersion" "PatchLevel" ${AFS_PATCHLEVEL}
1095   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Supplemental Documentation\${AFS_VERSION}" "VersionString" ${AFS_VERSION}
1096   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Supplemental Documentation\${AFS_VERSION}" "MajorVersion" ${AFS_MAJORVERSION}
1097   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Supplemental Documentation\${AFS_VERSION}" "MinorVersion" ${AFS_MINORVERSION}
1098   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Supplemental Documentation\${AFS_VERSION}" "PatchLevel" ${AFS_PATCHLEVEL}
1099
1100   WriteUninstaller "$INSTDIR\Uninstall.exe"
1101   WriteRegStr HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\OpenAFS" "DisplayIcon" "$INSTDIR\Uninstall.exe,0"  
1102   CreateShortCut "$SMPROGRAMS\OpenAFS\Uninstall OpenAFS.lnk" "$INSTDIR\Uninstall.exe"
1103   Call AFSCommon.Install
1104 SectionEnd  
1105   
1106
1107 Section /o "Software Development Kit (SDK)" secSDK
1108
1109    SetOutPath "$INSTDIR\SDK\lib"
1110    File /r "${AFS_CLIENT_LIBDIR}\*.*"
1111
1112    SetOutPath "$INSTDIR\SDK\Include"
1113    File /r "${AFS_BUILD_INCDIR}\*.*"    
1114
1115    ; Client Sample
1116    SetOutPath "$INSTDIR\SDK\Sample"
1117    File "..\..\afsd\sample\token.c"
1118
1119    ;Store install folder
1120   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS SDK" "" $INSTDIR
1121   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS SDK\CurrentVersion" "VersionString" ${AFS_VERSION}
1122   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS SDK\CurrentVersion" "MajorVersion" ${AFS_MAJORVERSION}
1123   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS SDK\CurrentVersion" "MinorVersion" ${AFS_MINORVERSION}
1124   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS SDK\CurrentVersion" "PatchLevel" ${AFS_PATCHLEVEL}
1125   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS SDK\${AFS_VERSION}" "VersionString" ${AFS_VERSION}
1126   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS SDK\${AFS_VERSION}" "MajorVersion" ${AFS_MAJORVERSION}
1127   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS SDK\${AFS_VERSION}" "MinorVersion" ${AFS_MINORVERSION}
1128   WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS SDK\${AFS_VERSION}" "PatchLevel" ${AFS_PATCHLEVEL}
1129
1130   WriteUninstaller "$INSTDIR\Uninstall.exe"
1131   WriteRegStr HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\OpenAFS" "DisplayIcon" "$INSTDIR\Uninstall.exe,0"  
1132
1133   SetOutPath "$SMPROGRAMS\OpenAFS"
1134   CreateShortCut "$SMPROGRAMS\OpenAFS\Uninstall OpenAFS.lnk" "$INSTDIR\Uninstall.exe"
1135
1136   Call AFSCommon.Install
1137 SectionEnd
1138
1139
1140 Section /o "Debug symbols" secDebug
1141    SectionGetFlags ${secClient} $R0
1142    IntOp $R0 $R0 & ${SF_SELECTED}
1143    IntCmp $R0 ${SF_SELECTED} +1 DoServer
1144   
1145   ; Do client components
1146   SetOutPath "$INSTDIR\Client\Program"
1147   File "${AFS_CLIENT_BUILDDIR}\afsshare.pdb"
1148   File "${AFS_CLIENT_BUILDDIR}\libosi.pdb"
1149   File "${AFS_CLIENT_BUILDDIR}\libafsconf.pdb"
1150   File "${AFS_CLIENT_BUILDDIR}\klog.pdb"
1151   File "${AFS_CLIENT_BUILDDIR}\tokens.pdb"
1152   File "${AFS_CLIENT_BUILDDIR}\unlog.pdb"
1153   File "${AFS_CLIENT_BUILDDIR}\fs.pdb"
1154   File "${AFS_CLIENT_BUILDDIR}\afsdacl.pdb"
1155   File "${AFS_CLIENT_BUILDDIR}\cmdebug.pdb"
1156   File "${AFS_CLIENT_BUILDDIR}\aklog.pdb"
1157   File "${AFS_CLIENT_BUILDDIR}\afscreds.pdb"
1158   File "${AFS_CLIENT_BUILDDIR}\afs_shl_ext.pdb"
1159   File "${AFS_CLIENT_BUILDDIR}\afsd_service.pdb"
1160   File "${AFS_CLIENT_BUILDDIR}\symlink.pdb"
1161   File "${AFS_DESTDIR}\bin\kpasswd.pdb"
1162   File "${AFS_DESTDIR}\bin\pts.pdb"
1163   File "${AFS_SERVER_BUILDDIR}\bos.pdb"
1164   File "${AFS_SERVER_BUILDDIR}\kas.pdb"
1165   File "${AFS_SERVER_BUILDDIR}\vos.pdb"
1166   File "${AFS_SERVER_BUILDDIR}\udebug.pdb"
1167   File "${AFS_DESTDIR}\bin\translate_et.pdb"
1168   File "${AFS_DESTDIR}\etc\rxdebug.pdb"
1169   File "${AFS_DESTDIR}\etc\backup.pdb"
1170   File "${AFS_CLIENT_BUILDDIR}\afs_cpa.pdb"
1171   File "${AFS_CLIENT_BUILDDIR}\afscred.pdb"
1172   File "${AFS_CLIENT_BUILDDIR}\afslogon.pdb"
1173   File "${AFS_CLIENT_BUILDDIR}\afscpcc.pdb"
1174
1175   SetOutPath "$SYSDIR"
1176   
1177 DoServer:
1178    SectionGetFlags ${secServer} $R0
1179    IntOp $R0 $R0 & ${SF_SELECTED}
1180    IntCmp $R0 ${SF_SELECTED} +1 DoControl
1181
1182   ; Do server components
1183   SetOutPath "$INSTDIR\Server\usr\afs\bin"  
1184   File "${AFS_SERVER_BUILDDIR}\afskill.pdb"
1185   File "${AFS_SERVER_BUILDDIR}\afssvrcfg.pdb"
1186   File "${AFS_SERVER_BUILDDIR}\asetkey.pdb"
1187   File "${AFS_SERVER_BUILDDIR}\bosctlsvc.pdb"
1188   File "${AFS_SERVER_BUILDDIR}\bosserver.pdb"
1189   File "${AFS_SERVER_BUILDDIR}\buserver.pdb"
1190   File "${AFS_ETC_BUILDDIR}\butc.pdb"
1191   File "${AFS_SERVER_BUILDDIR}\fileserver.pdb"
1192   File "${AFS_ETC_BUILDDIR}\fms.pdb"
1193   File "${AFS_SERVER_BUILDDIR}\kaserver.pdb"
1194   File "${AFS_SERVER_BUILDDIR}\ptserver.pdb"
1195   File "${AFS_SERVER_BUILDDIR}\salvager.pdb"
1196   File "${AFS_SERVER_BUILDDIR}\upclient.pdb"
1197   File "${AFS_SERVER_BUILDDIR}\upserver.pdb"
1198   File "${AFS_SERVER_BUILDDIR}\vlserver.pdb"
1199   File "${AFS_SERVER_BUILDDIR}\volinfo.pdb"
1200   File "${AFS_SERVER_BUILDDIR}\volserver.pdb"
1201
1202   ; Do server common components
1203  File "${AFS_SERVER_BUILDDIR}\afsvosadmin.pdb"
1204  File "${AFS_SERVER_BUILDDIR}\afsbosadmin.pdb"
1205  File "${AFS_SERVER_BUILDDIR}\afscfgadmin.pdb"
1206  File "${AFS_SERVER_BUILDDIR}\afskasadmin.pdb"
1207  File "${AFS_SERVER_BUILDDIR}\afsptsadmin.pdb"
1208  
1209    SetOutPath "$SYSDIR"
1210    File "${AFS_SERVER_BUILDDIR}\afsserver.pdb"
1211
1212    ; Do control center components
1213 DoControl:
1214    SectionGetFlags ${secControl} $R0
1215    IntOp $R0 $R0 & ${SF_SELECTED}
1216    IntCmp $R0 ${SF_SELECTED} +1 DoCommon
1217
1218    SetOutPath "$INSTDIR\Control Center"   
1219   File "${AFS_SERVER_BUILDDIR}\TaAfsAccountManager.pdb"
1220   File "${AFS_SERVER_BUILDDIR}\TaAfsAdmSvr.pdb"
1221   File "${AFS_SERVER_BUILDDIR}\TaAfsServerManager.pdb"
1222
1223 DoCommon:
1224   SetOutPath "$INSTDIR\Common"
1225 !IFDEF CL_1400
1226    File "${SYSTEMDIR}\msvcr80d.pdb"
1227    File "${SYSTEMDIR}\msvcp80d.pdb"
1228    File "${SYSTEMDIR}\mfc80d.pdb"
1229 !ELSE
1230 !IFDEF CL_1310
1231    File "${SYSTEMDIR}\msvcr71d.pdb"
1232    File "${SYSTEMDIR}\msvcp71d.pdb"
1233    File "${SYSTEMDIR}\mfc71d.pdb"
1234 !ELSE
1235 !IFDEF CL_1300
1236    File "${SYSTEMDIR}\msvcr70d.pdb"
1237    File "${SYSTEMDIR}\msvcp70d.pdb"
1238    File "${SYSTEMDIR}\mfc70d.pdb"
1239 !ELSE
1240    File "${SYSTEMDIR}\mfc42d.pdb"
1241    File "${SYSTEMDIR}\msvcp60d.pdb"
1242    File "${SYSTEMDIR}\msvcrtd.pdb"
1243 !ENDIF
1244 !ENDIF
1245 !ENDIF
1246   
1247 ; Common Areas
1248    SetOutPath "$INSTDIR\Common"
1249    File "${AFS_CLIENT_BUILDDIR}\afs_config.pdb"
1250    File "${AFS_SERVER_BUILDDIR}\afsadminutil.pdb"
1251    File "${AFS_DESTDIR}\lib\afsauthent.pdb"
1252    File "${AFS_DESTDIR}\lib\afspthread.pdb"
1253    File "${AFS_DESTDIR}\lib\afsrpc.pdb"
1254    File "${AFS_SERVER_BUILDDIR}\afsclientadmin.pdb"
1255    File "${AFS_SERVER_BUILDDIR}\afsprocmgmt.pdb"
1256    File "${AFS_SERVER_BUILDDIR}\afsvosadmin.pdb"
1257    File "${AFS_SERVER_BUILDDIR}\TaAfsAppLib.pdb"
1258    File "${AFS_SERVER_BUILDDIR}\afsvosadmin.pdb"
1259    File "${AFS_SERVER_BUILDDIR}\afsbosadmin.pdb"
1260    File "${AFS_SERVER_BUILDDIR}\afscfgadmin.pdb"
1261    File "${AFS_SERVER_BUILDDIR}\afskasadmin.pdb"
1262    File "${AFS_SERVER_BUILDDIR}\afsptsadmin.pdb"
1263
1264 SectionEnd
1265
1266
1267 ;Display the Finish header
1268 ;Insert this macro after the sections if you are not using a finish page
1269 ;!insertmacro MUI_SECTIONS_FINISHHEADER
1270
1271 ;--------------------------------
1272 ;Installer Functions
1273
1274 Function .onInit
1275
1276   !insertmacro MUI_LANGDLL_DISPLAY
1277   
1278   ; Set the default install options
1279         Push $0
1280
1281    Call IsUserAdmin
1282    Pop $R0
1283    StrCmp $R0 "true" contInstall
1284
1285    MessageBox MB_OK|MB_ICONSTOP|MB_TOPMOST "You must be an administrator of this machine to install this software."
1286    Abort
1287    
1288 contInstall:
1289
1290    ; Set Install Type text
1291    InstTypeSetText 0 "AFS Client"
1292    InstTypeSetText 1 "AFS Administrator"
1293    InstTypeSetText 2 "AFS Server"
1294    InstTypeSetText 3 "AFS Developer Tools"
1295
1296    ; Set sections in each install type
1297    SectionSetInstTypes 0 15             ; AFS Client
1298    SectionSetInstTypes 1 15             ; Loopback adapter
1299    SectionSetInstTypes 2 4              ; AFS Server
1300    SectionSetInstTypes 3 6              ; AFS Control Center
1301    SectionSetInstTypes 4 14             ; Documentation
1302    SectionSetInstTypes 5 8              ; SDK
1303 !ifndef DEBUG
1304    SectionSetInstTypes 6 8              ; Debug symbols
1305 !else
1306    SectionSetInstTypes 6 15             ; Debug symbols
1307 !endif
1308
1309    ; Check that RPC functions are installed (I believe any one of these can be present for
1310    ; OpenAFS to work)
1311    ReadRegStr $R0 HKLM "SOFTWARE\Microsoft\RPC\ClientProtocols" "ncacn_np"
1312    StrCmp $R0 "rpcrt4.dll" contInstall2
1313    ReadRegStr $R0 HKLM "SOFTWARE\Microsoft\RPC\ClientProtocols" "ncacn_ip_tcp"
1314    StrCmp $R0 "rpcrt4.dll" contInstall2
1315    ReadRegStr $R0 HKLM "SOFTWARE\Microsoft\RPC\ClientProtocols" "ncadg_ip_udp"
1316    StrCmp $R0 "rpcrt4.dll" contInstall2
1317    ReadRegStr $R0 HKLM "SOFTWARE\Microsoft\RPC\ClientProtocols" "ncacn_http"
1318    StrCmp $R0 "rpcrt4.dll" contInstall2
1319    
1320    MessageBox MB_OK|MB_ICONSTOP|MB_TOPMOST "An error was detected with your Windows RPC installation. Please make sure Windows RPC is installed before installing OpenAFS."
1321    Abort
1322
1323
1324 contInstall2:
1325    ; If the Loopback is already installed, we mark the option OFF and Read Only
1326    ; so the user can not select it.
1327    Call afs.isLoopbackInstalled
1328    IntCmp $R1 0 SkipLoop
1329    SectionGetFlags ${secLoopback} $0
1330    IntOp $0 $0 & ${SECTION_OFF}
1331    IntOp $0 $0 | ${SF_RO}
1332    SectionSetFlags ${secLoopback} $0
1333    ; And disable the loopback in the types
1334    SectionSetInstTypes 1 0              ; Loopback adapter
1335    
1336 SkipLoop:
1337    ; Never install debug symbols unless explicitly selected, except in DEBUG mode
1338         !IFNDEF DEBUG
1339    SectionGetFlags ${secDebug} $0
1340         IntOp $0 $0 & ${SECTION_OFF}
1341         SectionSetFlags ${secDebug} $0
1342    !ELSE
1343    SectionGetFlags ${secDebug} $0
1344         IntOp $0 $0 | ${SF_SELECTED}
1345         SectionSetFlags ${secDebug} $0
1346    !ENDIF
1347    ; Our logic should be like this.
1348    ;     1) If no AFS components are installed, we do a clean install with default options. (Client/Docs)
1349    ;     2) If existing modules are installed, we keep them selected
1350    ;     3) If it is an upgrade, we set the text accordingly, else we mark it as a re-install
1351    ;  TODO: Downgrade?
1352    Call IsAnyAFSInstalled
1353    Pop $R0
1354    StrCmp $R0 "0" DefaultOptions
1355    
1356    Call ShouldClientInstall
1357    Pop $R2
1358    
1359    ; Check if it was an IBM/Transarc version
1360    ReadRegStr $R0 HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon" "DisplayName"
1361    StrCmp $R0 "IBM AFS Client" DoIBM
1362    StrCmp $R0 "Transarc AFS Client" DoIBM
1363 NotIBM:
1364    StrCpy $R9 ""
1365    StrCmp $R2 "0" NoClient
1366    StrCmp $R2 "1" ReinstallClient
1367    StrCmp $R2 "2" UpgradeClient
1368    StrCmp $R2 "3" DowngradeClient
1369    goto Continue
1370 DoIBM:
1371    ReadRegDWORD $R0 HKLM "Software\TransarcCorporation\AFS Client\CurrentVersion" "MajorVersion"
1372    StrCmp $R0 "3" +1 NotIBM
1373    StrCpy $R9 "IBM"
1374    goto UpgradeClient
1375
1376 Continue:
1377         SectionGetFlags ${secClient} $0
1378         IntOp $0 $0 | ${SF_SELECTED}
1379         SectionSetFlags ${secClient} $0
1380     ;# !insertmacro SelectSection ${secClient}
1381    goto skipClient
1382 NoClient:
1383         ;StrCpy $1 ${secClient} ; Gotta remember which section we are at now...
1384         SectionGetFlags ${secClient} $0
1385         IntOp $0 $0 & ${SECTION_OFF}
1386         SectionSetFlags ${secClient} $0
1387    goto skipClient
1388 UpgradeClient:
1389         SectionGetFlags ${secClient} $0
1390         IntOp $0 $0 | ${SF_SELECTED}
1391         SectionSetFlags ${secClient} $0
1392    SectionSetText ${secClient} $(UPGRADE_CLIENT)
1393    goto skipClient
1394 ReinstallClient:
1395         SectionGetFlags ${secClient} $0
1396         IntOp $0 $0 | ${SF_SELECTED}
1397         SectionSetFlags ${secClient} $0
1398    SectionSetText ${secClient} $(REINSTALL_CLIENT)
1399    goto skipClient
1400 DowngradeClient:
1401         SectionGetFlags ${secClient} $0
1402         IntOp $0 $0 | ${SF_SELECTED}
1403         SectionSetFlags ${secClient} $0
1404    SectionSetText ${secClient} $(REINSTALL_CLIENT)
1405    goto skipClient
1406
1407    
1408 skipClient:   
1409    
1410    Call ShouldServerInstall
1411    Pop $R2
1412    StrCmp $R2 "0" NoServer
1413    StrCmp $R2 "1" ReinstallServer
1414    StrCmp $R2 "2" UpgradeServer
1415    StrCmp $R2 "3" DowngradeServer
1416    
1417    SectionGetFlags ${secServer} $0
1418    IntOp $0 $0 | ${SF_SELECTED}
1419    SectionSetFlags ${secServer} $0
1420    ;# !insertmacro UnselectSection ${secServer}
1421    goto skipServer
1422
1423 UpgradeServer:
1424    SectionGetFlags ${secServer} $0
1425    IntOp $0 $0 | ${SF_SELECTED}
1426    SectionSetFlags ${secServer} $0
1427    SectionSetText ${secServer} $(UPGRADE_SERVER)
1428    goto skipServer
1429
1430 ReinstallServer:
1431    SectionGetFlags ${secServer} $0
1432    IntOp $0 $0 | ${SF_SELECTED}
1433    SectionSetFlags ${secServer} $0
1434    SectionSetText ${secServer} $(REINSTALL_SERVER)
1435    goto skipServer
1436
1437 DowngradeServer:
1438    SectionGetFlags ${secServer} $0
1439    IntOp $0 $0 | ${SF_SELECTED}
1440    SectionSetFlags ${secServer} $0
1441    SectionSetText ${secServer} $(REINSTALL_SERVER)
1442    goto skipServer
1443    
1444 NoServer:
1445    SectionGetFlags ${secServer} $0
1446    IntOp $0 $0 & ${SECTION_OFF}
1447    SectionSetFlags ${secServer} $0
1448    ;# !insertmacro UnselectSection ${secServer}
1449    goto skipServer
1450    
1451 skipServer:
1452    ; Check control center
1453    Call IsControlInstalled
1454    Pop $R2
1455    StrCmp $R2 "0" NoControl
1456
1457    SectionGetFlags ${secControl} $0
1458    IntOp $0 $0 | ${SF_SELECTED}
1459    SectionSetFlags ${secControl} $0
1460    goto CheckDocs
1461    
1462 NoControl:   
1463    SectionGetFlags ${secControl} $0
1464    IntOp $0 $0 & ${SECTION_OFF}
1465    SectionSetFlags ${secControl} $0
1466    ;# !insertmacro UnselectSection ${secControl}
1467
1468 CheckDocs:
1469    ; Check Documentation
1470    Call IsDocumentationInstalled
1471    Pop $R2
1472    StrCmp $R2 "0" NoDocs
1473    SectionGetFlags ${secDocs} $0
1474    IntOp $0 $0 | ${SF_SELECTED}
1475    SectionSetFlags ${secDocs} $0
1476    goto CheckSDK
1477    
1478 NoDocs:
1479    SectionGetFlags ${secDocs} $0
1480    IntOp $0 $0 & ${SECTION_OFF}
1481    SectionSetFlags ${secDocs} $0
1482    goto CheckSDK
1483    
1484 ; To check the SDK, we simply look to see if the files exist.  If they do,
1485 ; the SDK is installed.  If not, we don't need to push it on the user.
1486 ; If they are there, we want to make sure they match the installed version.
1487 CheckSDK:
1488    IfFileExists "$INSTDIR\SDK\Include\main.h" +1 NoSDK
1489    SectionGetFlags ${secSDK} $0
1490    IntOp $0 $0 | ${SF_SELECTED}
1491    SectionSetFlags ${secSDK} $0
1492    goto end
1493    
1494 NoSDK:
1495    SectionGetFlags ${secSDK} $0
1496    IntOp $0 $0 & ${SECTION_OFF}
1497    SectionSetFlags ${secSDK} $0
1498    goto end
1499    
1500 DefaultOptions:
1501    ; Client Selected
1502    SectionGetFlags ${secClient} $0
1503    IntOp $0 $0 | ${SF_SELECTED}
1504    SectionSetFlags ${secClient} $0
1505
1506    ; Server NOT selected
1507    SectionGetFlags ${secServer} $0
1508    IntOp $0 $0 & ${SECTION_OFF}
1509    SectionSetFlags ${secServer} $0
1510    
1511    ; Control Center NOT selected
1512    SectionGetFlags ${secControl} $0
1513    IntOp $0 $0 & ${SECTION_OFF}
1514    SectionSetFlags ${secControl} $0
1515    ;# !insertmacro UnselectSection ${secControl}
1516
1517    ; Documentation NOT selected
1518    SectionGetFlags ${secDocs} $0
1519    IntOp $0 $0 & ${SECTION_OFF}
1520    SectionSetFlags ${secDocs} $0
1521    ;# !insertmacro UnselectSection ${secDocs}
1522    
1523    ; SDK not selected
1524    SectionGetFlags ${secSDK} $0
1525    IntOp $0 $0 & ${SECTION_OFF}
1526    SectionSetFlags ${secSDK} $0
1527    ;# !insertmacro UnselectSection ${secSDK}
1528    
1529    goto end
1530
1531 end:
1532    Pop $0
1533   
1534    Push $R0
1535   
1536   ; See if we can set a default installation path...
1537   ReadRegStr $R0 HKLM "${AFS_REGKEY_ROOT}\AFS Client\CurrentVersion" "PathName"
1538   StrCmp $R0 "" TryServer
1539   Push $R0
1540   Call GetParent
1541   
1542   ; Work around bug in 1.3.5000, 1.3.5100, 1.3.5200, 1.3.5201, 1.3.5299 installers...
1543   ReadRegStr $R0 HKLM "${AFS_REGKEY_ROOT}\AFS Client\CurrentVersion" "MajorVersion"
1544   StrCmp $R0 "1" +1 SkipParent
1545   ReadRegStr $R0 HKLM "${AFS_REGKEY_ROOT}\AFS Client\CurrentVersion" "MinorVersion"
1546   StrCmp $R0 "3" +1 SkipParent
1547   ReadRegStr $R0 HKLM "${AFS_REGKEY_ROOT}\AFS Client\CurrentVersion" "PatchLevel"
1548   StrCmp $R0 "5000" UpParent
1549   StrCmp $R0 "5100" UpParent
1550   StrCmp $R0 "5200" UpParent
1551   StrCmp $R0 "5201" UpParent
1552   StrCmp $R0 "5299" UpParent
1553   goto SkipParent
1554   
1555 UpParent:
1556    Call GetParent
1557   
1558 SkipParent:
1559   Pop $R0
1560   StrCpy $INSTDIR $R0
1561   goto Nope
1562   
1563 TryServer:
1564   ReadRegStr $R0 HKLM "${AFS_REGKEY_ROOT}\AFS Server\CurrentVersion" "PathName"
1565   StrCmp $R0 "" TryControl
1566   Push $R0
1567   Call GetParent
1568   Pop $R0
1569   StrCpy $INSTDIR $R0
1570   goto Nope
1571    
1572 TryControl:
1573   ReadRegStr $R0 HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\CurrentVersion" "PathName"
1574   StrCmp $R0 "" Nope
1575   StrCpy $INSTDIR $R0
1576   
1577 Nope:
1578   Pop $R0
1579   
1580   GetTempFilename $0
1581   File /oname=$0 CellServPage.ini
1582   GetTempFilename $1
1583   File /oname=$1 AFSCell.ini
1584   GetTempFilename $2
1585   File /oname=$2 AFSCreds.ini
1586   ;File /oname=$1 ConfigURL.ini
1587   
1588 FunctionEnd
1589
1590
1591 ;--------------------------------
1592 ; These are our cleanup functions
1593 Function .onInstFailed
1594 Delete $0
1595 Delete $1
1596 FunctionEnd
1597
1598 Function .onInstSuccess
1599 Delete $0
1600 Delete $1
1601 FunctionEnd
1602
1603
1604 ;--------------------------------
1605 ;Descriptions
1606
1607   !insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
1608   !insertmacro MUI_DESCRIPTION_TEXT ${secServer} $(DESC_secServer)
1609   !insertmacro MUI_DESCRIPTION_TEXT ${secClient} $(DESC_secClient)
1610   !insertmacro MUI_DESCRIPTION_TEXT ${secControl} $(DESC_secControl)
1611   !insertmacro MUI_DESCRIPTION_TEXT ${secDocs} $(DESC_secDocs)
1612   !insertmacro MUI_DESCRIPTION_TEXT ${secSDK} $(DESC_secSDK)
1613   !insertmacro MUI_DESCRIPTION_TEXT ${secLoopback} $(DESC_secLoopback)
1614   !insertmacro MUI_DESCRIPTION_TEXT ${secDebug} $(DESC_secDebug)
1615   !insertmacro MUI_FUNCTION_DESCRIPTION_END
1616  
1617 ;--------------------------------
1618 ;Uninstaller Section
1619
1620 Section "Uninstall"
1621   ; Make sure the user REALLY wants to do this, unless they did a silent uninstall, in which case...let them!
1622   IfSilent StartRemove     ; New in v2.0b4
1623   MessageBox MB_YESNO "Are you sure you want to remove OpenAFS from this machine?" IDYES StartRemove
1624   abort
1625   
1626 StartRemove:
1627   
1628   SetShellVarContext all
1629   ; Stop the running processes
1630   GetTempFileName $R0
1631   File /oname=$R0 "${AFS_WININSTALL_DIR}\Killer.exe"
1632   nsExec::Exec '$R0 afscreds.exe'
1633   Exec "afscreds.exe -z"
1634   ; in case we are upgrading an old version that does not support -z
1635   Sleep 2000
1636   nsExec::Exec '$R0 afscreds.exe'
1637 !IFDEF INSTALL_KFW
1638   nsExec::Exec '$R0 krbcc32s.exe'
1639 !ENDIF
1640
1641   ; Delete the AFS service
1642   GetTempFileName $R0
1643   File /oname=$R0 "${AFS_WININSTALL_DIR}\Service.exe"
1644   nsExec::Exec "net stop TransarcAFSDaemon"
1645   nsExec::Exec "net stop TransarcAFSServer"
1646   nsExec::Exec '$R0 u TransarcAFSDaemon'
1647   ; After we stop the service, but before we delete it, we have to remove the volume data
1648   ; This is because the storage locations are in the registry under the service key.
1649   ; Call un.RemoveAFSVolumes
1650   nsExec::Exec '$R0 u TransarcAFSServer'
1651   Delete $R0
1652   
1653   Call un.RemoveProvider
1654
1655   Push "$INSTDIR\Client\Program"
1656   Call un.RemoveFromPath
1657   Push "$INSTDIR\Common"
1658   Call un.RemoveFromPath
1659 !ifdef INSTALL_KFW
1660   Push "$INSTDIR\kfw\bin"
1661   Call un.RemoveFromPath
1662 !endif
1663   
1664   ; Delete documentation
1665   Delete "$INSTDIR\Documentation\README.TXT"
1666   Delete "$INSTDIR\Documentation\html\*"
1667   Delete "$INSTDIR\Documentation\html\index_files\*"
1668   Delete "$INSTDIR\Documentation\html\CmdRef\*"
1669   Delete "$INSTDIR\Documentation\html\InstallGd\*"
1670   Delete "$INSTDIR\Documentation\html\ReleaseNotes\*"
1671   Delete "$INSTDIR\Documentation\html\ReleaseNotes\logo_files\*"
1672   Delete "$INSTDIR\Documentation\html\ReleaseNotes\relnotes_files\*"
1673   Delete "$INSTDIR\Documentation\html\SysAdminGd\*"
1674
1675    Delete /REBOOTOK "$INSTDIR\Common\afs_config.exe"
1676    Delete /REBOOTOK "$INSTDIR\Common\afs_shl_ext.dll"
1677    Delete /REBOOTOK "$INSTDIR\Common\afsadminutil.dll"
1678    Delete /REBOOTOK "$INSTDIR\Common\lib\afsauthent.dll"
1679    Delete /REBOOTOK "$INSTDIR\Common\lib\afspthread.dll"
1680    Delete /REBOOTOK "$INSTDIR\Common\lib\afsrpc.dll"
1681    Delete /REBOOTOK "$INSTDIR\Common\afsclientadmin.dll"
1682    Delete /REBOOTOK "$INSTDIR\Common\afsprocmgmt.dll"
1683    Delete /REBOOTOK "$INSTDIR\Common\afsvosadmin.dll"
1684    Delete /REBOOTOK "$INSTDIR\Common\TaAfsAppLib.dll"
1685    Delete /REBOOTOK "$INSTDIR\Common\afsvosadmin.dll"
1686    Delete /REBOOTOK "$INSTDIR\Common\afsbosadmin.dll"
1687    Delete /REBOOTOK "$INSTDIR\Common\afscfgadmin.dll"
1688    Delete /REBOOTOK "$INSTDIR\Common\afskasadmin.dll"
1689    Delete /REBOOTOK "$INSTDIR\Common\afsptsadmin.dll"
1690
1691    Delete /REBOOTOK "$INSTDIR\Common\afs_config.pdb"
1692    Delete /REBOOTOK "$INSTDIR\Common\afs_shl_ext.pdb"
1693    Delete /REBOOTOK "$INSTDIR\Common\afsadminutil.pdb"
1694    Delete /REBOOTOK "$INSTDIR\Common\lib\afsauthent.pdb"
1695    Delete /REBOOTOK "$INSTDIR\Common\lib\afspthread.pdb"
1696    Delete /REBOOTOK "$INSTDIR\Common\lib\afsrpc.pdb"
1697    Delete /REBOOTOK "$INSTDIR\Common\afsclientadmin.pdb"
1698    Delete /REBOOTOK "$INSTDIR\Common\afsprocmgmt.pdb"
1699    Delete /REBOOTOK "$INSTDIR\Common\afsvosadmin.pdb"
1700    Delete /REBOOTOK "$INSTDIR\Common\TaAfsAppLib.pdb"
1701    Delete /REBOOTOK "$INSTDIR\Common\afsvosadmin.pdb"
1702    Delete /REBOOTOK "$INSTDIR\Common\afsbosadmin.pdb"
1703    Delete /REBOOTOK "$INSTDIR\Common\afscfgadmin.pdb"
1704    Delete /REBOOTOK "$INSTDIR\Common\afskasadmin.pdb"
1705    Delete /REBOOTOK "$INSTDIR\Common\afsptsadmin.pdb"
1706 !IFDEF DEBUG
1707 !IFDEF CL_1400
1708    Delete /REBOOTOK "$INSTDIR\bin\msvcr80d.dll"
1709    Delete /REBOOTOK "$INSTDIR\bin\msvcr80d.pdb"
1710    Delete /REBOOTOK "$INSTDIR\bin\msvcp80d.dll"
1711    Delete /REBOOTOK "$INSTDIR\bin\msvcp80d.pdb"
1712    Delete /REBOOTOK "$INSTDIR\bin\mfc80d.dll"
1713    Delete /REBOOTOK "$INSTDIR\bin\mfc80d.pdb"
1714 !ELSE
1715 !IFDEF CL_1310
1716    Delete /REBOOTOK "$INSTDIR\bin\msvcr71d.dll"
1717    Delete /REBOOTOK "$INSTDIR\bin\msvcr71d.pdb"
1718    Delete /REBOOTOK "$INSTDIR\bin\msvcp71d.dll"
1719    Delete /REBOOTOK "$INSTDIR\bin\msvcp71d.pdb"
1720    Delete /REBOOTOK "$INSTDIR\bin\mfc71d.dll"
1721    Delete /REBOOTOK "$INSTDIR\bin\mfc71d.pdb"
1722 !ELSE
1723 !IFDEF CL_1300
1724    Delete /REBOOTOK "$INSTDIR\bin\msvcr70d.dll"
1725    Delete /REBOOTOK "$INSTDIR\bin\msvcr70d.pdb"
1726    Delete /REBOOTOK "$INSTDIR\bin\msvcp70d.dll"
1727    Delete /REBOOTOK "$INSTDIR\bin\msvcp70d.pdb"
1728    Delete /REBOOTOK "$INSTDIR\bin\mfc70d.dll"
1729    Delete /REBOOTOK "$INSTDIR\bin\mfc70d.pdb"
1730 !ELSE
1731    Delete /REBOOTOK "$INSTDIR\bin\mfc42d.dll"
1732    Delete /REBOOTOK "$INSTDIR\bin\mfc42d.pdb"
1733    Delete /REBOOTOK "$INSTDIR\bin\msvcp60d.dll"
1734    Delete /REBOOTOK "$INSTDIR\bin\msvcp60d.pdb"
1735    Delete /REBOOTOK "$INSTDIR\bin\msvcrtd.dll"
1736    Delete /REBOOTOK "$INSTDIR\bin\msvcrtd.pdb"
1737 !ENDIF
1738 !ENDIF
1739 !ENDIF
1740 !ELSE
1741 !IFDEF CL_1400
1742    Delete /REBOOTOK "$INSTDIR\bin\mfc80.dll"
1743    Delete /REBOOTOK "$INSTDIR\bin\msvcr80.dll"
1744    Delete /REBOOTOK "$INSTDIR\bin\msvcp80.dll"
1745    Delete /REBOOTOK "$INSTDIR\bin\MFC80CHS.DLL"
1746    Delete /REBOOTOK "$INSTDIR\bin\MFC80CHT.DLL"
1747    Delete /REBOOTOK "$INSTDIR\bin\MFC80DEU.DLL"
1748    Delete /REBOOTOK "$INSTDIR\bin\MFC80ENU.DLL"
1749    Delete /REBOOTOK "$INSTDIR\bin\MFC80ESP.DLL"
1750    Delete /REBOOTOK "$INSTDIR\bin\MFC80FRA.DLL"
1751    Delete /REBOOTOK "$INSTDIR\bin\MFC80ITA.DLL"
1752    Delete /REBOOTOK "$INSTDIR\bin\MFC80JPN.DLL"
1753    Delete /REBOOTOK "$INSTDIR\bin\MFC80KOR.DLL"
1754 !ELSE
1755 !IFDEF CL_1310
1756    Delete /REBOOTOK "$INSTDIR\bin\mfc71.dll"
1757    Delete /REBOOTOK "$INSTDIR\bin\msvcr71.dll"
1758    Delete /REBOOTOK "$INSTDIR\bin\msvcp71.dll"
1759    Delete /REBOOTOK "$INSTDIR\bin\MFC71CHS.DLL"
1760    Delete /REBOOTOK "$INSTDIR\bin\MFC71CHT.DLL"
1761    Delete /REBOOTOK "$INSTDIR\bin\MFC71DEU.DLL"
1762    Delete /REBOOTOK "$INSTDIR\bin\MFC71ENU.DLL"
1763    Delete /REBOOTOK "$INSTDIR\bin\MFC71ESP.DLL"
1764    Delete /REBOOTOK "$INSTDIR\bin\MFC71FRA.DLL"
1765    Delete /REBOOTOK "$INSTDIR\bin\MFC71ITA.DLL"
1766    Delete /REBOOTOK "$INSTDIR\bin\MFC71JPN.DLL"
1767    Delete /REBOOTOK "$INSTDIR\bin\MFC71KOR.DLL"
1768 !ELSE
1769 !IFDEF CL_1300
1770    Delete /REBOOTOK "$INSTDIR\bin\mfc70.dll"
1771    Delete /REBOOTOK "$INSTDIR\bin\msvcr70.dll"
1772    Delete /REBOOTOK "$INSTDIR\bin\msvcp70.dll"
1773    Delete /REBOOTOK "$INSTDIR\bin\MFC70CHS.DLL"
1774    Delete /REBOOTOK "$INSTDIR\bin\MFC70CHT.DLL"
1775    Delete /REBOOTOK "$INSTDIR\bin\MFC70DEU.DLL"
1776    Delete /REBOOTOK "$INSTDIR\bin\MFC70ENU.DLL"
1777    Delete /REBOOTOK "$INSTDIR\bin\MFC70ESP.DLL"
1778    Delete /REBOOTOK "$INSTDIR\bin\MFC70FRA.DLL"
1779    Delete /REBOOTOK "$INSTDIR\bin\MFC70ITA.DLL"
1780    Delete /REBOOTOK "$INSTDIR\bin\MFC70JPN.DLL"
1781    Delete /REBOOTOK "$INSTDIR\bin\MFC70KOR.DLL"
1782 !ELSE
1783    Delete /REBOOTOK "$INSTDIR\bin\mfc42.dll"
1784    Delete /REBOOTOK "$INSTDIR\bin\msvcp60.dll"
1785    Delete /REBOOTOK "$INSTDIR\bin\msvcrt.dll"
1786 !ENDIF
1787 !ENDIF
1788 !ENDIF
1789 !ENDIF
1790   
1791    IfSilent SkipDel
1792 ;  IfFileExists "$INSTDIR\Client\CellServDB" CellExists SkipDelAsk
1793 ;  CellExists:
1794   MessageBox MB_YESNO "Would you like to keep your configuration information?" IDYES SkipDel
1795   Delete "$INSTDIR\Client\CellServDB"
1796
1797 ; Only remove krb5.ini if KfW was installed
1798 !IFDEF INSTALL_KFW
1799   Delete "$WINDIR\krb5.ini"
1800 !ENDIF
1801   Delete "$INSTDIR\Client\afsdns.ini"
1802   
1803   GetTempFileName $R0
1804   File /oname=$R0 "${AFS_WININSTALL_DIR}\AdminGroup.exe"
1805   nsExec::Exec '$R0 -remove'
1806
1807   SkipDel:
1808   Delete "$WINDIR\afsd_init.log"
1809   Delete "$INSTDIR\Uninstall.exe"
1810
1811   ; Remove server
1812   Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\afskill.exe"
1813   Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\afssvrcfg.exe"
1814   Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\bosctlsvc.exe"
1815   Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\bosserver.exe"
1816   Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\buserver.exe"
1817   Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\butc.exe"
1818   Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\fileserver.exe"
1819   Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\fms.exe"
1820   Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\kaserver.exe"
1821   Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\ptserver.exe"
1822   Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\salvager.exe"
1823   Delete "$INSTDIR\Server\usr\afs\bin\ServerUninst.dll"
1824   Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\upclient.exe"
1825   Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\upserver.exe"
1826   Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\vlserver.exe"
1827   Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\volinfo.exe"
1828   Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\volserver.exe"
1829
1830   Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\afskill.pdb"
1831   Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\afssvrcfg.pdb"
1832   Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\bosctlsvc.pdb"
1833   Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\bosserver.pdb"
1834   Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\buserver.pdb"
1835   Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\butc.pdb"
1836   Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\fileserver.pdb"
1837   Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\fms.pdb"
1838   Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\kaserver.pdb"
1839   Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\ptserver.pdb"
1840   Delete "$INSTDIR\Server\usr\afs\bin\salvager.pdb"
1841   Delete "$INSTDIR\Server\usr\afs\bin\ServerUninst.pdb"
1842   Delete "$INSTDIR\Server\usr\afs\bin\upclient.pdb"
1843   Delete "$INSTDIR\Server\usr\afs\bin\upserver.pdb"
1844   Delete "$INSTDIR\Server\usr\afs\bin\vlserver.pdb"
1845   Delete "$INSTDIR\Server\usr\afs\bin\volinfo.pdb"
1846   Delete "$INSTDIR\Server\usr\afs\bin\volserver.pdb"
1847
1848   RMDir /r "$INSTDIR\Server\usr\afs\bin"
1849   ; do not delete the server configuration files
1850   ; or we will lose the volumes and authentication
1851   ; databases
1852   ;RmDir /r "$INSTDIR\Server\usr\afs\etc\logs"
1853   ;RmDir /r "$INSTDIR\Server\usr\afs\etc"
1854   ;RmDir /r "$INSTDIR\Server\usr\afs\local"
1855   ;RMDIR /r "$INSTDIR\Server\usr\afs\logs"
1856   
1857   Delete /REBOOTOK "$SYSDIR\afsserver.cpl"
1858   Delete /REBOOTOK "$INSTDIR\Client\Program\afs_cpa.cpl"
1859   Delete /REBOOTOK "$INSTDIR\Client\Program\afslogon.dll"
1860   Delete /REBOOTOK "$INSTDIR\Client\Program\afscpcc.exe"
1861
1862   Delete /REBOOTOK "$SYSDIR\afsserver.pdb"
1863   Delete /REBOOTOK "$INSTDIR\Client\Program\afs_cpa.pdb"
1864   Delete /REBOOTOK "$INSTDIR\Client\Program\afslogon.pdb"
1865   Delete /REBOOTOK "$INSTDIR\Client\Program\afscpcc.pdb"
1866
1867   RMDir /r "$INSTDIR\Documentation\html\CmdRef"
1868   RMDir /r "$INSTDIR\Documentation\html\InstallGd"
1869   RMDir /r "$INSTDIR\Documentation\html\ReleaseNotes"
1870   RMDir /r "$INSTDIR\Documentation\html\SysAdminGd"
1871   RMDIr /r "$INSTDIR\Documentation\html"
1872   
1873   RMDir "$INSTDIR\Documentation"
1874   ; Delete DOC short cut
1875   Delete /REBOOTOK "$INSTDIR\Client\Program\afscreds.exe"
1876   Delete /REBOOTOK "$INSTDIR\Client\Program\afscreds.pdb"
1877
1878   Delete /REBOOTOK "$INSTDIR\SDK\Include\*"
1879   Delete /REBOOTOK "$INSTDIR\SDK\Include\afs\*"
1880   Delete /REBOOTOK "$INSTDIR\SDK\Include\rx\*"
1881   Delete /REBOOTOK "$INSTDIR\SDK\Sample\*"
1882   Delete /REBOOTOK "$INSTDIR\SDK\*"
1883
1884   RMDir  "$INSTDIR\SDK\Sample"
1885   RMDir  "$INSTDIR\SDK\Include\afs"
1886   RMDir  "$INSTDIR\SDK\Include\rx"
1887   RMDir  "$INSTDIR\SDK\Include"
1888   RMDir  "$INSTDIR\SDK"
1889
1890   Delete /REBOOTOK "$INSTDIR\Client\Program\*"
1891   Delete /REBOOTOK "$INSTDIR\Client\*"
1892
1893   RMDir  "$INSTDIR\Client\Program"
1894   RMDir  "$INSTDIR\Client"
1895
1896 !IFDEF DEBUG  
1897 !IFDEF CL_1400
1898    Delete /REBOOTOK "$INSTDIR\bin\msvcr80d.dll"
1899    Delete /REBOOTOK "$INSTDIR\bin\msvcr80d.pdb"
1900    Delete /REBOOTOK "$INSTDIR\bin\msvcp80d.dll"
1901    Delete /REBOOTOK "$INSTDIR\bin\msvcp80d.pdb"
1902    Delete /REBOOTOK "$INSTDIR\bin\mfc80d.dll"
1903    Delete /REBOOTOK "$INSTDIR\bin\mfc80d.pdb"
1904 !ELSE
1905 !IFDEF CL_1310
1906    Delete /REBOOTOK "$INSTDIR\bin\msvcr71d.dll"
1907    Delete /REBOOTOK "$INSTDIR\bin\msvcr71d.pdb"
1908    Delete /REBOOTOK "$INSTDIR\bin\msvcp71d.dll"
1909    Delete /REBOOTOK "$INSTDIR\bin\msvcp71d.pdb"
1910    Delete /REBOOTOK "$INSTDIR\bin\mfc71d.dll"
1911    Delete /REBOOTOK "$INSTDIR\bin\mfc71d.pdb"
1912 !ELSE
1913 !IFDEF CL_1300
1914    Delete /REBOOTOK "$INSTDIR\bin\msvcr70d.dll"
1915    Delete /REBOOTOK "$INSTDIR\bin\msvcr70d.pdb"
1916    Delete /REBOOTOK "$INSTDIR\bin\msvcp70d.dll"
1917    Delete /REBOOTOK "$INSTDIR\bin\msvcp70d.pdb"
1918    Delete /REBOOTOK "$INSTDIR\bin\mfc70d.dll"
1919    Delete /REBOOTOK "$INSTDIR\bin\mfc70d.pdb"
1920 !ELSE
1921    Delete /REBOOTOK "$INSTDIR\bin\mfc42d.dll"
1922    Delete /REBOOTOK "$INSTDIR\bin\mfc42d.pdb"
1923    Delete /REBOOTOK "$INSTDIR\bin\msvcp60d.dll"
1924    Delete /REBOOTOK "$INSTDIR\bin\msvcp60d.pdb"
1925    Delete /REBOOTOK "$INSTDIR\bin\msvcrtd.dll"
1926    Delete /REBOOTOK "$INSTDIR\bin\msvcrtd.pdb"
1927 !ENDIF
1928 !ENDIF
1929 !ENDIF
1930 !ELSE
1931 !IFDEF CL_1400
1932    Delete /REBOOTOK "$INSTDIR\bin\mfc80.dll"
1933    Delete /REBOOTOK "$INSTDIR\bin\msvcr80.dll"
1934    Delete /REBOOTOK "$INSTDIR\bin\msvcp80.dll"
1935    Delete /REBOOTOK "$INSTDIR\bin\MFC80CHS.DLL"
1936    Delete /REBOOTOK "$INSTDIR\bin\MFC80CHT.DLL"
1937    Delete /REBOOTOK "$INSTDIR\bin\MFC80DEU.DLL"
1938    Delete /REBOOTOK "$INSTDIR\bin\MFC80ENU.DLL"
1939    Delete /REBOOTOK "$INSTDIR\bin\MFC80ESP.DLL"
1940    Delete /REBOOTOK "$INSTDIR\bin\MFC80FRA.DLL"
1941    Delete /REBOOTOK "$INSTDIR\bin\MFC80ITA.DLL"
1942    Delete /REBOOTOK "$INSTDIR\bin\MFC80JPN.DLL"
1943    Delete /REBOOTOK "$INSTDIR\bin\MFC80KOR.DLL"
1944 !ELSE
1945 !IFDEF CL_1310
1946    Delete /REBOOTOK "$INSTDIR\bin\mfc71.dll"
1947    Delete /REBOOTOK "$INSTDIR\bin\msvcr71.dll"
1948    Delete /REBOOTOK "$INSTDIR\bin\msvcp71.dll"
1949    Delete /REBOOTOK "$INSTDIR\bin\MFC71CHS.DLL"
1950    Delete /REBOOTOK "$INSTDIR\bin\MFC71CHT.DLL"
1951    Delete /REBOOTOK "$INSTDIR\bin\MFC71DEU.DLL"
1952    Delete /REBOOTOK "$INSTDIR\bin\MFC71ENU.DLL"
1953    Delete /REBOOTOK "$INSTDIR\bin\MFC71ESP.DLL"
1954    Delete /REBOOTOK "$INSTDIR\bin\MFC71FRA.DLL"
1955    Delete /REBOOTOK "$INSTDIR\bin\MFC71ITA.DLL"
1956    Delete /REBOOTOK "$INSTDIR\bin\MFC71JPN.DLL"
1957    Delete /REBOOTOK "$INSTDIR\bin\MFC71KOR.DLL"
1958 !ELSE
1959 !IFDEF CL_1300
1960    Delete /REBOOTOK "$INSTDIR\bin\mfc70.dll"
1961    Delete /REBOOTOK "$INSTDIR\bin\msvcr70.dll"
1962    Delete /REBOOTOK "$INSTDIR\bin\msvcp70.dll"
1963    Delete /REBOOTOK "$INSTDIR\bin\MFC70CHS.DLL"
1964    Delete /REBOOTOK "$INSTDIR\bin\MFC70CHT.DLL"
1965    Delete /REBOOTOK "$INSTDIR\bin\MFC70DEU.DLL"
1966    Delete /REBOOTOK "$INSTDIR\bin\MFC70ENU.DLL"
1967    Delete /REBOOTOK "$INSTDIR\bin\MFC70ESP.DLL"
1968    Delete /REBOOTOK "$INSTDIR\bin\MFC70FRA.DLL"
1969    Delete /REBOOTOK "$INSTDIR\bin\MFC70ITA.DLL"
1970    Delete /REBOOTOK "$INSTDIR\bin\MFC70JPN.DLL"
1971    Delete /REBOOTOK "$INSTDIR\bin\MFC70KOR.DLL"
1972 !ELSE
1973    Delete /REBOOTOK "$INSTDIR\bin\mfc42.dll"
1974    Delete /REBOOTOK "$INSTDIR\bin\msvcp60.dll"
1975    Delete /REBOOTOK "$INSTDIR\bin\msvcrt.dll"
1976 !ENDIF
1977 !ENDIF
1978 !ENDIF
1979 !ENDIF
1980
1981   Delete /REBOOTOK "$INSTDIR\Common\*"
1982   RMDir "$INSTDIR\Common"
1983
1984 !ifdef INSTALL_KFW
1985   ;Remove KfW files
1986   Delete /REBOOTOK "$INSTDIR\kfw\bin\*"
1987   RMDIR  /r "$INSTDIR\kfw\bin"
1988   Delete /REBOOTOK "$INSTDIR\kfw\doc\*"
1989   RMDIR  /r "$INSTDIR\kfw\doc"
1990   RMDIR  /r "$INSTDIR\kfw"
1991 !endif
1992
1993   Delete "$SMPROGRAMS\OpenAFS\Documentation.lnk"
1994
1995   ; Remove control center
1996   Delete /REBOOTOK "$INSTDIR\Control Center\TaAfsAccountManager.exe"
1997   Delete /REBOOTOK "$INSTDIR\Control Center\TaAfsAdmSvr.exe"
1998   Delete /REBOOTOK "$INSTDIR\Control Center\TaAfsServerManager.exe"
1999   Delete /REBOOTOK "$INSTDIR\Control Center\CCUninst.dll"
2000   Delete /REBOOTOK "$INSTDIR\Control Center\TaAfsAccountManager.pdb"
2001   Delete /REBOOTOK "$INSTDIR\Control Center\TaAfsAdmSvr.pdb"
2002   Delete /REBOOTOK "$INSTDIR\Control Center\TaAfsServerManager.pdb"
2003   RMDir  "$INSTDIR\Control Center"
2004   
2005   Delete "$SMPROGRAMS\OpenAFS\Uninstall OpenAFS.lnk"
2006   Delete "$SMPROGRAMS\OpenAFS\Client\Authentication.lnk"
2007   Delete "$SMPROGRAMS\OpenAFS\Control Center\Account Manager.lnk"
2008   Delete "$SMPROGRAMS\OpenAFS\Control Center\Server Manager.lnk"
2009   RMDIR "$SMPROGRAMS\OpenAFS\Control Center"
2010   RMDir /r "$SMPROGRAMS\OpenAFS\Client"
2011   RMDir /r "$SMPROGRAMS\OpenAFS"
2012   Delete "$SMSTARTUP\AFS Credentials.lnk"
2013   
2014   ReadRegStr $R0 HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon" "CachePath"
2015   IfErrors +2
2016   Delete "$R0\AFSCache"
2017   Delete "C:\AFSCache"
2018
2019   DeleteRegKey HKCR "*\shellex\ContextMenuHandlers\AFS Client Shell Extension"
2020   DeleteRegKey HKCR "CLSID\{DC515C27-6CAC-11D1-BAE7-00C04FD140D2}\InprocServer32"
2021   DeleteRegKey HKCR "CLSID\{DC515C27-6CAC-11D1-BAE7-00C04FD140D2}"
2022   DeleteRegKey HKCR "FOLDER\shellex\ContextMenuHandlers\AFS Client Shell Extension"
2023   DeleteRegValue HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Approved" "{DC515C27-6CAC-11D1-BAE7-00C04FD140D2}"
2024   DeleteRegValue HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Control Panel\Cpls" "afs_cpa"
2025
2026   ; WinLogon Event Notification
2027   DeleteRegKey HKLM "Software\Microsoft\Windows NT\CurrentVersion\Winlogon\Notify\AfsLogon"
2028
2029   DeleteRegKey HKLM "${AFS_REGKEY_ROOT}\AFS Client\CurrentVersion"
2030   DeleteRegKey HKLM "${AFS_REGKEY_ROOT}\AFS Client"
2031   DeleteRegKey HKLM "${AFS_REGKEY_ROOT}\AFS Supplemental Documentation\CurrentVersion"
2032   DeleteRegKey HKLM "${AFS_REGKEY_ROOT}\AFS Supplemental Documentation"
2033   DeleteRegKey HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\CurrentVersion"
2034   DeleteRegKey HKLM "${AFS_REGKEY_ROOT}\AFS Control Center"
2035   DeleteRegKey HKLM "${AFS_REGKEY_ROOT}\AFS Server\CurrentVersion"
2036   DeleteRegKey HKLM "${AFS_REGKEY_ROOT}\AFS Server"
2037   DeleteRegKey /ifempty HKLM "${AFS_REGKEY_ROOT}"
2038   DeleteRegKey HKLM "${NID_PLUGIN_MGR}\Modules\OpenAFS"
2039   DeleteRegKey HKLM "${NID_PLUGIN_MGR}\Plugins\AfsCred"
2040   DeleteRegKey /ifempty HKLM "Software\MIT\NetIDMgr"
2041   DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\OpenAFS"
2042   DeleteRegValue HKLM "SYSTEM\CurrentControlSet\Services\NetBT\Parameters" "SmbDeviceEnabled"
2043
2044   ; Support for apps that wrote submount data directly to afsdsbmt.ini
2045   DeleteRegKey HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion\IniFileMapping\afsdsbmt.ini"
2046
2047   RMDir  "$INSTDIR"
2048
2049 SectionEnd
2050
2051 ;--------------------------------
2052 ;Uninstaller Functions
2053
2054 Function un.onInit
2055
2056   ;Get language from registry
2057   ReadRegStr $LANGUAGE HKCU "Software\OpenAFS\AFS" "Installer Language"
2058
2059 FunctionEnd
2060
2061 Function un.onUninstSuccess
2062
2063   IfSilent SkipAsk
2064   MessageBox MB_OK "Please reboot your machine to complete uninstallation of the software"
2065   SkipAsk:
2066
2067 FunctionEnd
2068
2069 ;------------------------------
2070 ; Get the CellServDB file from the Internet
2071
2072 Function afs.GetCellServDB
2073
2074 ;Check if we should download CellServDB
2075 ReadINIStr $R0 $0 "Field 4" "State"
2076 StrCmp $R0 "1" DoDownload
2077
2078 ;Do nothing if we're keeping the existing file
2079 ReadINIStr $R0 $0 "Field 2" "State"
2080 StrCmp $R0 "1" done
2081
2082 ReadINIStr $R0 $0 "Field 6" "State"
2083 StrCmp $R0 "1" CheckOther
2084
2085 ReadINIStr $R0 $0 "Field 3" "State"
2086 StrCmp $R0 "1" UsePackaged
2087
2088 ; If none of these, grab file from other location
2089 goto UsePackaged
2090
2091 DoDownload:
2092    ReadINIStr $R0 $0 "Field 5" "State"
2093    NSISdl::download $R0 "$INSTDIR\Client\CellServDB"
2094    Pop $R0 ;Get the return value
2095    StrCmp $R0 "success" +2
2096       MessageBox MB_OK|MB_ICONSTOP "Download failed: $R0"
2097    goto done
2098
2099 UsePackaged:
2100    SetOutPath "$INSTDIR\Client"
2101    File "CellServDB"
2102    goto done
2103    
2104 CheckOther:
2105    ReadINIStr $R0 $0 "Field 7" "State"
2106    StrCmp $R0 "" done
2107    CopyFiles $R0 "$INSTDIR\Client\CellServDB"
2108    
2109 done:
2110
2111 FunctionEnd
2112
2113 Function AddProvider
2114    Push $R0
2115    Push $R1
2116    ReadRegStr $R0 HKLM "SYSTEM\CurrentControlSet\Control\NetworkProvider\HWOrder" "ProviderOrder"
2117    Push $R0
2118    StrCpy $R0 "TransarcAFSDaemon"
2119    Push $R0
2120    Call StrStr
2121    Pop $R0
2122    StrCmp $R0 "" +1 DoOther
2123    ReadRegStr $R1 HKLM "SYSTEM\CurrentControlSet\Control\NetworkProvider\HWOrder" "ProviderOrder"   
2124    StrCpy $R0 "$R1,TransarcAFSDaemon"
2125    WriteRegStr HKLM "SYSTEM\CurrentControlSet\Control\NetworkProvider\HWOrder" "ProviderOrder" $R0
2126 DoOther:
2127    ReadRegStr $R0 HKLM "SYSTEM\CurrentControlSet\Control\NetworkProvider\Order" "ProviderOrder"
2128    Push $R0
2129    StrCpy $R0 "TransarcAFSDaemon"
2130    Push $R0
2131    Call StrStr
2132    Pop $R0
2133    StrCmp $R0 "" +1 End
2134    ReadRegStr $R1 HKLM "SYSTEM\CurrentControlSet\Control\NetworkProvider\Order" "ProviderOrder"   
2135    StrCpy $R0 "$R1,TransarcAFSDaemon"
2136    WriteRegStr HKLM "SYSTEM\CurrentControlSet\Control\NetworkProvider\Order" "ProviderOrder" $R0   
2137 End:
2138    Pop $R1
2139    Pop $R0
2140 FunctionEnd
2141
2142 Function un.RemoveProvider
2143    Push $R0
2144    StrCpy $R0 "TransarcAFSDaemon"
2145    Push $R0
2146    StrCpy $R0 "SYSTEM\CurrentControlSet\Control\NetworkProvider\HWOrder"
2147    Call un.RemoveFromProvider
2148    StrCpy $R0 "TransarcAFSDaemon"
2149    Push $R0
2150    StrCpy $R0 "SYSTEM\CurrentControlSet\Control\NetworkProvider\Order"
2151    Call un.RemoveFromProvider
2152    Pop $R0
2153 FunctionEnd
2154
2155 Function un.RemoveFromProvider
2156   Exch $0
2157   Push $1
2158   Push $2
2159   Push $3
2160   Push $4
2161   Push $5
2162   Push $6
2163
2164   ReadRegStr $1 HKLM "$R0" "ProviderOrder"
2165     StrCpy $5 $1 1 -1 # copy last char
2166     StrCmp $5 "," +2 # if last char != ,
2167       StrCpy $1 "$1," # append ,
2168     Push $1
2169     Push "$0,"
2170     Call un.StrStr ; Find `$0,` in $1
2171     Pop $2 ; pos of our dir
2172     StrCmp $2 "" unRemoveFromPath_done
2173       ; else, it is in path
2174       # $0 - path to add
2175       # $1 - path var
2176       StrLen $3 "$0,"
2177       StrLen $4 $2
2178       StrCpy $5 $1 -$4 # $5 is now the part before the path to remove
2179       StrCpy $6 $2 "" $3 # $6 is now the part after the path to remove
2180       StrCpy $3 $5$6
2181
2182       StrCpy $5 $3 1 -1 # copy last char
2183       StrCmp $5 "," 0 +2 # if last char == ,
2184         StrCpy $3 $3 -1 # remove last char
2185
2186       WriteRegStr HKLM "$R0" "ProviderOrder" $3
2187       
2188   unRemoveFromPath_done:
2189     Pop $6
2190     Pop $5
2191     Pop $4
2192     Pop $3
2193     Pop $2
2194     Pop $1
2195     Pop $0
2196 FunctionEnd
2197
2198 Function CheckPathForAFS
2199    Push $0
2200    Push $1
2201    Push $2
2202    Push $3
2203    ReadRegStr $1 HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment" "PATH"
2204    StrCpy $1 "$1;"
2205 loop:
2206    Push $1
2207    Push ";"
2208    Call StrStr
2209    Pop $0
2210    StrLen $2 $0
2211    StrCpy $3 $1 -$2
2212    IfFileExists "$3\afsd_service.exe" Error
2213    StrCpy $1 $0 32768 1
2214    StrLen $2 $1
2215    IntCmp $2 0 Done Done loop
2216    goto Done
2217 Error:
2218    MessageBox MB_ICONSTOP|MB_OK|MB_TOPMOST "This installer is unable to upgrade the previous version of AFS. Please uninstall the current AFS version before continuing."
2219    Abort "Unable to install OpenAFS"
2220 Done:
2221    Pop $3
2222    Pop $2
2223    Pop $1
2224    Pop $0
2225 FunctionEnd
2226
2227 Function AddToUniquePath
2228    Pop $R0
2229    Push $R0
2230    Push "$R0;"
2231    ReadRegStr $R0 HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment" "PATH"
2232    Push "$R0;"
2233    Call StrStr
2234    Pop $R0
2235    StrCmp $R0 "" +1 Done
2236    Call AddToPath
2237 Done:
2238 FunctionEnd
2239
2240
2241 ;-------------------------------
2242 ;Do the page to get the CellServDB
2243
2244 Function AFSPageGetCellServDB
2245   ; Skip this page if we are not installing the client
2246   SectionGetFlags ${secClient} $R0
2247   IntOp $R0 $R0 & ${SF_SELECTED}
2248   StrCmp $R0 "0" Skip
2249   
2250   ; Set the install options here
2251   
2252 startOver:
2253   WriteINIStr $0 "Field 2" "Flags" "DISABLED"
2254   WriteINIStr $0 "Field 3" "State" "1"
2255   WriteINISTR $0 "Field 4" "State" "0"
2256   WriteINIStr $0 "Field 6" "State" "0"
2257   
2258   ; If there is an existing afsdcell.ini file, migrate it to CellServDB
2259   IfFileExists "$WINDIR\afsdcell.ini" +1 +3
2260   CopyFiles /SILENT "$WINDIR\afsdcell.ini" "$INSTDIR\Client\CellServDB"
2261   Delete "$WINDIR\afsdcell.ini"
2262   ; If there is an existing CellServDB file, allow the user to choose it and make it default
2263   IfFileExists "$INSTDIR\Client\CellServDB" +1 notpresent
2264   WriteINIStr $0 "Field 2" "Flags" "ENABLED"
2265   WriteINIStr $0 "Field 2" "State" "1"
2266   WriteINIStr $0 "Field 3" "State" "0"
2267   
2268   notpresent:
2269   
2270   !insertmacro MUI_HEADER_TEXT "CellServDB Configuration" "Please choose a method for installing the CellServDB file:" 
2271   InstallOptions::dialog $0
2272   Pop $R1
2273   StrCmp $R1 "cancel" exit
2274   StrCmp $R1 "back" done
2275   StrCmp $R1 "success" done
2276 exit: Quit
2277 done:
2278
2279    ; Check that if a file is set, a valid filename is entered...
2280    ReadINIStr $R0 $0 "Field 6" "State"
2281    StrCmp $R0 "1" CheckFileName
2282    
2283    ;Check if a URL is specified, one *IS* specified
2284    ReadINIStr $R0 $0 "Field 4" "State"
2285    StrCmp $R0 "1" CheckURL Skip
2286    
2287    CheckURL:
2288    ReadINIStr $R0 $0 "Field 5" "State"
2289    StrCmp $R0 "" +1 Skip
2290    MessageBox MB_OK|MB_ICONSTOP $(URLError)
2291    WriteINIStr $0 "Field 4" "State" "0"
2292    goto startOver
2293    
2294    CheckFileName:
2295    ReadINIStr $R0 $0 "Field 7" "State"
2296    IfFileExists $R0 Skip
2297
2298    MessageBox MB_OK|MB_ICONSTOP $(CellError)
2299    WriteINIStr $0 "Field 6" "State" "0"
2300    goto startOver
2301    
2302    Skip:
2303    
2304 FunctionEnd
2305
2306
2307 Function AFSPageGetCellName
2308    IfSilent good
2309   ; Skip this page if we are not installing the client
2310   SectionGetFlags ${secClient} $R0
2311   IntOp $R0 $R0 & ${SF_SELECTED}
2312   StrCmp $R0 "0" good
2313   
2314 startOver:
2315    ; We want to read in the existing parameters and make them the defaults
2316    
2317    ;AFS Crypt security
2318    ReadRegDWORD $R1 HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\Parameters" "SecurityLevel"
2319    StrCmp $R1 "" +3
2320    WriteINIStr $1 "Field 3" "State" $R1
2321    goto +2
2322    WriteINIStr $1 "Field 3" "State" "1"
2323    
2324    ;Use DNS
2325    ReadRegDWORD $R1 HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\Parameters" "UseDNS"
2326    StrCmp $R1 "" +3
2327    WriteINIStr $1 "Field 9" "State" $R1
2328    goto +2
2329    WriteINIStr $1 "Field 9" "State" "1"
2330    
2331    ; Use integrated logon
2332    ReadRegDWORD $R1 HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\Parameters" "LogonOptions"
2333    StrCmp $R1 "" +3
2334    WriteINIStr $1 "Field 7" "State" $R1
2335    goto +2
2336    WriteINIStr $1 "Field 7" "State" "0"
2337    
2338    ; If this is a server install, we do NOT want to recommend the Freelance client
2339    ; And we do not need to ask for the cell name.
2340    SectionGetFlags ${secServer} $R1
2341    IntOp $R1 $R1 & ${SF_SELECTED}
2342    StrCmp $R1 "1" +1 NotServer
2343    WriteINIStr $1 "Field 6" "Text" "Enable AFS Freelance client (Not Recommended for servers)"
2344    ReadRegDWORD $R1 HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\Parameters" "FreelanceClient"
2345    StrCmp $R1 "" +3
2346    WriteINIStr $1 "Field 5" "State" $R1
2347    goto +2
2348    WriteINIStr $1 "Field 5" "State" "0"
2349    WriteINIStr $1 "Field 1" "Flags" "DISABLED"
2350    WriteINIStr $1 "Field 2" "Flags" "DISABLED"
2351    goto SkipServerTest
2352 NotServer:
2353    WriteINIStr $1 "Field 6" "Text" "Enable AFS Freelance client (Recommended)"
2354    ReadRegDWORD $R1 HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\Parameters" "FreelanceClient"
2355    StrCmp $R1 "" +3
2356    WriteINIStr $1 "Field 5" "State" $R1
2357    goto +2
2358    WriteINIStr $1 "Field 5" "State" "1"
2359    WriteINIStr $1 "Field 1" "Flags" ""
2360    WriteINIStr $1 "Field 2" "Flags" ""
2361 SkipServerTest:
2362    ; Get the current cell name, if any
2363    ReadRegStr $R1 HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\Parameters" "Cell"
2364    StrCmp $R1 "" +2
2365    WriteINIStr $1 "Field 2" "State" $R1
2366   !insertmacro MUI_HEADER_TEXT "Client Cell Name Configuration" "Please enter the name for your default cell:" 
2367   InstallOptions::dialog $1
2368   Pop $R1
2369   StrCmp $R1 "cancel" exit
2370   StrCmp $R1 "back" done
2371   StrCmp $R1 "success" done
2372 exit: Quit
2373 done:
2374    ReadINIStr $R0 $1 "Field 2" "State"
2375    StrCmp $R0 "" +1 good
2376    
2377    MessageBox MB_OK|MB_ICONSTOP $(CellNameError)
2378    goto startOver
2379 good:
2380 FunctionEnd
2381
2382
2383 ;---------------------------------------------------------
2384 ;Do the page to get the afscreds.exe startup configuration
2385
2386 Function AFSPageConfigAFSCreds
2387   ; Skip this page if we are not installing the client
2388   SectionGetFlags ${secClient} $R0
2389   IntOp $R0 $R0 & ${SF_SELECTED}
2390   StrCmp $R0 "0" done
2391   
2392   ; Set the install options here
2393   
2394   !insertmacro MUI_HEADER_TEXT "AFS Credentials Configuration" "Please choose default options for configuring the AFS Credentials program:" 
2395   InstallOptions::dialog $2
2396   Pop $R1
2397   StrCmp $R1 "cancel" exit
2398   StrCmp $R1 "back" done
2399   StrCmp $R1 "success" done
2400 exit: Quit
2401 done:
2402    
2403 FunctionEnd
2404
2405
2406 ;-------------
2407 ; Common install routines for each module
2408 Function AFSCommon.Install
2409
2410 WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\OpenAFS" "DisplayName" "OpenAFS for Windows"
2411 WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\OpenAFS" "UninstallString" "$INSTDIR\uninstall.exe"
2412 !ifndef DEBUG
2413 WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\OpenAFS" "DisplayVersion" "${AFS_VERSION}"
2414 !else
2415 WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\OpenAFS" "DisplayVersion" "${AFS_VERSION} Checked/Debug"
2416 !endif
2417 WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\OpenAFS" "URLInfoAbout" "http://www.openafs.org/"
2418
2419 FunctionEnd
2420
2421
2422 ;-------------------
2423 ; Get the currently installed version and place it on the stack
2424 ; Modifies: Nothing
2425 Function GetInstalledVersion
2426    Push $R0
2427    Push $R1
2428    Push $R4
2429    
2430    ReadRegStr $R0 HKLM "Software\TransarcCorporation\$R2\CurrentVersion" "VersionString"
2431    StrCmp $R0 "" NotTransarc done
2432    
2433    
2434 NotTransarc:
2435    ReadRegStr $R0 HKLM "${AFS_REGKEY_ROOT}\$R2\CurrentVersion" "VersionString"
2436    StrCmp $R0 "" done
2437    
2438 done:
2439    Pop $R4
2440    Pop $R1
2441    Exch $R0
2442 FunctionEnd
2443
2444 ; Functions to get each component of the version number
2445 Function GetInstalledVersionMajor
2446    Push $R0
2447    Push $R1
2448    Push $R4
2449    
2450    ReadRegDWORD $R0 HKLM "Software\TransarcCorporation\$R2\CurrentVersion" "MajorVersion"
2451    StrCmp $R0 "" NotTransarc done
2452    
2453    
2454 NotTransarc:
2455    ReadRegDWORD $R0 HKLM "${AFS_REGKEY_ROOT}\$R2\CurrentVersion" "MajorVersion"
2456    StrCmp $R0 "" done
2457    
2458 done:
2459    Pop $R4
2460    Pop $R1
2461    Exch $R0
2462 FunctionEnd
2463
2464 Function GetInstalledVersionMinor
2465    Push $R0
2466    Push $R1
2467    Push $R4
2468    
2469    ReadRegDWORD $R0 HKLM "Software\TransarcCorporation\$R2\CurrentVersion" "MinorVersion"
2470    StrCmp $R0 "" NotTransarc done
2471    
2472    
2473 NotTransarc:
2474    ReadRegDWORD $R0 HKLM "${AFS_REGKEY_ROOT}\$R2\CurrentVersion" "MinorVersion"
2475    StrCmp $R0 "" done
2476    
2477 done:
2478    Pop $R4
2479    Pop $R1
2480    Exch $R0
2481 FunctionEnd
2482
2483 Function GetInstalledVersionPatch
2484    Push $R0
2485    Push $R1
2486    Push $R4
2487    
2488    ReadRegDWORD $R0 HKLM "Software\TransarcCorporation\$R2\CurrentVersion" "PatchLevel"
2489    StrCmp $R0 "" NotTransarc done
2490    
2491    
2492 NotTransarc:
2493    ReadRegDWORD $R0 HKLM "${AFS_REGKEY_ROOT}\$R2\CurrentVersion" "PatchLevel"
2494    StrCmp $R0 "" done
2495    
2496 done:
2497    Pop $R4
2498    Pop $R1
2499    Exch $R0
2500 FunctionEnd
2501
2502
2503
2504 ;-------------------------------
2505 ; Check if the client should be checked for default install
2506 Function ShouldClientInstall
2507    Push $R0
2508    StrCpy $R2 "AFS Client"
2509    Call GetInstalledVersion
2510    Pop $R0
2511    
2512    StrCmp $R0 "" NotInstalled
2513    ; Now we see if it's an older or newer version
2514    
2515    Call GetInstalledVersionMajor
2516    Pop $R0
2517    IntCmpU $R0 ${AFS_MAJORVERSION} +1 Upgrade Downgrade
2518
2519    Call GetInstalledVersionMinor
2520    Pop $R0
2521    IntCmpU $R0 ${AFS_MINORVERSION} +1 Upgrade Downgrade
2522    
2523    Call GetInstalledVersionPatch
2524    Pop $R0
2525    IntCmpU $R0 ${AFS_PATCHLEVEL} Reinstall Upgrade Downgrade
2526    
2527 Reinstall:
2528    StrCpy $R0 "1"
2529    Exch $R0
2530    goto end
2531    
2532 Upgrade:
2533    StrCpy $R0 "2"
2534    Exch $R0
2535    goto end
2536    
2537 Downgrade:
2538    StrCpy $R0 "3"
2539    Exch $R0
2540    goto end
2541    
2542 NotInstalled:
2543    StrCpy $R0 "0"
2544    Exch $R0
2545 end:   
2546 FunctionEnd
2547
2548 ;-------------------------------
2549 ; Check how the server options should be set
2550 Function ShouldServerInstall
2551    Push $R0
2552    StrCpy $R2 "AFS Server"
2553    Call GetInstalledVersion
2554    Pop $R0
2555    
2556    StrCmp $R0 "" NotInstalled
2557    ; Now we see if it's an older or newer version
2558
2559    Call GetInstalledVersionMajor
2560    Pop $R0
2561    IntCmpU $R0 ${AFS_MAJORVERSION} +1 Upgrade Downgrade
2562
2563    Call GetInstalledVersionMinor
2564    Pop $R0
2565    IntCmpU $R0 ${AFS_MINORVERSION} +1 Upgrade Downgrade
2566    
2567    Call GetInstalledVersionPatch
2568    Pop $R0
2569    IntCmpU $R0 ${AFS_PATCHLEVEL} Reinstall Upgrade Downgrade
2570    
2571 Reinstall:
2572    StrCpy $R0 "1"
2573    Exch $R0
2574    goto end
2575    
2576 Upgrade:
2577    StrCpy $R0 "2"
2578    Exch $R0
2579    goto end
2580    
2581 Downgrade:
2582    StrCpy $R0 "3"
2583    Exch $R0
2584    goto end
2585    
2586    
2587 NotInstalled:
2588    StrCpy $R0 "0"
2589    Exch $R0
2590 end:   
2591 FunctionEnd
2592
2593
2594 ; See if AFS Server is installed
2595 ; Returns: "1" if it is, 0 if it is not (on the stack)
2596 Function IsServerInstalled
2597    Push $R0
2598    StrCpy $R2 "AFS Server"
2599    Call GetInstalledVersion
2600    Pop $R0
2601    
2602    StrCmp $R0 "" NotInstalled
2603    
2604    StrCpy $R0 "1"
2605    Exch $R0
2606    goto end
2607    
2608 NotInstalled:
2609    StrCpy $R0 "0"
2610    Exch $R0
2611 end:   
2612 FunctionEnd
2613
2614
2615 ; See if AFS Client is installed
2616 ; Returns: "1" if it is, 0 if it is not (on the stack)
2617 Function IsClientInstalled
2618    Push $R0
2619    StrCpy $R2 "AFS Client"
2620    Call GetInstalledVersion
2621    Pop $R0
2622    
2623    StrCmp $R0 "" NotInstalled
2624    
2625    StrCpy $R0 "1"
2626    Exch $R0
2627    goto end
2628    
2629 NotInstalled:
2630    StrCpy $R0 "0"
2631    Exch $R0
2632 end:   
2633 FunctionEnd
2634
2635
2636
2637 ; See if AFS Documentation is installed
2638 ; Returns: "1" if it is, 0 if it is not (on the stack)
2639 Function IsDocumentationInstalled
2640    Push $R0
2641    StrCpy $R2 "AFS Supplemental Documentation"
2642    Call GetInstalledVersion
2643    Pop $R0
2644    
2645    StrCmp $R0 "" NotInstalled
2646    
2647    StrCpy $R0 "1"
2648    Exch $R0
2649    goto end
2650    
2651 NotInstalled:
2652    StrCpy $R0 "0"
2653    Exch $R0
2654 end:   
2655 FunctionEnd
2656
2657
2658 ; See if Control Center is installed
2659 ; Returns: "1" if it is, 0 if it is not (on the stack)
2660 Function IsControlInstalled
2661    Push $R0
2662    StrCpy $R2 "AFS Control Center"
2663    Call GetInstalledVersion
2664    Pop $R0
2665    
2666    StrCmp $R0 "" NotInstalled
2667    
2668    StrCpy $R0 "1"
2669    Exch $R0
2670    goto end
2671    
2672 NotInstalled:
2673    StrCpy $R0 "0"
2674    Exch $R0
2675 end:   
2676 FunctionEnd
2677
2678
2679 !ifdef USE_GETPARAMETERS
2680 ; GetParameters
2681 ; input, none
2682 ; output, top of stack (replaces, with e.g. whatever)
2683 ; modifies no other variables.
2684
2685 Function GetParameters
2686   Push $R0
2687   Push $R1
2688   Push $R2
2689   StrCpy $R0 $CMDLINE 1
2690   StrCpy $R1 '"'
2691   StrCpy $R2 1
2692   StrCmp $R0 '"' loop
2693     StrCpy $R1 ' ' ; we're scanning for a space instead of a quote
2694   loop:
2695     StrCpy $R0 $CMDLINE 1 $R2
2696     StrCmp $R0 $R1 loop2
2697     StrCmp $R0 "" loop2
2698     IntOp $R2 $R2 + 1
2699     Goto loop
2700   loop2:
2701     IntOp $R2 $R2 + 1
2702     StrCpy $R0 $CMDLINE 1 $R2
2703     StrCmp $R0 " " loop2
2704   StrCpy $R0 $CMDLINE "" $R2
2705   Pop $R2
2706   Pop $R1
2707   Exch $R0
2708 FunctionEnd
2709 !endif
2710
2711
2712 ;Check to see if any AFS component is installed
2713 ;Returns: Value on stack: "1" if it is, "0" if it is not
2714 Function IsAnyAFSInstalled
2715    Push $R0
2716    Push $R1
2717    Push $R2
2718    Push $R3
2719    Call IsClientInstalled
2720    Pop $R0
2721    Call IsServerInstalled
2722    Pop $R1
2723    Call IsControlInstalled
2724    Pop $R2
2725    Call IsDocumentationInstalled
2726    Pop $R3
2727    ; Now we must see if ANY of the $Rn values are 1
2728    StrCmp $R0 "1" SomethingInstalled
2729    StrCmp $R1 "1" SomethingInstalled
2730    StrCmp $R2 "1" SomethingInstalled
2731    StrCmp $R3 "1" SomethingInstalled
2732    ;Nothing installed
2733    StrCpy $R0 "0"
2734    goto end
2735 SomethingInstalled:
2736    StrCpy $R0 "1"
2737 end:
2738    Pop $R3
2739    Pop $R2
2740    Pop $R1
2741    Exch $R0
2742 FunctionEnd
2743
2744
2745 ;Install English Language Files
2746 Function AFSLangFiles
2747    ; Common files
2748    SetOutPath "$INSTDIR\Common"
2749    File "${AFS_CLIENT_BUILDDIR}\afs_config.exe"
2750   !insertmacro ReplaceDLL "${AFS_DESTDIR}\lib\afsauthent.dll" "$INSTDIR\Common\afsauthent.dll" "$INSTDIR"
2751   !insertmacro ReplaceDLL "${AFS_DESTDIR}\lib\afspthread.dll" "$INSTDIR\Common\afspthread.dll" "$INSTDIR"
2752   !insertmacro ReplaceDLL "${AFS_DESTDIR}\lib\afsrpc.dll" "$INSTDIR\Common\afsrpc.dll" "$INSTDIR"
2753   !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afsadminutil.dll"    "$INSTDIR\Common\afsadminutil.dll"    "$INSTDIR"
2754   !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afsclientadmin.dll"  "$INSTDIR\Common\afsclientadmin.dll"  "$INSTDIR" 
2755   !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afsprocmgmt.dll"     "$INSTDIR\Common\afsprocmgmt.dll"     "$INSTDIR" 
2756   !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afsvosadmin.dll"     "$INSTDIR\Common\afsvosadmin.dll"     "$INSTDIR" 
2757   !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\TaAfsAppLib.dll"     "$INSTDIR\Common\TaAfsAppLib.dll"     "$INSTDIR" 
2758   !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afsvosadmin.dll"     "$INSTDIR\Common\afsvosadmin.dll"     "$INSTDIR" 
2759   !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afsbosadmin.dll"     "$INSTDIR\Common\afsbosadmin.dll"     "$INSTDIR" 
2760   !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afscfgadmin.dll"     "$INSTDIR\Common\afscfgadmin.dll"     "$INSTDIR" 
2761   !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afskasadmin.dll"     "$INSTDIR\Common\afskasadmin.dll"     "$INSTDIR" 
2762   !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afsptsadmin.dll"     "$INSTDIR\Common\afsptsadmin.dll"     "$INSTDIR" 
2763
2764  SetOutPath "$INSTDIR\Common"
2765
2766 !IFDEF DEBUG
2767 !IFDEF CL_1400
2768    !insertmacro ReplaceDLL "${SYSTEMDIR}\msvcr80d.dll" "$INSTDIR\Common\msvcr80d.dll" "$INSTDIR"
2769    !insertmacro ReplaceDLL "${SYSTEMDIR}\msvcp80d.dll" "$INSTDIR\Common\msvcp80d.dll" "$INSTDIR"
2770    !insertmacro ReplaceDLL "${SYSTEMDIR}\mfc80d.dll" "$INSTDIR\Common\mfc80d.dll" "$INSTDIR"
2771    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC80CHS.DLL" "$INSTDIR\Common\MFC80CHS.DLL" "$INSTDIR"
2772    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC80CHT.DLL" "$INSTDIR\Common\MFC80CHT.DLL" "$INSTDIR"
2773    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC80DEU.DLL" "$INSTDIR\Common\MFC80DEU.DLL" "$INSTDIR"
2774    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC80ENU.DLL" "$INSTDIR\Common\MFC80ENU.DLL" "$INSTDIR"
2775    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC80ESP.DLL" "$INSTDIR\Common\MFC80ESP.DLL" "$INSTDIR"
2776    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC80FRA.DLL" "$INSTDIR\Common\MFC80FRA.DLL" "$INSTDIR"
2777    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC80ITA.DLL" "$INSTDIR\Common\MFC80ITA.DLL" "$INSTDIR"
2778    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC80JPN.DLL" "$INSTDIR\Common\MFC80JPN.DLL" "$INSTDIR"
2779    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC80KOR.DLL" "$INSTDIR\Common\MFC80KOR.DLL" "$INSTDIR"
2780 !ELSE
2781 !IFDEF CL_1310
2782    !insertmacro ReplaceDLL "${SYSTEMDIR}\msvcr71d.dll" "$INSTDIR\Common\msvcr71d.dll" "$INSTDIR"
2783    !insertmacro ReplaceDLL "${SYSTEMDIR}\msvcp71d.dll" "$INSTDIR\Common\msvcp71d.dll" "$INSTDIR"
2784    !insertmacro ReplaceDLL "${SYSTEMDIR}\mfc71d.dll" "$INSTDIR\Common\mfc71d.dll" "$INSTDIR"
2785    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC71CHS.DLL" "$INSTDIR\Common\MFC71CHS.DLL" "$INSTDIR"
2786    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC71CHT.DLL" "$INSTDIR\Common\MFC71CHT.DLL" "$INSTDIR"
2787    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC71DEU.DLL" "$INSTDIR\Common\MFC71DEU.DLL" "$INSTDIR"
2788    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC71ENU.DLL" "$INSTDIR\Common\MFC71ENU.DLL" "$INSTDIR"
2789    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC71ESP.DLL" "$INSTDIR\Common\MFC71ESP.DLL" "$INSTDIR"
2790    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC71FRA.DLL" "$INSTDIR\Common\MFC71FRA.DLL" "$INSTDIR"
2791    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC71ITA.DLL" "$INSTDIR\Common\MFC71ITA.DLL" "$INSTDIR"
2792    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC71JPN.DLL" "$INSTDIR\Common\MFC71JPN.DLL" "$INSTDIR"
2793    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC71KOR.DLL" "$INSTDIR\Common\MFC71KOR.DLL" "$INSTDIR"
2794 !ELSE
2795 !IFDEF CL_1300
2796    !insertmacro ReplaceDLL "${SYSTEMDIR}\msvcr70d.dll" "$INSTDIR\Common\msvcr70d.dll" "$INSTDIR"
2797    !insertmacro ReplaceDLL "${SYSTEMDIR}\msvcp70d.dll" "$INSTDIR\Common\msvcp70d.dll" "$INSTDIR"
2798    !insertmacro ReplaceDLL "${SYSTEMDIR}\mfc70d.dll" "$INSTDIR\Common\mfc70d.dll" "$INSTDIR"
2799    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC70CHS.DLL" "$INSTDIR\Common\MFC70CHS.DLL" "$INSTDIR"
2800    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC70CHT.DLL" "$INSTDIR\Common\MFC70CHT.DLL" "$INSTDIR"
2801    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC70DEU.DLL" "$INSTDIR\Common\MFC70DEU.DLL" "$INSTDIR"
2802    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC70ENU.DLL" "$INSTDIR\Common\MFC70ENU.DLL" "$INSTDIR"
2803    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC70ESP.DLL" "$INSTDIR\Common\MFC70ESP.DLL" "$INSTDIR"
2804    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC70FRA.DLL" "$INSTDIR\Common\MFC70FRA.DLL" "$INSTDIR"
2805    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC70ITA.DLL" "$INSTDIR\Common\MFC70ITA.DLL" "$INSTDIR"
2806    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC70JPN.DLL" "$INSTDIR\Common\MFC70JPN.DLL" "$INSTDIR"
2807    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC70KOR.DLL" "$INSTDIR\Common\MFC70KOR.DLL" "$INSTDIR"
2808 !ELSE
2809    !insertmacro ReplaceDLL "${SYSTEMDIR}\mfc42d.dll" "$INSTDIR\Common\mfc42d.dll" "$INSTDIR"
2810    !insertmacro ReplaceDLL "${SYSTEMDIR}\msvcp60d.dll" "$INSTDIR\Common\msvcp60d.dll" "$INSTDIR"
2811    !insertmacro ReplaceDLL "${SYSTEMDIR}\msvcrtd.dll" "$INSTDIR\Common\msvcrtd.dll" "$INSTDIR"
2812 !ENDIF
2813 !ENDIF
2814 !ENDIF
2815 !ELSE
2816 !IFDEF CL_1400
2817    !insertmacro ReplaceDLL "${SYSTEMDIR}\mfc80.dll" "$INSTDIR\Common\mfc80.dll" "$INSTDIR"
2818    !insertmacro ReplaceDLL "${SYSTEMDIR}\msvcr80.dll" "$INSTDIR\Common\msvcr80.dll" "$INSTDIR"
2819    !insertmacro ReplaceDLL "${SYSTEMDIR}\msvcp80.dll" "$INSTDIR\Common\msvcp80.dll" "$INSTDIR"
2820    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC80CHS.DLL" "$INSTDIR\Common\MFC80CHS.DLL" "$INSTDIR"
2821    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC80CHT.DLL" "$INSTDIR\Common\MFC80CHT.DLL" "$INSTDIR"
2822    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC80DEU.DLL" "$INSTDIR\Common\MFC80DEU.DLL" "$INSTDIR"
2823    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC80ENU.DLL" "$INSTDIR\Common\MFC80ENU.DLL" "$INSTDIR"
2824    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC80ESP.DLL" "$INSTDIR\Common\MFC80ESP.DLL" "$INSTDIR"
2825    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC80FRA.DLL" "$INSTDIR\Common\MFC80FRA.DLL" "$INSTDIR"
2826    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC80ITA.DLL" "$INSTDIR\Common\MFC80ITA.DLL" "$INSTDIR"
2827    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC80JPN.DLL" "$INSTDIR\Common\MFC80JPN.DLL" "$INSTDIR"
2828    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC80KOR.DLL" "$INSTDIR\Common\MFC80KOR.DLL" "$INSTDIR"
2829 !ELSE
2830 !IFDEF CL_1310
2831    !insertmacro ReplaceDLL "${SYSTEMDIR}\mfc71.dll" "$INSTDIR\Common\mfc71.dll" "$INSTDIR"
2832    !insertmacro ReplaceDLL "${SYSTEMDIR}\msvcr71.dll" "$INSTDIR\Common\msvcr71.dll" "$INSTDIR"
2833    !insertmacro ReplaceDLL "${SYSTEMDIR}\msvcp71.dll" "$INSTDIR\Common\msvcp71.dll" "$INSTDIR"
2834    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC71CHS.DLL" "$INSTDIR\Common\MFC71CHS.DLL" "$INSTDIR"
2835    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC71CHT.DLL" "$INSTDIR\Common\MFC71CHT.DLL" "$INSTDIR"
2836    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC71DEU.DLL" "$INSTDIR\Common\MFC71DEU.DLL" "$INSTDIR"
2837    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC71ENU.DLL" "$INSTDIR\Common\MFC71ENU.DLL" "$INSTDIR"
2838    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC71ESP.DLL" "$INSTDIR\Common\MFC71ESP.DLL" "$INSTDIR"
2839    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC71FRA.DLL" "$INSTDIR\Common\MFC71FRA.DLL" "$INSTDIR"
2840    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC71ITA.DLL" "$INSTDIR\Common\MFC71ITA.DLL" "$INSTDIR"
2841    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC71JPN.DLL" "$INSTDIR\Common\MFC71JPN.DLL" "$INSTDIR"
2842    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC71KOR.DLL" "$INSTDIR\Common\MFC71KOR.DLL" "$INSTDIR"
2843 !ELSE
2844 !IFDEF CL_1300
2845    !insertmacro ReplaceDLL "${SYSTEMDIR}\mfc70.dll" "$INSTDIR\Common\mfc70.dll" "$INSTDIR"
2846    !insertmacro ReplaceDLL "${SYSTEMDIR}\msvcr70.dll" "$INSTDIR\Common\msvcr70.dll" "$INSTDIR"
2847    !insertmacro ReplaceDLL "${SYSTEMDIR}\msvcp70.dll" "$INSTDIR\Common\msvcp70.dll" "$INSTDIR"
2848    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC70CHS.DLL" "$INSTDIR\Common\MFC70CHS.DLL" "$INSTDIR"
2849    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC70CHT.DLL" "$INSTDIR\Common\MFC70CHT.DLL" "$INSTDIR"
2850    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC70DEU.DLL" "$INSTDIR\Common\MFC70DEU.DLL" "$INSTDIR"
2851    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC70ENU.DLL" "$INSTDIR\Common\MFC70ENU.DLL" "$INSTDIR"
2852    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC70ESP.DLL" "$INSTDIR\Common\MFC70ESP.DLL" "$INSTDIR"
2853    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC70FRA.DLL" "$INSTDIR\Common\MFC70FRA.DLL" "$INSTDIR"
2854    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC70ITA.DLL" "$INSTDIR\Common\MFC70ITA.DLL" "$INSTDIR"
2855    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC70JPN.DLL" "$INSTDIR\Common\MFC70JPN.DLL" "$INSTDIR"
2856    !insertmacro ReplaceDLL "${SYSTEMDIR}\MFC70KOR.DLL" "$INSTDIR\Common\MFC70KOR.DLL" "$INSTDIR"
2857 !ELSE
2858    !insertmacro ReplaceDLL "${SYSTEMDIR}\mfc42.dll" "$INSTDIR\Common\mfc42.dll" "$INSTDIR"
2859    !insertmacro ReplaceDLL "${SYSTEMDIR}\msvcp60.dll" "$INSTDIR\Common\msvcp60.dll" "$INSTDIR"
2860    !insertmacro ReplaceDLL "${SYSTEMDIR}\msvcrt.dll" "$INSTDIR\Common\msvcrt.dll" "$INSTDIR"
2861 !ENDIF
2862 !ENDIF
2863 !ENDIF   
2864 !ENDIF
2865
2866    StrCmp $LANGUAGE ${LANG_ENGLISH} DoEnglish
2867    StrCmp $LANGUAGE ${LANG_GERMAN} DoGerman
2868    StrCmp $LANGUAGE ${LANG_SPANISH} DoSpanish
2869    StrCmp $LANGUAGE ${LANG_JAPANESE} DoJapanese
2870    StrCmp $LANGUAGE ${LANG_KOREAN} DoKorean
2871    StrCmp $LANGUAGE ${LANG_PORTUGUESEBR} DoPortugueseBR
2872    StrCmp $LANGUAGE ${LANG_SIMPCHINESE} DoSimpChinese
2873    StrCmp $LANGUAGE ${LANG_TRADCHINESE} DoTradChinese
2874    
2875 DoEnglish:
2876
2877    SetOutPath "$INSTDIR\Documentation"
2878    File "..\..\doc\install\Documentation\en_US\README.TXT"
2879    SetOutPath "$INSTDIR\Documentation\html"
2880    File "..\..\doc\install\Documentation\en_US\html\*"
2881    SetOutPath "$INSTDIR\Documentation\html\index_files"
2882    File "..\..\doc\install\Documentation\en_US\html\index_files\*"
2883    SetOutPath "$INSTDIR\Documentation\html\InstallGd"
2884    File "..\..\doc\install\Documentation\en_US\html\InstallGd\*"
2885    SetOutPath "$INSTDIR\Documentation\html\ReleaseNotes"
2886    File "..\..\doc\install\Documentation\en_US\html\ReleaseNotes\*"
2887    SetOutPath "$INSTDIR\Documentation\html\ReleaseNotes\logo_files"
2888    File "..\..\doc\install\Documentation\en_US\html\ReleaseNotes\logo_files\*"
2889    SetOutPath "$INSTDIR\Documentation\html\ReleaseNotes\relnotes_files"
2890    File "..\..\doc\install\Documentation\en_US\html\ReleaseNotes\relnotes_files\*"
2891
2892    SetOutPath "$INSTDIR\Client\Program"
2893    !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afscreds_1033.dll"    "$INSTDIR\Client\Program\afscreds_1033.dll" "$INSTDIR"
2894    !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afs_shl_ext_1033.dll" "$INSTDIR\Client\Program\afs_shl_ext_1033.dll" "$INSTDIR"
2895 !ifdef DEBUG
2896    ;File "${AFS_CLIENT_BUILDDIR}\afs_shl_ext_1033.pdb"
2897    ;File "${AFS_CLIENT_BUILDDIR}\afscreds_1033.pdb"
2898 !endif
2899
2900    File "..\..\doc\help\en_US\afs-light.CNT"
2901    File "..\..\doc\help\en_US\afs-light.hlp"
2902    File "..\..\doc\help\en_US\afs-nt.CNT"
2903    File "..\..\doc\help\en_US\afs-nt.HLP"
2904
2905    SetOutPath "$INSTDIR\Common"
2906    !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afs_config_1033.dll"           "$INSTDIR\Common\afs_config_1033.dll" "$INSTDIR"
2907    !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afs_cpa_1033.dll"              "$INSTDIR\Common\afs_cpa_1033.dll" "$INSTDIR"
2908    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afseventmsg_1033.dll"          "$INSTDIR\Common\afseventmsg_1033.dll" "$INSTDIR"
2909   ;!insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afs_setup_utils_1033.dll"      "$INSTDIR\Common\afs_setup_utils_1033.dll" "$INSTDIR"
2910    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afsserver_1033.dll"            "$INSTDIR\Common\afsserver_1033.dll" "$INSTDIR"
2911    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afssvrcfg_1033.dll"            "$INSTDIR\Common\afssvrcfg_1033.dll" "$INSTDIR"
2912    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\TaAfsAccountManager_1033.dll"  "$INSTDIR\Common\TaAfsAccountManager_1033.dll" "$INSTDIR"
2913    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\TaAfsAppLib_1033.dll"          "$INSTDIR\Common\TaAfsAppLib_1033.dll" "$INSTDIR"
2914    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\TaAfsServerManager_1033.dll"   "$INSTDIR\Common\TaAfsServerManager_1033.dll" "$INSTDIR"
2915    File "..\..\doc\help\en_US\afs-cc.CNT"
2916    File "..\..\doc\help\en_US\afs-cc.hlp"
2917    File "..\..\doc\help\en_US\taafscfg.CNT"
2918    File "..\..\doc\help\en_US\taafscfg.hlp"
2919    File "..\..\doc\help\en_US\taafssvrmgr.CNT"
2920    File "..\..\doc\help\en_US\taafssvrmgr.hlp"
2921    File "..\..\doc\help\en_US\taafsusrmgr.CNT"
2922    File "..\..\doc\help\en_US\taafsusrmgr.hlp"
2923
2924 !ifdef DEBUG
2925    ;File "${AFS_CLIENT_BUILDDIR}\afs_config_1033.pdb"
2926    ;File "${AFS_CLIENT_BUILDDIR}\afs_cpa_1033.pdb"
2927    ;File "${AFS_SERVER_BUILDDIR}\afseventmsg_1033.pdb"
2928    ;File "${AFS_SERVER_BUILDDIR}\afsserver_1033.pdb"
2929    ;File "${AFS_SERVER_BUILDDIR}\afssvrcfg_1033.pdb"
2930    ;File "${AFS_SERVER_BUILDDIR}\TaAfsAccountManager_1033.pdb"
2931    ;File "${AFS_SERVER_BUILDDIR}\TaAfsAppLib_1033.pdb"
2932    ;File "${AFS_SERVER_BUILDDIR}\TaAfsServerManager_1033.pdb"
2933 !ENDIF
2934    goto done
2935
2936 DoGerman:
2937
2938    SetOutPath "$INSTDIR\Documentation"
2939    File "..\..\doc\install\Documentation\de_DE\README.TXT"
2940    SetOutPath "$INSTDIR\Documentation\html"
2941    File "..\..\doc\install\Documentation\de_DE\html\*"
2942    SetOutPath "$INSTDIR\Documentation\html\index_files"
2943    ;File "..\..\doc\install\Documentation\de_DE\html\index_files\*"
2944    SetOutPath "$INSTDIR\Documentation\html\InstallGd"
2945    File "..\..\doc\install\Documentation\de_DE\html\InstallGd\*"
2946    ;SetOutPath "$INSTDIR\Documentation\html\ReleaseNotes"
2947    ;File "..\..\doc\install\Documentation\de_DE\html\ReleaseNotes\*"
2948    ;SetOutPath "$INSTDIR\Documentation\html\ReleaseNotes\logo_files"
2949    ;File "..\..\doc\install\Documentation\de_DE\html\ReleaseNotes\logo_files\*"
2950    ;SetOutPath "$INSTDIR\Documentation\html\ReleaseNotes\relnotes_files"
2951    ;File "..\..\doc\install\Documentation\de_DE\html\ReleaseNotes\relnotes_files\*"
2952
2953    SetOutPath "$INSTDIR\Client\Program"
2954   !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afscreds_1032.dll"                      "$INSTDIR\Client\Program\afscreds_1032.dll" "$INSTDIR"
2955   !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afs_shl_ext_1032.dll" "$INSTDIR\Client\Program\afs_shl_ext_1032.dll" "$INSTDIR"
2956 !ifdef DEBUG
2957    ;File "${AFS_CLIENT_BUILDDIR}\afs_shl_ext_1032.pdb"
2958    ;File "${AFS_CLIENT_BUILDDIR}\afscreds_1032.pdb"
2959 !endif
2960
2961    File "..\..\doc\help\de_DE\afs-light.CNT"
2962    File "..\..\doc\help\de_DE\afs-light.hlp"
2963    File "..\..\doc\help\de_DE\afs-nt.CNT"
2964    File "..\..\doc\help\de_DE\afs-nt.HLP"
2965
2966    SetOutPath "$INSTDIR\Common"
2967    !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afs_config_1032.dll"           "$INSTDIR\Common\afs_config_1032.dll" "$INSTDIR"
2968    !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afs_cpa_1032.dll"              "$INSTDIR\Common\afs_cpa_1032.dll" "$INSTDIR" 
2969    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afseventmsg_1032.dll"          "$INSTDIR\Common\afseventmsg_1032.dll" "$INSTDIR" 
2970   ;!insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afs_setup_utils_1032.dll"      "$INSTDIR\Common\afs_setup_utils_1032.dll" "$INSTDIR" 
2971    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afsserver_1032.dll"            "$INSTDIR\Common\afsserver_1032.dll" "$INSTDIR" 
2972    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afssvrcfg_1032.dll"            "$INSTDIR\Common\afssvrcfg_1032.dll" "$INSTDIR" 
2973    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\TaAfsAccountManager_1032.dll"  "$INSTDIR\Common\TaAfsAccountManager_1032.dll" "$INSTDIR" 
2974    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\TaAfsAppLib_1032.dll"          "$INSTDIR\Common\TaAfsAppLib_1032.dll" "$INSTDIR" 
2975    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\TaAfsServerManager_1032.dll"   "$INSTDIR\Common\TaAfsServerManager_1032.dll" "$INSTDIR" 
2976    File "..\..\doc\help\de_DE\afs-cc.CNT"
2977    File "..\..\doc\help\de_DE\afs-cc.hlp"
2978    File "..\..\doc\help\de_DE\taafscfg.CNT"
2979    File "..\..\doc\help\de_DE\taafscfg.hlp"
2980    File "..\..\doc\help\de_DE\taafssvrmgr.CNT"
2981    File "..\..\doc\help\de_DE\taafssvrmgr.hlp"
2982    File "..\..\doc\help\de_DE\taafsusrmgr.CNT"
2983    File "..\..\doc\help\de_DE\taafsusrmgr.hlp"
2984
2985 !ifdef DEBUG
2986    ;File "${AFS_CLIENT_BUILDDIR}\afs_config_1032.pdb"
2987    ;File "${AFS_CLIENT_BUILDDIR}\afs_cpa_1032.pdb"
2988    ;File "${AFS_SERVER_BUILDDIR}\afseventmsg_1032.pdb"
2989    ;File "${AFS_SERVER_BUILDDIR}\afsserver_1032.pdb"
2990    ;File "${AFS_SERVER_BUILDDIR}\afssvrcfg_1032.pdb"
2991    ;File "${AFS_SERVER_BUILDDIR}\TaAfsAccountManager_1032.pdb"
2992    ;File "${AFS_SERVER_BUILDDIR}\TaAfsAppLib_1032.pdb"
2993    ;File "${AFS_SERVER_BUILDDIR}\TaAfsServerManager_1032.pdb"
2994 !ENDIF
2995    goto done   
2996
2997 DoSpanish:
2998
2999    SetOutPath "$INSTDIR\Documentation"
3000    File "..\..\doc\install\Documentation\es_ES\README.TXT"
3001    SetOutPath "$INSTDIR\Documentation\html"
3002    ;File "..\..\doc\install\Documentation\es_ES\html\*"
3003    SetOutPath "$INSTDIR\Documentation\html\index_html"
3004    ;File "..\..\doc\install\Documentation\es_ES\html\index_files\*"
3005    SetOutPath "$INSTDIR\Documentation\html\InstallGd"
3006    ;File "..\..\doc\install\Documentation\es_ES\html\InstallGd\*"
3007    SetOutPath "$INSTDIR\Documentation\html\ReleaseNotes"
3008    ;File "..\..\doc\install\Documentation\es_ES\html\ReleaseNotes\*"
3009    SetOutPath "$INSTDIR\Documentation\html\ReleaseNotes\logo_files"
3010    ;File "..\..\doc\install\Documentation\es_ES\html\ReleaseNotes\logo_files\*"
3011    SetOutPath "$INSTDIR\Documentation\html\ReleaseNotes\relnotes_files"
3012    ;File "..\..\doc\install\Documentation\es_ES\html\ReleaseNotes\relnotes_files\*"
3013
3014    SetOutPath "$INSTDIR\Client\Program"
3015    !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afscreds_1034.dll"     "$INSTDIR\Client\Program\afscreds_1034.dll" "$INSTDIR" 
3016    !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afs_shl_ext_1034.dll" "$INSTDIR\Client\Program\afs_shl_ext_1034.dll" "$INSTDIR"
3017 !ifdef DEBUG
3018    ;File "${AFS_CLIENT_BUILDDIR}\afscreds_1034.pdb"
3019    ;File "${AFS_CLIENT_BUILDDIR}\afs_shl_ext_1034.pdb"
3020 !endif
3021
3022    File "..\..\doc\help\es_ES\afs-light.CNT"
3023    File "..\..\doc\help\es_ES\afs-light.hlp"
3024    File "..\..\doc\help\es_ES\afs-nt.CNT"
3025    File "..\..\doc\help\es_ES\afs-nt.HLP"
3026
3027    SetOutPath "$INSTDIR\Common"
3028    !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afs_config_1034.dll"          "$INSTDIR\Common\afs_config_1034.dll" "$INSTDIR"  
3029    !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afs_cpa_1034.dll"             "$INSTDIR\Common\afs_cpa_1034.dll" "$INSTDIR"  
3030    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afseventmsg_1034.dll"         "$INSTDIR\Common\afseventmsg_1034.dll" "$INSTDIR"  
3031   ;!insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afs_setup_utils_1034.dll"     "$INSTDIR\Common\afs_setup_utils_1034.dll" "$INSTDIR"  
3032    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afsserver_1034.dll"           "$INSTDIR\Common\afsserver_1034.dll" "$INSTDIR"  
3033    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afssvrcfg_1034.dll"           "$INSTDIR\Common\afssvrcfg_1034.dll" "$INSTDIR"  
3034    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\TaAfsAccountManager_1034.dll" "$INSTDIR\Common\TaAfsAccountManager_1034.dll" "$INSTDIR"  
3035    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\TaAfsAppLib_1034.dll"         "$INSTDIR\Common\TaAfsAppLib_1034.dll" "$INSTDIR"  
3036    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\TaAfsServerManager_1034.dll"  "$INSTDIR\Common\TaAfsServerManager_1034.dll" "$INSTDIR"  
3037    File "..\..\doc\help\es_ES\afs-cc.CNT"
3038    File "..\..\doc\help\es_ES\afs-cc.hlp"
3039    File "..\..\doc\help\es_ES\taafscfg.CNT"
3040    File "..\..\doc\help\es_ES\taafscfg.hlp"
3041    File "..\..\doc\help\es_ES\taafssvrmgr.CNT"
3042    File "..\..\doc\help\es_ES\taafssvrmgr.hlp"
3043    File "..\..\doc\help\es_ES\taafsusrmgr.CNT"
3044    File "..\..\doc\help\es_ES\taafsusrmgr.hlp"
3045
3046 !ifdef DEBUG
3047    ;File "${AFS_CLIENT_BUILDDIR}\afs_config_1034.pdb"
3048    ;File "${AFS_CLIENT_BUILDDIR}\afs_cpa_1034.pdb"
3049    ;File "${AFS_SERVER_BUILDDIR}\afseventmsg_1034.pdb"
3050    ;File "${AFS_SERVER_BUILDDIR}\afsserver_1034.pdb"
3051    ;File "${AFS_SERVER_BUILDDIR}\afssvrcfg_1034.pdb"
3052    ;File "${AFS_SERVER_BUILDDIR}\TaAfsAccountManager_1034.pdb"
3053    ;File "${AFS_SERVER_BUILDDIR}\TaAfsAppLib_1034.pdb"
3054    ;File "${AFS_SERVER_BUILDDIR}\TaAfsServerManager_1034.pdb"
3055 !ENDIF
3056    goto done
3057
3058 DoJapanese:
3059
3060    SetOutPath "$INSTDIR\Documentation"
3061    File "..\..\doc\install\Documentation\ja_JP\README.TXT"
3062    SetOutPath "$INSTDIR\Documentation\html"
3063    File "..\..\doc\install\Documentation\ja_JP\html\*"
3064    SetOutPath "$INSTDIR\Documentation\html\index_files"
3065    ;File "..\..\doc\install\Documentation\ja_JP\html\index_files\*"
3066    SetOutPath "$INSTDIR\Documentation\html\InstallGd"
3067    File "..\..\doc\install\Documentation\ja_JP\html\InstallGd\*"
3068    SetOutPath "$INSTDIR\Documentation\html\ReleaseNotes"
3069    ;File "..\..\doc\install\Documentation\ja_JP\html\ReleaseNotes\*"
3070    SetOutPath "$INSTDIR\Documentation\html\ReleaseNotes\logo_files"
3071    ;File "..\..\doc\install\Documentation\ja_JP\html\ReleaseNotes\logo_files\*"
3072    SetOutPath "$INSTDIR\Documentation\html\ReleaseNotes\relnotes_files"
3073    ;File "..\..\doc\install\Documentation\ja_JP\html\ReleaseNotes\relnotes_files\*"
3074
3075    SetOutPath "$INSTDIR\Client\Program"
3076    !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afscreds_1041.dll"  "$INSTDIR\Client\Program\afscreds_1041.dll" "$INSTDIR"  
3077    !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afs_shl_ext_1041.dll" "$INSTDIR\Client\Program\afs_shl_ext_1041.dll" "$INSTDIR"
3078 !ifdef DEBUG
3079    ;File "${AFS_CLIENT_BUILDDIR}\afscreds_1041.pdb"
3080    ;File "${AFS_CLIENT_BUILDDIR}\afs_shl_ext_1041.pdb"
3081 !endif
3082
3083    File "..\..\doc\help\ja_JP\afs-light.CNT"
3084    File "..\..\doc\help\ja_JP\afs-light.hlp"
3085    File "..\..\doc\help\ja_JP\afs-nt.CNT"
3086    File "..\..\doc\help\ja_JP\afs-nt.HLP"
3087
3088    SetOutPath "$INSTDIR\Common"
3089    !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afs_config_1041.dll"           "$INSTDIR\Common\afs_config_1041.dll" "$INSTDIR"   
3090    !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afs_cpa_1041.dll"              "$INSTDIR\Common\afs_cpa_1041.dll" "$INSTDIR"   
3091    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afseventmsg_1041.dll"          "$INSTDIR\Common\afseventmsg_1041.dll" "$INSTDIR"   
3092   ;!insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afs_setup_utils_1041.dll"      "$INSTDIR\Common\afs_setup_utils_1041.dll" "$INSTDIR"   
3093    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afsserver_1041.dll"            "$INSTDIR\Common\afsserver_1041.dll" "$INSTDIR"   
3094    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afssvrcfg_1041.dll"            "$INSTDIR\Common\afssvrcfg_1041.dll" "$INSTDIR"   
3095    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\TaAfsAccountManager_1041.dll"  "$INSTDIR\Common\TaAfsAccountManager_1041.dll" "$INSTDIR"   
3096    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\TaAfsAppLib_1041.dll"          "$INSTDIR\Common\TaAfsAppLib_1041.dll" "$INSTDIR"   
3097    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\TaAfsServerManager_1041.dll"   "$INSTDIR\Common\TaAfsServerManager_1041.dll" "$INSTDIR"   
3098    File "..\..\doc\help\ja_JP\afs-cc.CNT"
3099    File "..\..\doc\help\ja_JP\afs-cc.hlp"
3100    File "..\..\doc\help\ja_JP\taafscfg.CNT"
3101    File "..\..\doc\help\ja_JP\taafscfg.hlp"
3102    File "..\..\doc\help\ja_JP\taafssvrmgr.CNT"
3103    File "..\..\doc\help\ja_JP\taafssvrmgr.hlp"
3104    File "..\..\doc\help\ja_JP\taafsusrmgr.CNT"
3105    File "..\..\doc\help\ja_JP\taafsusrmgr.hlp"
3106
3107 !ifdef DEBUG
3108    ;File "${AFS_CLIENT_BUILDDIR}\afs_config_1041.pdb"
3109    ;File "${AFS_CLIENT_BUILDDIR}\afs_cpa_1041.pdb"
3110    ;File "${AFS_SERVER_BUILDDIR}\afseventmsg_1041.pdb"
3111    ;File "${AFS_SERVER_BUILDDIR}\afsserver_1041.pdb"
3112    ;File "${AFS_SERVER_BUILDDIR}\afssvrcfg_1041.pdb"
3113    ;File "${AFS_SERVER_BUILDDIR}\TaAfsAccountManager_1041.pdb"
3114    ;File "${AFS_SERVER_BUILDDIR}\TaAfsAppLib_1041.pdb"
3115    ;File "${AFS_SERVER_BUILDDIR}\TaAfsServerManager_1041.pdb"
3116 !ENDIF
3117    goto done
3118    
3119 DoKorean:
3120
3121    SetOutPath "$INSTDIR\Documentation"
3122    File "..\..\doc\install\Documentation\ko_KR\README.TXT"
3123    SetOutPath "$INSTDIR\Documentation\html"
3124    File "..\..\doc\install\Documentation\ko_KR\html\*"
3125    SetOutPath "$INSTDIR\Documentation\html\index_files"
3126    ;File "..\..\doc\install\Documentation\ko_KR\html\index_files\*"
3127    SetOutPath "$INSTDIR\Documentation\html\InstallGd"
3128    File "..\..\doc\install\Documentation\ko_KR\html\InstallGd\*"
3129    SetOutPath "$INSTDIR\Documentation\html\ReleaseNotes"
3130    File "..\..\doc\install\Documentation\ko_KR\html\ReleaseNotes\*"
3131    SetOutPath "$INSTDIR\Documentation\html\ReleaseNotes\logo_files"
3132    ;File "..\..\doc\install\Documentation\ko_KR\html\ReleaseNotes\logo_files\*"
3133    SetOutPath "$INSTDIR\Documentation\html\ReleaseNotes\relnotes_files"
3134    ;File "..\..\doc\install\Documentation\ko_KR\html\ReleaseNotes\relnotes_files\*"
3135
3136    SetOutPath "$INSTDIR\Client\Program"
3137    !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afscreds_1042.dll"  "$INSTDIR\Client\Program\afscreds_1042.dll" "$INSTDIR"   
3138    !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afs_shl_ext_1042.dll" "$INSTDIR\Client\Program\afs_shl_ext_1042.dll" "$INSTDIR"
3139 !ifdef DEBUG
3140    ;File "${AFS_CLIENT_BUILDDIR}\afscreds_1042.pdb"
3141    ;File "${AFS_CLIENT_BUILDDIR}\afs_shl_ext_1042.pdb"
3142 !endif
3143
3144    File "..\..\doc\help\ko_KR\afs-light.CNT"
3145    File "..\..\doc\help\ko_KR\afs-light.hlp"
3146    File "..\..\doc\help\ko_KR\afs-nt.CNT"
3147    File "..\..\doc\help\ko_KR\afs-nt.HLP"
3148
3149    SetOutPath "$INSTDIR\Common"
3150    !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afs_config_1042.dll"           "$INSTDIR\Common\afs_config_1042.dll" "$INSTDIR"    
3151    !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afs_cpa_1042.dll"              "$INSTDIR\Common\afs_cpa_1042.dll" "$INSTDIR"    
3152    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afseventmsg_1042.dll"          "$INSTDIR\Common\afseventmsg_1042.dll" "$INSTDIR"    
3153   ;!insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afs_setup_utils_1042.dll"      "$INSTDIR\Common\afs_setup_utils_1042.dll" "$INSTDIR"    
3154    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afsserver_1042.dll"            "$INSTDIR\Common\afsserver_1042.dll" "$INSTDIR"    
3155    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afssvrcfg_1042.dll"            "$INSTDIR\Common\afssvrcfg_1042.dll" "$INSTDIR"    
3156    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\TaAfsAccountManager_1042.dll"  "$INSTDIR\Common\TaAfsAccountManager_1042.dll" "$INSTDIR"    
3157    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\TaAfsAppLib_1042.dll"          "$INSTDIR\Common\TaAfsAppLib_1042.dll" "$INSTDIR"    
3158    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\TaAfsServerManager_1042.dll"   "$INSTDIR\Common\TaAfsServerManager_1042.dll" "$INSTDIR"    
3159    File "..\..\doc\help\ko_KR\afs-cc.CNT"
3160    File "..\..\doc\help\ko_KR\afs-cc.hlp"
3161    File "..\..\doc\help\ko_KR\taafscfg.CNT"
3162    File "..\..\doc\help\ko_KR\taafscfg.hlp"
3163    File "..\..\doc\help\ko_KR\taafssvrmgr.CNT"
3164    File "..\..\doc\help\ko_KR\taafssvrmgr.hlp"
3165    File "..\..\doc\help\ko_KR\taafsusrmgr.CNT"
3166    File "..\..\doc\help\ko_KR\taafsusrmgr.hlp"
3167
3168 !ifdef DEBUG
3169    ;File "${AFS_CLIENT_BUILDDIR}\afs_config_1042.pdb"
3170    ;File "${AFS_CLIENT_BUILDDIR}\afs_cpa_1042.pdb"
3171    ;File "${AFS_SERVER_BUILDDIR}\afseventmsg_1042.pdb"
3172    ;File "${AFS_SERVER_BUILDDIR}\afsserver_1042.pdb"
3173    ;File "${AFS_SERVER_BUILDDIR}\afssvrcfg_1042.pdb"
3174    ;File "${AFS_SERVER_BUILDDIR}\TaAfsAccountManager_1042.pdb"
3175    ;File "${AFS_SERVER_BUILDDIR}\TaAfsAppLib_1042.pdb"
3176    ;File "${AFS_SERVER_BUILDDIR}\TaAfsServerManager_1042.pdb"
3177 !ENDIF
3178    goto done
3179
3180
3181 DoPortugueseBR:
3182
3183    SetOutPath "$INSTDIR\Documentation"
3184    File "..\..\doc\install\Documentation\pt_BR\README.TXT"
3185    SetOutPath "$INSTDIR\Documentation\html"
3186    File "..\..\doc\install\Documentation\pt_BR\html\*"
3187    SetOutPath "$INSTDIR\Documentation\html\index_files"
3188    ;File "..\..\doc\install\Documentation\pt_BR\html\index_files\*"
3189    SetOutPath "$INSTDIR\Documentation\html\InstallGd"
3190    File "..\..\doc\install\Documentation\pt_BR\html\InstallGd\*"
3191    SetOutPath "$INSTDIR\Documentation\html\ReleaseNotes"
3192    File "..\..\doc\install\Documentation\pt_BR\html\ReleaseNotes\*"
3193    SetOutPath "$INSTDIR\Documentation\html\ReleaseNotes\logo_files"
3194    ;File "..\..\doc\install\Documentation\pt_BR\html\ReleaseNotes\logo_files\*"
3195    SetOutPath "$INSTDIR\Documentation\html\ReleaseNotes\relnotes_files"
3196    ;File "..\..\doc\install\Documentation\pt_BR\html\ReleaseNotes\relnotes_files\*"
3197
3198    SetOutPath "$INSTDIR\Client\Program"
3199    !insertmacro ReplaceDLL  "${AFS_CLIENT_BUILDDIR}\afscreds_1046.dll"  "$INSTDIR\Client\Program\afscreds_1046.dll" "$INSTDIR"    
3200    !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afs_shl_ext_1046.dll" "$INSTDIR\Client\Program\afs_shl_ext_1046.dll" "$INSTDIR"
3201 !ifdef DEBUG
3202    ;File "${AFS_CLIENT_BUILDDIR}\afscreds_1046.pdb"
3203    ;File "${AFS_CLIENT_BUILDDIR}\afs_shl_ext_1046.pdb"
3204 !endif
3205
3206    File "..\..\doc\help\pt_BR\afs-light.CNT"
3207    File "..\..\doc\help\pt_BR\afs-light.hlp"
3208    File "..\..\doc\help\pt_BR\afs-nt.CNT"
3209    File "..\..\doc\help\pt_BR\afs-nt.HLP"
3210
3211    SetOutPath "$INSTDIR\Common"
3212    !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afs_config_1046.dll"           "$INSTDIR\Common\afs_config_1046.dll" "$INSTDIR"     
3213    !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afs_cpa_1046.dll"              "$INSTDIR\Common\afs_cpa_1046.dll" "$INSTDIR"     
3214    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afseventmsg_1046.dll"          "$INSTDIR\Common\afseventmsg_1046.dll" "$INSTDIR"     
3215   ;!insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afs_setup_utils_1046.dll"      "$INSTDIR\Common\afs_setup_utils_1046.dll" "$INSTDIR"     
3216    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afsserver_1046.dll"            "$INSTDIR\Common\afsserver_1046.dll" "$INSTDIR"     
3217    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afssvrcfg_1046.dll"            "$INSTDIR\Common\afssvrcfg_1046.dll" "$INSTDIR"     
3218    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\TaAfsAccountManager_1046.dll"  "$INSTDIR\Common\TaAfsAccountManager_1046.dll" "$INSTDIR"     
3219    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\TaAfsAppLib_1046.dll"          "$INSTDIR\Common\TaAfsAppLib_1046.dll" "$INSTDIR"     
3220    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\TaAfsServerManager_1046.dll"   "$INSTDIR\Common\TaAfsServerManager_1046.dll" "$INSTDIR"     
3221    File "..\..\doc\help\pt_BR\afs-cc.CNT"
3222    File "..\..\doc\help\pt_BR\afs-cc.hlp"
3223    File "..\..\doc\help\pt_BR\taafscfg.CNT"
3224    File "..\..\doc\help\pt_BR\taafscfg.hlp"
3225    File "..\..\doc\help\pt_BR\taafssvrmgr.CNT"
3226    File "..\..\doc\help\pt_BR\taafssvrmgr.hlp"
3227    File "..\..\doc\help\pt_BR\taafsusrmgr.CNT"
3228    File "..\..\doc\help\pt_BR\taafsusrmgr.hlp"
3229
3230 !ifdef DEBUG
3231    ;File "${AFS_CLIENT_BUILDDIR}\afs_config_1046.pdb"
3232    ;File "${AFS_CLIENT_BUILDDIR}\afs_cpa_1046.pdb"
3233    ;File "${AFS_SERVER_BUILDDIR}\afseventmsg_1046.pdb"
3234    ;File "${AFS_SERVER_BUILDDIR}\afsserver_1046.pdb"
3235    ;File "${AFS_SERVER_BUILDDIR}\afssvrcfg_1046.pdb"
3236    ;File "${AFS_SERVER_BUILDDIR}\TaAfsAccountManager_1046.pdb"
3237    ;File "${AFS_SERVER_BUILDDIR}\TaAfsAppLib_1046.pdb"
3238    ;File "${AFS_SERVER_BUILDDIR}\TaAfsServerManager_1046.pdb"
3239 !ENDIF
3240    goto done
3241    
3242 DoSimpChinese:
3243
3244    SetOutPath "$INSTDIR\Documentation"
3245    File "..\..\doc\install\Documentation\zh_CN\README.TXT"
3246    SetOutPath "$INSTDIR\Documentation\html"
3247    File "..\..\doc\install\Documentation\zh_CN\html\*"
3248    SetOutPath "$INSTDIR\Documentation\html\index_files"
3249    ;File "..\..\doc\install\Documentation\zh_CN\html\index_files\*"
3250    SetOutPath "$INSTDIR\Documentation\html\InstallGd"
3251    File "..\..\doc\install\Documentation\zh_CN\html\InstallGd\*"
3252    SetOutPath "$INSTDIR\Documentation\html\ReleaseNotes"
3253    File "..\..\doc\install\Documentation\zh_CN\html\ReleaseNotes\*"
3254    SetOutPath "$INSTDIR\Documentation\html\ReleaseNotes\logo_files"
3255    ;File "..\..\doc\install\Documentation\zh_CN\html\ReleaseNotes\logo_files\*"
3256    SetOutPath "$INSTDIR\Documentation\html\ReleaseNotes\relnotes_files"
3257    ;File "..\..\doc\install\Documentation\zh_CN\html\ReleaseNotes\relnotes_files\*"
3258
3259    SetOutPath "$INSTDIR\Client\Program"
3260    !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afscreds_2052.dll"   "$INSTDIR\Client\Program\afscreds_2052.dll" "$INSTDIR"     
3261    !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afs_shl_ext_2052.dll" "$INSTDIR\Client\Program\afs_shl_ext_2052.dll" "$INSTDIR"
3262 !ifdef DEBUG
3263    ;File "${AFS_CLIENT_BUILDDIR}\afscreds_2052.pdb"
3264    ;File "${AFS_CLIENT_BUILDDIR}\afs_shl_ext_2052.pdb"
3265 !endif
3266
3267    File "..\..\doc\help\zh_CN\afs-light.CNT"
3268    File "..\..\doc\help\zh_CN\afs-light.hlp"
3269    File "..\..\doc\help\zh_CN\afs-nt.CNT"
3270    File "..\..\doc\help\zh_CN\afs-nt.HLP"
3271
3272    SetOutPath "$INSTDIR\Common"
3273    !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afs_config_2052.dll"           "$INSTDIR\Common\afs_config_2052.dll" "$INSTDIR"      
3274    !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afs_cpa_2052.dll"              "$INSTDIR\Common\afs_cpa_2052.dll" "$INSTDIR"      
3275    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afseventmsg_2052.dll"          "$INSTDIR\Common\afseventmsg_2052.dll" "$INSTDIR"      
3276   ;!insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afs_setup_utils_2052.dll"      "$INSTDIR\Common\afs_setup_utils_2052.dll" "$INSTDIR"      
3277    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afsserver_2052.dll"            "$INSTDIR\Common\afsserver_2052.dll" "$INSTDIR"      
3278    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afssvrcfg_2052.dll"            "$INSTDIR\Common\afssvrcfg_2052.dll" "$INSTDIR"      
3279    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\TaAfsAccountManager_2052.dll"  "$INSTDIR\Common\TaAfsAccountManager_2052.dll" "$INSTDIR"      
3280    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\TaAfsAppLib_2052.dll"          "$INSTDIR\Common\TaAfsAppLib_2052.dll" "$INSTDIR"      
3281    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\TaAfsServerManager_2052.dll"   "$INSTDIR\Common\TaAfsServerManager_2052.dll" "$INSTDIR"      
3282    File "..\..\doc\help\zh_CN\afs-cc.CNT"
3283    File "..\..\doc\help\zh_CN\afs-cc.hlp"
3284    File "..\..\doc\help\zh_CN\taafscfg.CNT"
3285    File "..\..\doc\help\zh_CN\taafscfg.hlp"
3286    File "..\..\doc\help\zh_CN\taafssvrmgr.CNT"
3287    File "..\..\doc\help\zh_CN\taafssvrmgr.hlp"
3288    File "..\..\doc\help\zh_CN\taafsusrmgr.CNT"
3289    File "..\..\doc\help\zh_CN\taafsusrmgr.hlp"
3290
3291 !ifdef DEBUG
3292    ;File "${AFS_CLIENT_BUILDDIR}\afs_config_2052.pdb"
3293    ;File "${AFS_CLIENT_BUILDDIR}\afs_cpa_2052.pdb"
3294    ;File "${AFS_SERVER_BUILDDIR}\afseventmsg_2052.pdb"
3295    ;File "${AFS_SERVER_BUILDDIR}\afsserver_2052.pdb"
3296    ;File "${AFS_SERVER_BUILDDIR}\afssvrcfg_2052.pdb"
3297    ;File "${AFS_SERVER_BUILDDIR}\TaAfsAccountManager_2052.pdb"
3298    ;File "${AFS_SERVER_BUILDDIR}\TaAfsAppLib_2052.pdb"
3299    ;File "${AFS_SERVER_BUILDDIR}\TaAfsServerManager_2052.pdb"
3300 !ENDIF
3301    goto done
3302    
3303 DoTradChinese:
3304
3305    SetOutPath "$INSTDIR\Documentation"
3306    File "..\..\doc\install\Documentation\zh_TW\README.TXT"
3307    SetOutPath "$INSTDIR\Documentation\html"
3308    File "..\..\doc\install\Documentation\zh_TW\html\*"
3309    SetOutPath "$INSTDIR\Documentation\html\index_files"
3310    ;File "..\..\doc\install\Documentation\zh_TW\html\index_files\*"
3311    SetOutPath "$INSTDIR\Documentation\html\InstallGd"
3312    File "..\..\doc\install\Documentation\zh_TW\html\InstallGd\*"
3313    SetOutPath "$INSTDIR\Documentation\html\ReleaseNotes"
3314    File "..\..\doc\install\Documentation\zh_TW\html\ReleaseNotes\*"
3315    SetOutPath "$INSTDIR\Documentation\html\ReleaseNotes\logo_files"
3316    ;File "..\..\doc\install\Documentation\zh_TW\html\ReleaseNotes\logo_files\*"
3317    SetOutPath "$INSTDIR\Documentation\html\ReleaseNotes\relnotes_files"
3318    ;File "..\..\doc\install\Documentation\zh_TW\html\ReleaseNotes\relnotes_files\*"
3319
3320    SetOutPath "$INSTDIR\Client\Program"
3321    !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afscreds_1028.dll"  "$INSTDIR\Client\Program\_1028.dll" "$INSTDIR"      
3322    !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afs_shl_ext_1028.dll" "$INSTDIR\Client\Program\afs_shl_ext_1028.dll" "$INSTDIR"
3323 !ifdef DEBUG
3324    ;File "${AFS_CLIENT_BUILDDIR}\afscreds_1028.pdb"
3325    ;File "${AFS_CLIENT_BUILDDIR}\afs_shl_ext_1028.pdb"
3326 !endif
3327
3328    File "..\..\doc\help\zh_TW\afs-light.CNT"
3329    File "..\..\doc\help\zh_TW\afs-light.hlp"
3330    File "..\..\doc\help\zh_TW\afs-nt.CNT"
3331    File "..\..\doc\help\zh_TW\afs-nt.HLP"
3332
3333    SetOutPath "$INSTDIR\Common"
3334    !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afs_config_1028.dll"           "$INSTDIR\Common\afs_config_1028.dll" "$INSTDIR"       
3335    !insertmacro ReplaceDLL "${AFS_CLIENT_BUILDDIR}\afs_cpa_1028.dll"              "$INSTDIR\Common\afs_cpa_1028.dll" "$INSTDIR"       
3336    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afseventmsg_1028.dll"          "$INSTDIR\Common\afseventmsg_1028.dll" "$INSTDIR"       
3337   ;!insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afs_setup_utils_1028.dll"      "$INSTDIR\Common\afs_setup_utils_1028.dll" "$INSTDIR"       
3338    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afsserver_1028.dll"            "$INSTDIR\Common\afsserver_1028.dll" "$INSTDIR"       
3339    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\afssvrcfg_1028.dll"            "$INSTDIR\Common\afssvrcfg_1028.dll" "$INSTDIR"       
3340    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\TaAfsAccountManager_1028.dll"  "$INSTDIR\Common\TaAfsAccountManager_1028.dll" "$INSTDIR"       
3341    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\TaAfsAppLib_1028.dll"          "$INSTDIR\Common\TaAfsAppLib_1028.dll" "$INSTDIR"       
3342    !insertmacro ReplaceDLL "${AFS_SERVER_BUILDDIR}\TaAfsServerManager_1028.dll"   "$INSTDIR\Common\TaAfsServerManager_1028.dll" "$INSTDIR"       
3343    File "..\..\doc\help\zh_TW\afs-cc.CNT"
3344    File "..\..\doc\help\zh_TW\afs-cc.hlp"
3345    File "..\..\doc\help\zh_TW\taafscfg.CNT"
3346    File "..\..\doc\help\zh_TW\taafscfg.hlp"
3347    File "..\..\doc\help\zh_TW\taafssvrmgr.CNT"
3348    File "..\..\doc\help\zh_TW\taafssvrmgr.hlp"
3349    File "..\..\doc\help\zh_TW\taafsusrmgr.CNT"
3350    File "..\..\doc\help\zh_TW\taafsusrmgr.hlp"
3351
3352 !ifdef DEBUG
3353    ;File "${AFS_CLIENT_BUILDDIR}\afs_config_1028.pdb"
3354    ;File "${AFS_CLIENT_BUILDDIR}\afs_cpa_1028.pdb"
3355    ;File "${AFS_SERVER_BUILDDIR}\afseventmsg_1028.pdb"
3356    ;File "${AFS_SERVER_BUILDDIR}\afsserver_1028.pdb"
3357    ;File "${AFS_SERVER_BUILDDIR}\afssvrcfg_1028.pdb"
3358    ;File "${AFS_SERVER_BUILDDIR}\TaAfsAccountManager_1028.pdb"
3359    ;File "${AFS_SERVER_BUILDDIR}\TaAfsAppLib_1028.pdb"
3360    ;File "${AFS_SERVER_BUILDDIR}\TaAfsServerManager_1028.pdb"
3361 !ENDIF
3362    goto done
3363    
3364 done:
3365
3366   ; Write start menu shortcut
3367   SetOutPath "$SMPROGRAMS\OpenAFS"
3368   CreateShortCut "$SMPROGRAMS\OpenAFS\Documentation.lnk" "$INSTDIR\Documentation\html\index.htm"
3369   
3370
3371 FunctionEnd
3372
3373
3374
3375 ;====================================================
3376 ; AddToPath - Adds the given dir to the search path.
3377 ;        Input - head of the stack
3378 ;        Note - Win9x systems requires reboot
3379 ;====================================================
3380 Function AddToPath
3381   Exch $0
3382   Push $1
3383   Push $2
3384   Push $3
3385
3386   # don't add if the path doesn't exist
3387   IfFileExists $0 "" AddToPath_done
3388
3389   ReadEnvStr $1 PATH
3390   Push "$1;"
3391   Push "$0;"
3392   Call StrStr
3393   Pop $2
3394   StrCmp $2 "" "" AddToPath_done
3395   Push "$1;"
3396   Push "$0\;"
3397   Call StrStr
3398   Pop $2
3399   StrCmp $2 "" "" AddToPath_done
3400   GetFullPathName /SHORT $3 $0
3401   Push "$1;"
3402   Push "$3;"
3403   Call StrStr
3404   Pop $2
3405   StrCmp $2 "" "" AddToPath_done
3406   Push "$1;"
3407   Push "$3\;"
3408   Call StrStr
3409   Pop $2
3410   StrCmp $2 "" "" AddToPath_done
3411
3412   Call IsNT
3413   Pop $1
3414   StrCmp $1 1 AddToPath_NT
3415     ; Not on NT
3416     StrCpy $1 $WINDIR 2
3417     FileOpen $1 "$1\autoexec.bat" a
3418     FileSeek $1 -1 END
3419     FileReadByte $1 $2
3420     IntCmp $2 26 0 +2 +2 # DOS EOF
3421       FileSeek $1 -1 END # write over EOF
3422     FileWrite $1 "$\r$\nSET PATH=%PATH%;$3$\r$\n"
3423     FileClose $1
3424     SetRebootFlag true
3425     Goto AddToPath_done
3426
3427   AddToPath_NT:
3428     ReadRegStr $1 HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment" "PATH"
3429     StrCpy $2 $1 1 -1 # copy last char
3430     StrCmp $2 ";" 0 +2 # if last char == ;
3431       StrCpy $1 $1 -1 # remove last char
3432     StrCmp $1 "" AddToPath_NTdoIt
3433       StrCpy $0 "$1;$0"
3434     AddToPath_NTdoIt:
3435       WriteRegExpandStr HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment" "PATH" $0
3436       SendMessage ${HWND_BROADCAST} ${WM_WININICHANGE} 0 "STR:Environment" /TIMEOUT=5000
3437
3438   AddToPath_done:
3439     Pop $3
3440     Pop $2
3441     Pop $1
3442     Pop $0
3443 FunctionEnd
3444
3445 ;====================================================
3446 ; RemoveFromPath - Remove a given dir from the path
3447 ;     Input: head of the stack
3448 ;====================================================
3449 Function un.RemoveFromPath
3450   Exch $0
3451   Push $1
3452   Push $2
3453   Push $3
3454   Push $4
3455   Push $5
3456   Push $6
3457
3458   IntFmt $6 "%c" 26 # DOS EOF
3459
3460   Call un.IsNT
3461   Pop $1
3462   StrCmp $1 1 unRemoveFromPath_NT
3463     ; Not on NT
3464     StrCpy $1 $WINDIR 2
3465     FileOpen $1 "$1\autoexec.bat" r
3466     GetTempFileName $4
3467     FileOpen $2 $4 w
3468     GetFullPathName /SHORT $0 $0
3469     StrCpy $0 "SET PATH=%PATH%;$0"
3470     Goto unRemoveFromPath_dosLoop
3471
3472     unRemoveFromPath_dosLoop:
3473       FileRead $1 $3
3474       StrCpy $5 $3 1 -1 # read last char
3475       StrCmp $5 $6 0 +2 # if DOS EOF
3476         StrCpy $3 $3 -1 # remove DOS EOF so we can compare
3477       StrCmp $3 "$0$\r$\n" unRemoveFromPath_dosLoopRemoveLine
3478       StrCmp $3 "$0$\n" unRemoveFromPath_dosLoopRemoveLine
3479       StrCmp $3 "$0" unRemoveFromPath_dosLoopRemoveLine
3480       StrCmp $3 "" unRemoveFromPath_dosLoopEnd
3481       FileWrite $2 $3
3482       Goto unRemoveFromPath_dosLoop
3483       unRemoveFromPath_dosLoopRemoveLine:
3484         SetRebootFlag true
3485         Goto unRemoveFromPath_dosLoop
3486
3487     unRemoveFromPath_dosLoopEnd:
3488       FileClose $2
3489       FileClose $1
3490       StrCpy $1 $WINDIR 2
3491       Delete "$1\autoexec.bat"
3492       CopyFiles /SILENT $4 "$1\autoexec.bat"
3493       Delete $4
3494       Goto unRemoveFromPath_done
3495
3496   unRemoveFromPath_NT:
3497     ReadRegStr $1 HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment" "PATH"
3498     StrCpy $5 $1 1 -1 # copy last char
3499     StrCmp $5 ";" +2 # if last char != ;
3500       StrCpy $1 "$1;" # append ;
3501     Push $1
3502     Push "$0;"
3503     Call un.StrStr ; Find `$0;` in $1
3504     Pop $2 ; pos of our dir
3505     StrCmp $2 "" unRemoveFromPath_done
3506       ; else, it is in path
3507       # $0 - path to add
3508       # $1 - path var
3509       StrLen $3 "$0;"
3510       StrLen $4 $2
3511       StrCpy $5 $1 -$4 # $5 is now the part before the path to remove
3512       StrCpy $6 $2 "" $3 # $6 is now the part after the path to remove
3513       StrCpy $3 $5$6
3514
3515       StrCpy $5 $3 1 -1 # copy last char
3516       StrCmp $5 ";" 0 +2 # if last char == ;
3517         StrCpy $3 $3 -1 # remove last char
3518
3519       WriteRegExpandStr HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment" "PATH" $3
3520       SendMessage ${HWND_BROADCAST} ${WM_WININICHANGE} 0 "STR:Environment" /TIMEOUT=5000
3521
3522   unRemoveFromPath_done:
3523     Pop $6
3524     Pop $5
3525     Pop $4
3526     Pop $3
3527     Pop $2
3528     Pop $1
3529     Pop $0
3530 FunctionEnd
3531
3532 ;====================================================
3533 ; IsNT - Returns 1 if the current system is NT, 0
3534 ;        otherwise.
3535 ;     Output: head of the stack
3536 ;====================================================
3537 !macro IsNT un
3538 Function ${un}IsNT
3539   Push $0
3540   ReadRegStr $0 HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion" CurrentVersion
3541   StrCmp $0 "" 0 IsNT_yes
3542   ; we are not NT.
3543   Pop $0
3544   Push 0
3545   Return
3546
3547   IsNT_yes:
3548     ; NT!!!
3549     Pop $0
3550     Push 1
3551 FunctionEnd
3552 !macroend
3553 !insertmacro IsNT ""
3554 !insertmacro IsNT "un."
3555
3556 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3557 ; Uninstall stuff
3558 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3559 ;====================================================
3560 ; StrStr - Finds a given string in another given string.
3561 ;               Returns -1 if not found and the pos if found.
3562 ;          Input: head of the stack - string to find
3563 ;                      second in the stack - string to find in
3564 ;          Output: head of the stack
3565 ;====================================================
3566 !macro StrStr un
3567 Function ${un}StrStr
3568 Exch $R1 ; st=haystack,old$R1, $R1=needle
3569   Exch    ; st=old$R1,haystack
3570   Exch $R2 ; st=old$R1,old$R2, $R2=haystack
3571   Push $R3
3572   Push $R4
3573   Push $R5
3574   StrLen $R3 $R1
3575   StrCpy $R4 0
3576   ; $R1=needle
3577   ; $R2=haystack
3578   ; $R3=len(needle)
3579   ; $R4=cnt
3580   ; $R5=tmp
3581   loop:
3582     StrCpy $R5 $R2 $R3 $R4
3583     StrCmp $R5 $R1 done
3584     StrCmp $R5 "" done
3585     IntOp $R4 $R4 + 1
3586     Goto loop
3587 done:
3588   StrCpy $R1 $R2 "" $R4
3589   Pop $R5
3590   Pop $R4
3591   Pop $R3
3592   Pop $R2
3593   Exch $R1
3594 FunctionEnd
3595 !macroend
3596 !insertmacro StrStr ""
3597 !insertmacro StrStr "un."
3598
3599
3600 !ifdef ADDSHAREDDLLUSED
3601 ; AddSharedDLL
3602  ;
3603  ; Increments a shared DLLs reference count.
3604  ; Use by passing one item on the stack (the full path of the DLL).
3605  ;
3606  ; Usage:
3607  ;   Push $SYSDIR\myDll.dll
3608  ;   Call AddSharedDLL
3609  ;
3610
3611  Function AddSharedDLL
3612    Exch $R1
3613    Push $R0
3614    ReadRegDword $R0 HKLM Software\Microsoft\Windows\CurrentVersion\SharedDLLs $R1
3615    IntOp $R0 $R0 + 1
3616    WriteRegDWORD HKLM Software\Microsoft\Windows\CurrentVersion\SharedDLLs $R1 $R0
3617    Pop $R0
3618    Pop $R1
3619  FunctionEnd
3620
3621  
3622 ; un.RemoveSharedDLL
3623  ;
3624  ; Decrements a shared DLLs reference count, and removes if necessary.
3625  ; Use by passing one item on the stack (the full path of the DLL).
3626  ; Note: for use in the main installer (not the uninstaller), rename the
3627  ; function to RemoveSharedDLL.
3628  ;
3629  ; Usage:
3630  ;   Push $SYSDIR\myDll.dll
3631  ;   Call un.RemoveSharedDLL
3632  ;
3633
3634  Function un.RemoveSharedDLL
3635    Exch $R1
3636    Push $R0
3637    ReadRegDword $R0 HKLM Software\Microsoft\Windows\CurrentVersion\SharedDLLs $R1
3638    StrCmp $R0 "" remove
3639      IntOp $R0 $R0 - 1
3640      IntCmp $R0 0 rk rk uk
3641      rk:
3642        DeleteRegValue HKLM Software\Microsoft\Windows\CurrentVersion\SharedDLLs $R1
3643      goto Remove
3644      uk:
3645        WriteRegDWORD HKLM Software\Microsoft\Windows\CurrentVersion\SharedDLLs $R1 $R0
3646      Goto noremove
3647    remove:
3648      Delete /REBOOTOK $R1
3649    noremove:
3650    Pop $R0
3651    Pop $R1
3652  FunctionEnd
3653 !endif
3654
3655
3656 ; Installs the loopback adpater and disables it on Windows 2000
3657 Function afs.InstallMSLoopback
3658    GetTempFileName $R0
3659    File /oname=$R0 "${AFS_WININSTALL_DIR}\afsloopback.dll"
3660    nsExec::Exec "rundll32.exe $R0 doLoopBackEntry AFS 10.254.254.253 255.255.255.252"
3661    Delete $R0
3662 FunctionEnd
3663
3664 Function afs.isLoopbackInstalled
3665    SetOutPath $TEMP
3666    File "${AFS_WININSTALL_DIR}\afsloopback.dll"
3667    System::Call "$TEMP\afsloopback.dll::IsLoopbackInstalled() i().r11"
3668    Delete "$TEMP\afsloopback.dll"
3669 FunctionEnd
3670
3671
3672 ; GetWindowsVersion
3673 ;
3674 ; Based on Yazno's function, http://yazno.tripod.com/powerpimpit/
3675 ; Updated by Joost Verburg
3676 ;
3677 ; Returns on top of stack
3678 ;
3679 ; Windows Version (95, 98, ME, NT x.x, 2000, XP, 2003, Vista)
3680 ; or
3681 ; '' (Unknown Windows Version)
3682 ;
3683 ; Usage:
3684 ;   Call GetWindowsVersion
3685 ;   Pop $R0
3686 ;   ; at this point $R0 is "NT 4.0" or whatnot
3687
3688 Function GetWindowsVersion
3689
3690   Push $R0
3691   Push $R1
3692
3693   ClearErrors
3694
3695   ReadRegStr $R0 HKLM \
3696   "SOFTWARE\Microsoft\Windows NT\CurrentVersion" CurrentVersion
3697
3698   IfErrors 0 lbl_winnt
3699   
3700   ; we are not NT
3701   ReadRegStr $R0 HKLM \
3702   "SOFTWARE\Microsoft\Windows\CurrentVersion" VersionNumber
3703
3704   StrCpy $R1 $R0 1
3705   StrCmp $R1 '4' 0 lbl_error
3706
3707   StrCpy $R1 $R0 3
3708
3709   StrCmp $R1 '4.0' lbl_win32_95
3710   StrCmp $R1 '4.9' lbl_win32_ME lbl_win32_98
3711
3712   lbl_win32_95:
3713     StrCpy $R0 '95'
3714   Goto lbl_done
3715
3716   lbl_win32_98:
3717     StrCpy $R0 '98'
3718   Goto lbl_done
3719
3720   lbl_win32_ME:
3721     StrCpy $R0 'ME'
3722   Goto lbl_done
3723
3724   lbl_winnt:
3725
3726   StrCpy $R1 $R0 1
3727
3728   StrCmp $R1 '3' lbl_winnt_x
3729   StrCmp $R1 '4' lbl_winnt_x
3730
3731   StrCpy $R1 $R0 3
3732
3733   StrCmp $R1 '5.0' lbl_winnt_2000
3734   StrCmp $R1 '5.1' lbl_winnt_XP
3735   StrCmp $R1 '5.2' lbl_winnt_2003
3736   StrCmp $R1 '6.0' lbl_winnt_vista lbl_error
3737
3738   lbl_winnt_x:
3739     StrCpy $R0 "NT $R0" 6
3740   Goto lbl_done
3741
3742   lbl_winnt_2000:
3743     Strcpy $R0 '2000'
3744   Goto lbl_done
3745
3746   lbl_winnt_XP:
3747     Strcpy $R0 'XP'
3748   Goto lbl_done
3749
3750   lbl_winnt_2003:
3751     Strcpy $R0 '2003'
3752   Goto lbl_done
3753
3754   lbl_winnt_vista:
3755     Strcpy $R0 'Vista'
3756   Goto lbl_done
3757
3758   lbl_error:
3759     Strcpy $R0 ''
3760   lbl_done:
3761
3762   Pop $R1
3763   Exch $R0
3764
3765 FunctionEnd
3766
3767
3768 ; Author: Lilla (lilla@earthlink.net) 2003-06-13
3769 ; function IsUserAdmin uses plugin \NSIS\PlusgIns\UserInfo.dll
3770 ; This function is based upon code in \NSIS\Contrib\UserInfo\UserInfo.nsi
3771 ; This function was tested under NSIS 2 beta 4 (latest CVS as of this writing).
3772 ;
3773 ; Usage:
3774 ;   Call IsUserAdmin
3775 ;   Pop $R0   ; at this point $R0 is "true" or "false"
3776 ;
3777 Function IsUserAdmin
3778 Push $R0
3779 Push $R1
3780 Push $R2
3781
3782 ClearErrors
3783 UserInfo::GetName
3784 IfErrors Win9x
3785 Pop $R1
3786 UserInfo::GetAccountType
3787 Pop $R2
3788
3789 StrCmp $R2 "Admin" 0 Continue
3790 ; Observation: I get here when running Win98SE. (Lilla)
3791 ; The functions UserInfo.dll looks for are there on Win98 too, 
3792 ; but just don't work. So UserInfo.dll, knowing that admin isn't required
3793 ; on Win98, returns admin anyway. (per kichik)
3794 ; MessageBox MB_OK 'User "$R1" is in the Administrators group'
3795 StrCpy $R0 "true"
3796 Goto Done
3797
3798 Continue:
3799 ; You should still check for an empty string because the functions
3800 ; UserInfo.dll looks for may not be present on Windows 95. (per kichik)
3801 StrCmp $R2 "" Win9x
3802 StrCpy $R0 "false"
3803 ;MessageBox MB_OK 'User "$R1" is in the "$R2" group'
3804 Goto Done
3805
3806 Win9x:
3807 ; comment/message below is by UserInfo.nsi author:
3808 ; This one means you don't need to care about admin or
3809 ; not admin because Windows 9x doesn't either
3810 ;MessageBox MB_OK "Error! This DLL can't run under Windows 9x!"
3811 StrCpy $R0 "false"
3812
3813 Done:
3814 ;MessageBox MB_OK 'User= "$R1"  AccountType= "$R2"  IsUserAdmin= "$R0"'
3815
3816 Pop $R2
3817 Pop $R1
3818 Exch $R0
3819 FunctionEnd
3820
3821 ; GetParent
3822  ; input, top of stack  (e.g. C:\Program Files\Poop)
3823  ; output, top of stack (replaces, with e.g. C:\Program Files)
3824  ; modifies no other variables.
3825  ;
3826  ; Usage:
3827  ;   Push "C:\Program Files\Directory\Whatever"
3828  ;   Call GetParent
3829  ;   Pop $R0
3830  ;   ; at this point $R0 will equal "C:\Program Files\Directory"
3831
3832 Function GetParent
3833
3834   Exch $R0
3835   Push $R1
3836   Push $R2
3837   Push $R3
3838   
3839   StrCpy $R1 0
3840   StrLen $R2 $R0
3841   
3842   loop:
3843     IntOp $R1 $R1 + 1
3844     IntCmp $R1 $R2 get 0 get
3845     StrCpy $R3 $R0 1 -$R1
3846     StrCmp $R3 "\" get
3847   Goto loop
3848   
3849   get:
3850     StrCpy $R0 $R0 -$R1
3851     
3852     Pop $R3
3853     Pop $R2
3854     Pop $R1
3855     Exch $R0
3856     
3857 FunctionEnd
3858
3859
3860 ;--------------------------------
3861 ;Handle what must and what must not be installed
3862 Function .onSelChange
3863    ; If they install the server, they MUST install the client
3864    SectionGetFlags ${secServer} $R0
3865    IntOp $R0 $R0 & ${SF_SELECTED}
3866    StrCmp $R0 "1" MakeClientSelected
3867    
3868    ; If they install the control center, we'll give them the client.
3869    ; It may not be required, but it's a bit more useful
3870    SectionGetFlags ${secControl} $R0
3871    IntOp $R0 $R0 & ${SF_SELECTED}
3872    StrCmp $R0 "1" MakeClientSelected
3873    goto end
3874    
3875 MakeClientSelected:
3876    SectionGetFlags ${secClient} $R0
3877    IntOp $R0 $R0 | ${SF_SELECTED}
3878    SectionSetFlags ${secClient} $R0
3879    
3880 end:
3881 FunctionEnd
3882
3883 Function RegWriteMultiStr
3884 !define HKEY_CLASSES_ROOT        0x80000000
3885 !define HKEY_CURRENT_USER        0x80000001
3886 !define HKEY_LOCAL_MACHINE       0x80000002
3887 !define HKEY_USERS               0x80000003
3888 !define HKEY_PERFORMANCE_DATA    0x80000004
3889 !define HKEY_PERFORMANCE_TEXT    0x80000050
3890 !define HKEY_PERFORMANCE_NLSTEXT 0x80000060
3891 !define HKEY_CURRENT_CONFIG      0x80000005
3892 !define HKEY_DYN_DATA            0x80000006
3893
3894 !define KEY_QUERY_VALUE          0x0001
3895 !define KEY_SET_VALUE            0x0002
3896 !define KEY_CREATE_SUB_KEY       0x0004
3897 !define KEY_ENUMERATE_SUB_KEYS   0x0008
3898 !define KEY_NOTIFY               0x0010
3899 !define KEY_CREATE_LINK          0x0020
3900
3901 !define REG_NONE                 0
3902 !define REG_SZ                   1
3903 !define REG_EXPAND_SZ            2
3904 !define REG_BINARY               3
3905 !define REG_DWORD                4
3906 !define REG_DWORD_LITTLE_ENDIAN  4
3907 !define REG_DWORD_BIG_ENDIAN     5
3908 !define REG_LINK                 6
3909 !define REG_MULTI_SZ             7
3910
3911 !define RegCreateKey             "Advapi32::RegCreateKeyA(i, t, *i) i"
3912 !define RegSetValueEx            "Advapi32::RegSetValueExA(i, t, i, i, i, i) i"
3913 !define RegCloseKey              "Advapi32::RegCloseKeyA(i) i"
3914
3915   Exch $R0
3916   Push $1
3917   Push $2
3918   Push $9
3919
3920   SetPluginUnload alwaysoff
3921   ; Create a buffer for the multi_sz value
3922   System::Call "*(&t${NSIS_MAX_STRLEN}) i.r1"
3923   ; Open/create the registry key
3924   System::Call "${RegCreateKey}(${HKEY_LOCAL_MACHINE}, '$REG_SUB_KEY', .r0) .r9"
3925   ; Failed?
3926   IntCmp $9 0 write
3927     MessageBox MB_OK|MB_ICONSTOP "Can't create registry key! ($9)"
3928     Goto noClose
3929
3930   write:
3931     ; Fill in the buffer with our strings
3932     StrCpy $2 $1                            ; Initial position
3933
3934     StrLen $9 '$REG_DATA_1'                 ; Length of first string
3935     IntOp $9 $9 + 1                         ; Plus null
3936     System::Call "*$2(&t$9 '$REG_DATA_1')"  ; Place the string
3937     IntOp $2 $2 + $9                        ; Advance to the next position
3938
3939     StrCmp '$REG_DATA_2' "" terminate
3940     StrLen $9 '$REG_DATA_2'                 ; Length of second string
3941     IntOp $9 $9 + 1                         ; Plus null
3942     System::Call "*$2(&t$9 '$REG_DATA_2')"  ; Place the string
3943     IntOp $2 $2 + $9                        ; Advance to the next position
3944
3945     StrCmp '$REG_DATA_3' "" terminate
3946     StrLen $9 '$REG_DATA_3'                 ; Length of third string
3947     IntOp $9 $9 + 1                         ; Plus null
3948     System::Call "*$2(&t$9 '$REG_DATA_3')"  ; Place the string
3949     IntOp $2 $2 + $9                        ; Advance to the next position
3950
3951     StrCmp '$REG_DATA_4' "" terminate
3952     StrLen $9 '$REG_DATA_4'                 ; Length of third string
3953     IntOp $9 $9 + 1                         ; Plus null
3954     System::Call "*$2(&t$9 '$REG_DATA_4')"  ; Place the string
3955     IntOp $2 $2 + $9                        ; Advance to the next position
3956
3957   terminate:
3958     System::Call "*$2(&t1 '')"              ; Place the terminating null
3959     IntOp $2 $2 + 1                         ; Advance to the next position
3960
3961     ; Create/write the value
3962     IntOp $2 $2 - $1                        ; Total length
3963     System::Call "${RegSetValueEx}(r0, '$REG_VALUE', 0, ${REG_MULTI_SZ}, r1, r2) .r9"
3964     ; Failed?
3965     IntCmp $9 0 done
3966       MessageBox MB_OK|MB_ICONSTOP "Can't set key value! ($9)"
3967       Goto done
3968
3969   done:
3970     ; Close the registry key
3971     System::Call "${RegCloseKey}(r0)"
3972
3973 noClose:
3974   ; Clear the buffer
3975   SetPluginUnload manual
3976   System::Free $1
3977
3978   Pop $9
3979   Pop $2
3980   Pop $1
3981   Exch $R0
3982 FunctionEnd
3983
3984 Function CreateDesktopIni
3985    WriteIniStr "$INSTDIR\Desktop.ini" ".ShellClassInfo" "IconFile" "client\program\afsd_service.exe"
3986    WriteIniStr "$INSTDIR\Desktop.ini" ".ShellClassInfo" "IconIndex" "0"
3987    SetFileAttributes "$INSTDIR\Desktop.ini" HIDDEN|SYSTEM
3988    SetFileAttributes "$INSTDIR\" READONLY
3989 FunctionEnd