nsis-installer-take-two-20031230
[openafs.git] / src / WINNT / install / NSIS / OpenAFS.nsi
index 94109ad..62ac3b8 100644 (file)
@@ -7,11 +7,36 @@
 ;MultiLanguage Example Script
 ;Written by Joost Verburg
 
-!define MUI_PRODUCT "OpenAFS for Windows" ;Define your own software name here
-!define MUI_VERSION "1.2.11" ;Define your own software version here
-!define MUI_MAJORVERSION 1
-!define MUI_MINORVERSION 2
-!define MUI_PATCHLEVEL 110
+; Read in the environment information
+!include ${INCLUDEDIR}\nsi-includes.nsi
+; Define DEBUG if building a DEBUG installer
+
+; This version compiles with NSIS v2.0b3 or NSIS v2.0b4
+
+!ifdef v2.0b3       ; v2.0b3
+!ifndef DEBUG        ; !DEBUG
+!define MUI_PRODUCT "OpenAFS" ;Define your own software name here
+!else                ; DEBUG on v2.0b3
+!define MUI_PRODUCT "OpenAFS Checked/Debug"
+!endif               ; End DEBUG
+!define MUI_VERSION ${AFS_VERSION}
+!else                ; v2.0b4
+!ifndef DEBUG        ; !DEBUG on v2.0b4
+Name "OpenAFS ${AFS_VERSION} ${__DATE__} ${__TIME__}"
+!else                ; DEBUG on v2.0b4
+Name "OpenAFS ${AFS_VERSION} ${__DATE__} ${__TIME__} Checked/Debug"
+!endif               ; End DEBUG/!DEBUG
+VIProductVersion "${AFS_VERSION}.00"
+VIAddVersionKey "ProductName" "OpenAFS"
+VIAddVersionKey "CompanyName" "OpenAFS.org"
+VIAddVersionKey "ProductVersion" ${AFS_VERSION}
+VIAddVersionKey "FileVersion" ${AFS_VERSION}
+VIAddVersionKey "FileDescription" "OpenAFS for Windows Installer"
+VIAddVersionKey "LegalCopyright" "(C)2003"
+!ifdef DEBUG
+VIAddVersionKey "PrivateBuild" "Checked/Debug"
+!endif               ; End DEBUG
+!endif               ; End v2.0b4
 
 
 !include "MUI.nsh"
 ;Configuration
 
   ;General
-  OutFile "OpenAFSforWindows.exe"
+!ifndef DEBUG
+  OutFile "${AFS_DESTDIR}\WinInstall\OpenAFSforWindows.exe"
+!else
+  OutFile "${AFS_DESTDIR}\WinInstall\OpenAFSforWindows-DEBUG.exe"
+!endif
   SilentInstall normal
-  !define MUI_ICON "..\..\client_cpa\afs_conf.ico"
-  !define MUI_UNICON "c:\Program Files\NSIS\Contrib\Icons\normal-uninstall.ico"
+  SetCompressor bzip2
+  !define MUI_ICON "..\..\client_config\afs_config.ico"
+  !ifdef v2.0b3
+  !define MUI_UNICON "${NSISDIR}\Contrib\Icons\normal-uninstall.ico"
+  !else
+  !define MUI_UNICON "..\..\client_config\afs_config.ico"
+  !endif
   !define AFS_COMPANY_NAME "OpenAFS"
   !define AFS_PRODUCT_NAME "OpenAFS"
   !define AFS_REGKEY_ROOT "Software\TransarcCorporation"
   CRCCheck force
 
   ;Folder selection page
-  InstallDir "$PROGRAMFILES\OpenAFS\AFS"
+  InstallDir "$PROGRAMFILES\OpenAFS"      ; Install to shorter path
   
   ;Remember install folder
-  InstallDirRegKey HKCU "Software\TransarcCorporation" ""
+  InstallDirRegKey HKCU ${AFS_REGKEY_ROOT} ""
   
   ;Remember the installer language
   !define MUI_LANGDLL_REGISTRY_ROOT "HKCU" 
-  !define MUI_LANGDLL_REGISTRY_KEY "Software\TransarcCorporation" 
+  !define MUI_LANGDLL_REGISTRY_KEY $(AFS_REGKEY_ROOT}
   !define MUI_LANGDLL_REGISTRY_VALUENAME "Installer Language"
   
   ;Where are the files?
-  !define AFS_DESTDIR "..\..\..\..\obj\DEST\free"
   !define AFS_CLIENT_BUILDDIR "${AFS_DESTDIR}\root.client\usr\vice\etc"
   !define AFS_WININSTALL_DIR "${AFS_DESTDIR}\WinInstall\Config"
   !define AFS_BUILD_INCDIR "${AFS_DESTDIR}\include"
   !define AFS_CLIENT_LIBDIR "${AFS_DESTDIR}\lib"
   !define AFS_SERVER_BUILDDIR "${AFS_DESTDIR}\root.server\usr\afs\bin"
   !define AFS_ETC_BUILDDIR "${AFS_DESTDIR}\etc"
-  !define SDK_DIR "X:"
   
 ;--------------------------------
 ;Modern UI Configuration
 
+  ;!define MUI_LICENSEPAGE
   !define MUI_CUSTOMPAGECOMMANDS
   !define MUI_WELCOMEPAGE
   !define MUI_COMPONENTSPAGE
   
   !define MUI_UNINSTALLER
   !define MUI_UNCONFIRMPAGE
-
   
+  
+!IFDEF v2.0b3       ; v2.0b3
   !insertmacro MUI_PAGECOMMAND_WELCOME
+ ;!insertmacro MUI_PAGECOMMAND_LICENSE
   !insertmacro MUI_PAGECOMMAND_COMPONENTS
   !insertmacro MUI_PAGECOMMAND_DIRECTORY
   Page custom AFSPageGetCellServDB
   Page custom AFSPageGetCellName
   !insertmacro MUI_PAGECOMMAND_INSTFILES
   !insertmacro MUI_PAGECOMMAND_FINISH
+!ELSE                ; v2.0b4
+  !insertmacro MUI_PAGE_WELCOME
+  !insertmacro MUI_PAGE_COMPONENTS
+  !insertmacro MUI_PAGE_DIRECTORY
+  Page custom AFSPageGetCellServDB
+  Page custom AFSPageGetCellName
+  !insertmacro MUI_PAGE_INSTFILES
+  !insertmacro MUI_PAGE_FINISH
+!ENDIF
   
+  ;LicenseData "Licenses.rtf"
 ;--------------------------------
 ;Languages
 
   !insertmacro MUI_LANGUAGE "SimpChinese"
   !insertmacro MUI_LANGUAGE "TradChinese"    
   !insertmacro MUI_LANGUAGE "Japanese"
-  ;!insertmacro MUI_LANGUAGE "Korean"
+  !ifndef v2.0b3
+  !insertmacro MUI_LANGUAGE "Korean"
+  !endif
   ;!insertmacro MUI_LANGUAGE "Italian"
   ;!insertmacro MUI_LANGUAGE "Dutch"
   ;!insertmacro MUI_LANGUAGE "Danish"
   LangString DESC_SecCopyUI ${LANG_SIMPCHINESE} "OpenAFS for Windows: Simplified Chinese"
   LangString DESC_SecCopyUI ${LANG_TRADCHINESE} "OpenAFS for Windows: Traditional Chinese description"
   LangString DESC_SecCopyUI ${LANG_JAPANESE} "OpenAFS for Windows: Japanese description"
+!ifndef v2.0b3
   LangString DESC_SecCopyUI ${LANG_KOREAN} "OpenAFS for Windows: Korean description"
+!endif
   ;LangString DESC_SecCopyUI ${LANG_ITALIAN} "OpenAFS for Windows: Italian description"
   ;LangString DESC_SecCopyUI ${LANG_DUTCH} "OpenAFS for Windows: Dutch description"
   ;LangString DESC_SecCopyUI ${LANG_DANISH} "OpenAFS for Windows: Danish description"
   ;LangString DESC_SecCopyUI ${LANG_MACEDONIAN} "OpenAFS for Windows: Macedonian description"
   ;LangString DESC_SecCopyUI ${LANG_TURKISH} "OpenAFS for Windows: Turkish description"
 
-  LangString DESC_SecClient ${LANG_ENGLISH} "OpenAFS Client: Allows you to access AFS from your Windows PC."
-  LangString DESC_SecClient ${LANG_GERMAN} "OpenAFS Client: Allows you to access AFS from your Windows PC."
-  LangString DESC_SecClient ${LANG_SPANISH} "OpenAFS Client: Allows you to access AFS from your Windows PC."
-  LangString DESC_SecClient ${LANG_SIMPCHINESE} "OpenAFS Client: Allows you to access AFS from your Windows PC."
-  LangString DESC_SecClient ${LANG_TRADCHINESE} "OpenAFS Client: Allows you to access AFS from your Windows PC."
-  LangString DESC_SecClient ${LANG_JAPANESE} "OpenAFS Client: Allows you to access AFS from your Windows PC."
-  LangString DESC_SecClient ${LANG_KOREAN} "OpenAFS Client: Allows you to access AFS from your Windows PC."
-  LangString DESC_SecClient ${LANG_PORTUGUESEBR} "OpenAFS Client: Allows you to access AFS from your Windows PC."
-  
-  LangString DESC_SecServer ${LANG_ENGLISH} "OpenAFS Server: Allows you to run an AFS file server."
-  LangString DESC_SecServer ${LANG_GERMAN} "OpenAFS Server: Allows you to run an AFS file server."
-  LangString DESC_SecServer ${LANG_SPANISH} "OpenAFS Server: Allows you to run an AFS file server."
-  LangString DESC_SecServer ${LANG_SIMPCHINESE} "OpenAFS Server: Allows you to run an AFS file server."
-  LangString DESC_SecServer ${LANG_TRADCHINESE} "OpenAFS Server: Allows you to run an AFS file server."
-  LangString DESC_SecServer ${LANG_JAPANESE} "OpenAFS Server: Allows you to run an AFS file server."
-  LangString DESC_SecServer ${LANG_KOREAN} "OpenAFS Server: Allows you to run an AFS file server."
-  LangString DESC_SecServer ${LANG_PORTUGUESEBR} "OpenAFS Server: Allows you to run an AFS file server."
-  
-  LangString DESC_SecControl ${LANG_ENGLISH} "OpenAFS Control Center: GUI utilities for managing and configuring AFS."
-  LangString DESC_SecControl ${LANG_GERMAN} "OpenAFS Control Center: GUI utilities for managing and configuring AFS."
-  LangString DESC_SecControl ${LANG_SPANISH} "OpenAFS Control Center: GUI utilities for managing and configuring AFS."
-  LangString DESC_SecControl ${LANG_SIMPCHINESE} "OpenAFS Control Center: GUI utilities for managing and configuring AFS."
-  LangString DESC_SecControl ${LANG_TRADCHINESE} "OpenAFS Control Center: GUI utilities for managing and configuring AFS."
-  LangString DESC_SecControl ${LANG_JAPANESE} "OpenAFS Control Center: GUI utilities for managing and configuring AFS."
-  LangString DESC_SecControl ${LANG_KOREAN} "OpenAFS Control Center: GUI utilities for managing and configuring AFS."
-  LangString DESC_SecControl ${LANG_PORTUGUESEBR} "OpenAFS Control Center: GUI utilities for managing and configuring AFS."
-  
-  LangString DESC_SecDocs ${LANG_ENGLISH} "OpenAFS Supplemental Documentation: Additional documentation for using OpenAFS."
-  LangString DESC_SecDocs ${LANG_GERMAN} "OpenAFS Supplemental Documentation: Additional documentation for using OpenAFS."
-  LangString DESC_SecDocs ${LANG_SPANISH} "OpenAFS Supplemental Documentation: Additional documentation for using OpenAFS."
-  LangString DESC_SecDocs ${LANG_SIMPCHINESE} "OpenAFS Supplemental Documentation: Additional documentation for using OpenAFS."
-  LangString DESC_SecDocs ${LANG_TRADCHINESE} "OpenAFS Supplemental Documentation: Additional documentation for using OpenAFS."
-  LangString DESC_SecDocs ${LANG_JAPANESE} "OpenAFS Supplemental Documentation: Additional documentation for using OpenAFS."
-  LangString DESC_SecDocs ${LANG_KOREAN} "OpenAFS Supplemental Documentation: Additional documentation for using OpenAFS."
-  LangString DESC_SecDocs ${LANG_PORTUGUESEBR} "OpenAFS Supplemental Documentation: Additional documentation for using OpenAFS."
+  LangString DESC_secClient ${LANG_ENGLISH} "OpenAFS Client: Allows you to access AFS from your Windows PC."
+  LangString DESC_secClient ${LANG_GERMAN} "OpenAFS Client: Allows you to access AFS from your Windows PC."
+  LangString DESC_secClient ${LANG_SPANISH} "OpenAFS Client: Allows you to access AFS from your Windows PC."
+  LangString DESC_secClient ${LANG_SIMPCHINESE} "OpenAFS Client: Allows you to access AFS from your Windows PC."
+  LangString DESC_secClient ${LANG_TRADCHINESE} "OpenAFS Client: Allows you to access AFS from your Windows PC."
+  LangString DESC_secClient ${LANG_JAPANESE} "OpenAFS Client: Allows you to access AFS from your Windows PC."
+!ifndef v2.0b3  
+  LangString DESC_secClient ${LANG_KOREAN} "OpenAFS Client: Allows you to access AFS from your Windows PC."
+!endif
+  LangString DESC_secClient ${LANG_PORTUGUESEBR} "OpenAFS Client: Allows you to access AFS from your Windows PC."
+  
+  LangString DESC_secServer ${LANG_ENGLISH} "OpenAFS Server: Allows you to run an AFS file server. This option requires the AFS Client."
+  LangString DESC_secServer ${LANG_GERMAN} "OpenAFS Server: Allows you to run an AFS file server. This option requires the AFS Client."
+  LangString DESC_secServer ${LANG_SPANISH} "OpenAFS Server: Allows you to run an AFS file server. This option requires the AFS Client."
+  LangString DESC_secServer ${LANG_SIMPCHINESE} "OpenAFS Server: Allows you to run an AFS file server. This option requires the AFS Client."
+  LangString DESC_secServer ${LANG_TRADCHINESE} "OpenAFS Server: Allows you to run an AFS file server. This option requires the AFS Client."
+  LangString DESC_secServer ${LANG_JAPANESE} "OpenAFS Server: Allows you to run an AFS file server. This option requires the AFS Client."
+!ifndef v2.0b3 
+  LangString DESC_secServer ${LANG_KOREAN} "OpenAFS Server: Allows you to run an AFS file server. This option requires the AFS Client."
+!endif
+  LangString DESC_secServer ${LANG_PORTUGUESEBR} "OpenAFS Server: Allows you to run an AFS file server. This option requires the AFS Client."
+  
+  LangString DESC_secControl ${LANG_ENGLISH} "Control Center: GUI utilities for managing and configuring AFS servers.  This option requires the AFS Client."
+  LangString DESC_secControl ${LANG_GERMAN} "Control Center: GUI utilities for managing and configuring AFS servers.  This option requires the AFS Client."
+  LangString DESC_secControl ${LANG_SPANISH} "Control Center: GUI utilities for managing and configuring AFS servers.  This option requires the AFS Client."
+  LangString DESC_secControl ${LANG_SIMPCHINESE} "Control Center: GUI utilities for managing and configuring AFS servers.  This option requires the AFS Client."
+  LangString DESC_secControl ${LANG_TRADCHINESE} "Control Center: GUI utilities for managing and configuring AFS servers.  This option requires the AFS Client."
+  LangString DESC_secControl ${LANG_JAPANESE} "Control Center: GUI utilities for managing and configuring AFS servers.  This option requires the AFS Client."
+!ifndef v2.0b3  
+  LangString DESC_secControl ${LANG_KOREAN} "Control Center: GUI utilities for managing and configuring AFS servers.  This option requires the AFS Client."
+!endif
+  LangString DESC_secControl ${LANG_PORTUGUESEBR} "Control Center: GUI utilities for managing and configuring AFS servers.  This option requires the AFS Client."
+  
+  LangString DESC_secDocs ${LANG_ENGLISH} "Supplemental Documentation: Additional documentation for using OpenAFS."
+  LangString DESC_secDocs ${LANG_GERMAN} "Supplemental Documentation: Additional documentation for using OpenAFS."
+  LangString DESC_secDocs ${LANG_SPANISH} "Supplemental Documentation: Additional documentation for using OpenAFS."
+  LangString DESC_secDocs ${LANG_SIMPCHINESE} "Supplemental Documentation: Additional documentation for using OpenAFS."
+  LangString DESC_secDocs ${LANG_TRADCHINESE} "Supplemental Documentation: Additional documentation for using OpenAFS."
+  LangString DESC_secDocs ${LANG_JAPANESE} "Supplemental Documentation: Additional documentation for using OpenAFS."
+!ifndef v2.0b3  
+  LangString DESC_secDocs ${LANG_KOREAN} "Supplemental Documentation: Additional documentation for using OpenAFS."
+!endif
+  LangString DESC_secDocs ${LANG_PORTUGUESEBR} "Supplemental Documentation: Additional documentation for using OpenAFS."
   
 ; Popup error messages
   LangString CellError ${LANG_ENGLISH} "You must specify a valid CellServDB file to copy during install"
   LangString CellError ${LANG_SIMPCHINESE} "You must specify a valid CellServDB file to copy during the install"
   LangString CellError ${LANG_TRADCHINESE} "You must specify a valid CellServDB file to copy during the install"
   LangString CellError ${LANG_JAPANESE} "You must specify a valid CellServDB file to copy during the install"
+!ifndef v2.0b3  
   LangString CellError ${LANG_KOREAN} "You must specify a valid CellServDB file to copy during the install"
+!endif
   LangString CellError ${LANG_PORTUGUESEBR} "You must specify a valid CellServDB file to copy during the install"
   
+  LangString CellNameError ${LANG_ENGLISH} "You must specify a cell name for your client to use."
+  LangString CellNameError ${LANG_GERMAN} "You must specify a cell name for your client to use."
+  LangString CellNameError ${LANG_SPANISH} "You must specify a cell name for your client to use."
+  LangString CellNameError ${LANG_SIMPCHINESE} "You must specify a cell name for your client to use."
+  LangString CellNameError ${LANG_TRADCHINESE} "You must specify a cell name for your client to use."
+  LangString CellNameError ${LANG_JAPANESE} "You must specify a cell name for your client to use."
+!ifndef v2.0b3
+  LangString CellNameError ${LANG_KOREAN} "You must specify a cell name for your client to use."
+!endif
+  LangString CellNameError ${LANG_PORTUGUESEBR} "You must specify a cell name for your client to use."
+  
+  LangString URLError ${LANG_ENGLISH} "You must specify a URL if you choose the option to download the CellServDB."
+  LangString URLError ${LANG_GERMAN} "You must specify a URL if you choose the option to download the CellServDB."
+  LangString URLError ${LANG_SPANISH} "You must specify a URL if you choose the option to download the CellServDB."
+  LangString URLError ${LANG_SIMPCHINESE} "You must specify a URL if you choose the option to download the CellServDB."
+  LangString URLError ${LANG_TRADCHINESE} "You must specify a URL if you choose the option to download the CellServDB."
+  LangString URLError ${LANG_JAPANESE} "You must specify a URL if you choose the option to download the CellServDB."
+!ifndef v2.0b3
+  LangString URLError ${LANG_KOREAN} "You must specify a URL if you choose the option to download the CellServDB."
+!endif
+  LangString URLError ${LANG_PORTUGUESEBR} "You must specify a URL if you choose the option to download the CellServDB."
+
   
 ; Upgrade/re-install strings
    LangString UPGRADE_CLIENT ${LANG_ENGLISH} "Upgrade AFS Client"
-   
-   
+   LangString UPGRADE_CLIENT ${LANG_GERMAN} "Upgrade AFS Client"
+   LangString UPGRADE_CLIENT ${LANG_SPANISH} "Upgrade AFS Client"
+   LangString UPGRADE_CLIENT ${LANG_SIMPCHINESE} "Upgrade AFS Client"
+   LangString UPGRADE_CLIENT ${LANG_TRADCHINESE} "Upgrade AFS Client"
+   LangString UPGRADE_CLIENT ${LANG_JAPANESE} "Upgrade AFS Client"
+!ifndef v2.0b3
+   LangString UPGRADE_CLIENT ${LANG_KOREAN} "Upgrade AFS Client"
+!endif
+   LangString UPGRADE_CLIENT ${LANG_PORTUGUESEBR} "Upgrade AFS Client"
+   LangString REINSTALL_CLIENT ${LANG_ENGLISH} "Re-install AFS Client"
+   LangString REINSTALL_CLIENT ${LANG_GERMAN} "Re-install AFS Client"
+   LangString REINSTALL_CLIENT ${LANG_SPANISH} "Re-install AFS Client"
+   LangString REINSTALL_CLIENT ${LANG_SIMPCHINESE} "Re-install AFS Client"
+   LangString REINSTALL_CLIENT ${LANG_TRADCHINESE} "Re-install AFS Client"
+   LangString REINSTALL_CLIENT ${LANG_JAPANESE} "Re-install AFS Client"
+!ifndef v2.0b3
+   LangString REINSTALL_CLIENT ${LANG_KOREAN} "Re-install AFS Client"
+!endif
+   LangString REINSTALL_CLIENT ${LANG_PORTUGUESEBR} "Re-install AFS Client"
+  
+   LangString UPGRADE_SERVER ${LANG_ENGLISH} "Upgrade AFS Server"
+   LangString UPGRADE_SERVER ${LANG_GERMAN} "Upgrade AFS Server"
+   LangString UPGRADE_SERVER ${LANG_SPANISH} "Upgrade AFS Server"
+   LangString UPGRADE_SERVER ${LANG_SIMPCHINESE} "Upgrade AFS Server"
+   LangString UPGRADE_SERVER ${LANG_TRADCHINESE} "Upgrade AFS Server"
+   LangString UPGRADE_SERVER ${LANG_JAPANESE} "Upgrade AFS Server"
+!ifndef v2.0b3
+   LangString UPGRADE_SERVER ${LANG_KOREAN} "Upgrade AFS Server"
+!endif
+   LangString UPGRADE_SERVER ${LANG_PORTUGUESEBR} "Upgrade AFS Server"
+    
    LangString REINSTALL_SERVER ${LANG_ENGLISH} "Re-install AFS Server"
+   LangString REINSTALL_SERVER ${LANG_GERMAN} "Re-install AFS Server"
+   LangString REINSTALL_SERVER ${LANG_SPANISH} "Re-install AFS Server"
+   LangString REINSTALL_SERVER ${LANG_SIMPCHINESE} "Re-install AFS Server"
+   LangString REINSTALL_SERVER ${LANG_TRADCHINESE} "Re-install AFS Server"
+   LangString REINSTALL_SERVER ${LANG_JAPANESE} "Re-install AFS Server"
+!ifndef v2.0b3   
+   LangString REINSTALL_SERVER ${LANG_KOREAN} "Re-install AFS Server"
+!endif
+   LangString REINSTALL_SERVER ${LANG_PORTUGUESEBR} "Re-install AFS Server"
   
+  ReserveFile "CellServPage.ini"
+  ReserveFile "AFSCell.ini"
+  !insertmacro MUI_RESERVEFILE_INSTALLOPTIONS ;InstallOptions plug-in
+  !insertmacro MUI_RESERVEFILE_LANGDLL ;Language selection dialog
 ;--------------------------------
 ; Macros
+; Macro - Upgrade DLL File
+ ; Written by Joost Verburg
+ ; ------------------------
+ ;
+ ; Example of usage:
+ ; !insertmacro UpgradeDLL "dllname.dll" "$SYSDIR\dllname.dll"
+ ;
+ ; !define UPGRADEDLL_NOREGISTER if you want to upgrade a DLL which cannot be registered
+ ;
+ ; Note that this macro sets overwrite to ON (the default) when it has been inserted.
+ ; If you are using another setting, set it again after inserting the macro.
+
+
+ !macro UpgradeDLL LOCALFILE DESTFILE
+
+   Push $R0
+   Push $R1
+   Push $R2
+   Push $R3
+
+   ;------------------------
+   ;Check file and version
+
+   IfFileExists "${DESTFILE}" "" "copy_${LOCALFILE}"
+
+   ClearErrors
+     GetDLLVersionLocal "${LOCALFILE}" $R0 $R1
+     GetDLLVersion "${DESTFILE}" $R2 $R3
+   IfErrors "upgrade_${LOCALFILE}"
+
+   IntCmpU $R0 $R2 "" "done_${LOCALFILE}" "upgrade_${LOCALFILE}"
+   IntCmpU $R1 $R3 "done_${LOCALFILE}" "done_${LOCALFILE}" "upgrade_${LOCALFILE}"
+
+   ;------------------------
+   ;Let's upgrade the DLL!
+
+   SetOverwrite try
+
+   "upgrade_${LOCALFILE}:"
+     !ifndef UPGRADEDLL_NOREGISTER
+       ;Unregister the DLL
+       UnRegDLL "${DESTFILE}"
+     !endif
+
+   ;------------------------
+   ;Try to copy the DLL directly
+
+   ClearErrors
+     StrCpy $R0 "${DESTFILE}"
+     Call ":file_${LOCALFILE}"
+   IfErrors "" "noreboot_${LOCALFILE}"
+
+   ;------------------------
+   ;DLL is in use. Copy it to a temp file and Rename it on reboot.
+
+   GetTempFileName $R0
+     Call ":file_${LOCALFILE}"
+   Rename /REBOOTOK $R0 "${DESTFILE}"
+
+   ;------------------------
+   ;Register the DLL on reboot
+
+   !ifndef UPGRADEDLL_NOREGISTER
+     WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\RunOnce" \
+     "Register ${DESTFILE}" '"$SYSDIR\rundll32.exe" "${DESTFILE},DllRegisterServer"'
+   !endif
+
+   Goto "done_${LOCALFILE}"
+
+   ;------------------------
+   ;DLL does not exist - just extract
+
+   "copy_${LOCALFILE}:"
+     StrCpy $R0 "${DESTFILE}"
+     Call ":file_${LOCALFILE}"
+
+   ;------------------------
+   ;Register the DLL
+
+   "noreboot_${LOCALFILE}:"
+     !ifndef UPGRADEDLL_NOREGISTER
+       RegDLL "${DESTFILE}"
+     !endif
+
+   ;------------------------
+   ;Done
+
+   "done_${LOCALFILE}:"
+
+   Pop $R3
+   Pop $R2
+   Pop $R1
+   Pop $R0
+
+   ;------------------------
+   ;End
+
+   Goto "end_${LOCALFILE}"
+
+   ;------------------------
+   ;Called to extract the DLL
+
+   "file_${LOCALFILE}:"
+     File /oname=$R0 "${LOCALFILE}"
+     Return
+
+   "end_${LOCALFILE}:"
+
+  ;------------------------
+  ;Set overwrite to default
+  ;(was set to TRY above)
+
+  SetOverwrite on
+
+ !macroend
 
 
 ;--------------------------------
   ;Only useful for BZIP2 compression
   !insertmacro MUI_RESERVEFILE_LANGDLL
   
+
 ;--------------------------------
 ;Installer Sections
 
 ;----------------------
 ; OpenAFS CLIENT
-Section "AFS Client" SecClient
+Section "AFS Client" secClient
 
   SetShellVarContext all
+  ; Stop any running services or we can't replace the files
+  ; Stop the running processes
+  ;GetTempFileName $R0
+  ;File /oname=$R0 "${AFS_WININSTALL_DIR}\Killer.exe"   ; Might not have the MSVCR71.DLL file to run
+  ;nsExec::Exec '$R0 afscreds.exe'
+!IFDEF INSTALL_KFW
+  ;nsExec::Exec '$R0 krbcc32s.exe'
+!ENDIF
+
+  nsExec::Exec "net stop TransarcAFSDaemon"
+  nsExec::Exec "net stop TransarcAFSServer"
+  
    ; Do client components
   SetOutPath "$INSTDIR\Client\Program"
   File "${AFS_CLIENT_BUILDDIR}\afsshare.exe"
@@ -235,7 +487,30 @@ Section "AFS Client" SecClient
   File "${AFS_DESTDIR}\etc\rxdebug.exe"
   File "${AFS_DESTDIR}\etc\backup.exe"
   
-  
+!ifdef DEBUG
+  File "${AFS_CLIENT_BUILDDIR}\afsshare.pdb"
+  File "${AFS_CLIENT_BUILDDIR}\libosi.pdb"
+  File "${AFS_CLIENT_BUILDDIR}\libafsconf.pdb"
+  File "${AFS_CLIENT_BUILDDIR}\klog.pdb"
+  File "${AFS_CLIENT_BUILDDIR}\tokens.pdb"
+  File "${AFS_CLIENT_BUILDDIR}\unlog.pdb"
+  File "${AFS_CLIENT_BUILDDIR}\fs.pdb"
+  File "${AFS_CLIENT_BUILDDIR}\afscreds.pdb"
+  File "${AFS_CLIENT_BUILDDIR}\afs_shl_ext.pdb"
+  File "${AFS_CLIENT_BUILDDIR}\afsd_service.pdb"
+  File "${AFS_CLIENT_BUILDDIR}\afslogon.pdb"
+  File "${AFS_CLIENT_BUILDDIR}\symlink.pdb"
+  File "${AFS_DESTDIR}\bin\kpasswd.pdb"
+  ;File "${AFS_SERVER_BUILDDIR}\pts.pdb"
+  File "${AFS_SERVER_BUILDDIR}\bos.pdb"
+  File "${AFS_SERVER_BUILDDIR}\kas.pdb"
+  File "${AFS_SERVER_BUILDDIR}\vos.pdb"
+  File "${AFS_SERVER_BUILDDIR}\udebug.pdb"
+  File "${AFS_DESTDIR}\bin\translate_et.pdb"
+  File "${AFS_DESTDIR}\etc\rxdebug.pdb"
+  File "${AFS_DESTDIR}\etc\backup.pdb"
+!endif
+
   ; Client_headers
    SetOutPath "$INSTDIR\Client\Program\Include"
    File "${AFS_BUILD_INCDIR}\lock.h"
@@ -391,92 +666,127 @@ Section "AFS Client" SecClient
    
    Call AFSLangFiles
    
-   ; Do SYSTEM32 DIR
-   SetOutPath "$SYSDIR"
-   File "${AFS_CLIENT_BUILDDIR}\afs_cpa.cpl"
-   ;File "${SDK_DIR}\REDIST\msvcrt.dll"
-   ;File "${SDK_DIR}\REDIST\mfc42.dll"
-   SetOutPath "$INSTDIR\Common"
-   File "${AFS_WININSTALL_DIR}\Msvcr71.dll"
+
    
   ; Do WINDOWSDIR components
+  
+  ; Do Windows SYSDIR (Control panel)
+  SetOutPath "$SYSDIR"
+  File "${AFS_CLIENT_BUILDDIR}\afs_cpa.cpl"
+!ifdef DEBUG
+  File "${AFS_CLIENT_BUILDDIR}\afs_cpa.pdb"
+!endif
+  
   ; Get AFS CellServDB file
   Call afs.GetCellServDB
-  
-  ReadINIStr $R0 $0 "Field 2" "State"
-  StrCmp $R0 "1" UsePkg DontUsePkg
- UsePkg:
-   SetOutPath "$WINDIR"
-   File "afsdcell.ini"
-DontUsePkg:
-   ReadINIStr $R0 $0 "Field 6" "State"
-   StrCmp $R0 "1" UseFile DontUseFile
-UseFile:
-   ReadINIStr $R0 $0 "Field 7" "State"
-   CopyFiles $R0 "$WINDIR\afsdcell.ini"
-DontUseFile:
+!ifdef INSTALL_LOOPBACK
+  Call afs.InstallMSLoopback
+!endif
+
+!ifdef INSTALL_KFW
+  ; Include Kerberos for Windows files in the installer...
+  SetOutPath "$INSTDIR\kfw\bin\"
+  File "${KFW_SOURCE}\bin\*"
+  SetOutPath "$INSTDIR\kfw\doc"
+  File "${KFW_SOURCE}\doc\*"
+!endif
    
   ;Store install folder
   WriteRegStr HKCU "${AFS_REGKEY_ROOT}\Client" "" $INSTDIR
   Call AFSCommon.Install
   
-  
   ; Write registry entries
-  WriteRegStr HKCR "*\shellex\ContextMenuHandlers\AFS Client Shell Extension" "(Default)" "{DC515C27-6CAC-11D1-BAE7-00C04FD140D2}"
-  WriteRegStr HKCR "CLSID\{DC515C27-6CAC-11D1-BAE7-00C04FD140D2}" "(Default)" "AFS Client Shell Extension"
-  WriteRegStr HKCR "CLSID\{DC515C27-6CAC-11D1-BAE7-00C04FD140D2}\InprocServer32" "(Default)" "$INSTDIR\Client\Program\afs_shl_ext.dll"
+  WriteRegStr HKCR "*\shellex\ContextMenuHandlers\AFS Client Shell Extension" "" "{DC515C27-6CAC-11D1-BAE7-00C04FD140D2}"
+  WriteRegStr HKCR "CLSID\{DC515C27-6CAC-11D1-BAE7-00C04FD140D2}" "" "AFS Client Shell Extension"
+  WriteRegStr HKCR "CLSID\{DC515C27-6CAC-11D1-BAE7-00C04FD140D2}\InprocServer32" "" "$INSTDIR\Client\Program\afs_shl_ext.dll"
   WriteRegStr HKCR "CLSID\{DC515C27-6CAC-11D1-BAE7-00C04FD140D2}\InprocServer32" "ThreadingModel" "Apartment"
-  WriteRegStr HKCR "FOLDER\shellex\ContextMenuHandlers\AFS Client Shell Extension" "(Default)" "{DC515C27-6CAC-11D1-BAE7-00C04FD140D2}"
+  WriteRegStr HKCR "FOLDER\shellex\ContextMenuHandlers\AFS Client Shell Extension" "" "{DC515C27-6CAC-11D1-BAE7-00C04FD140D2}"
+  WriteRegStr HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Approved" "{DC515C27-6CAC-11D1-BAE7-00C04FD140D2}" "AFS Client Shell Extension"
   
   ; AFS Reg entries
   DeleteRegKey HKLM "${AFS_REGKEY_ROOT}\AFS Client\CurrentVersion"
-  WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Client\CurrentVersion" "VersionString" ${MUI_VERSION}
+  WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Client\CurrentVersion" "VersionString" ${AFS_VERSION}
   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Client\CurrentVersion" "Title" "AFS Client"
   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Client\CurrentVersion" "Description" "AFS Client"
   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Client\CurrentVersion" "PathName" "$INSTDIR\Client\Program"
   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Client\CurrentVersion" "Software Type" "File System"
-  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Client\CurrentVersion" "MajorVersion" ${MUI_MAJORVERSION}
-  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Client\CurrentVersion" "MinorVersion" ${MUI_MINORVERSION}
-  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Client\CurrentVersion" "PatchLevel" ${MUI_PATCHLEVEL}
-  WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Client\${MUI_VERSION}" "VersionString" ${MUI_VERSION}
-  WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Client\${MUI_VERSION}" "Title" "AFS Client"
-  WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Client\${MUI_VERSION}" "Description" "AFS Client"
-  WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Client\${MUI_VERSION}" "Software Type" "File System"
-  WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Client\${MUI_VERSION}" "PathName" "$INSTDIR\Client\Program"
-  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Client\${MUI_VERSION}" "MajorVersion" ${MUI_MAJORVERSION}
-  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Client\${MUI_VERSION}" "MinorVersion" ${MUI_MINORVERSION}
-  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Client\${MUI_VERSION}" "PatchLevel" ${MUI_PATCHLEVEL}
-
-  ; Daemon entries
-  WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon" "(Default)" ""
-  WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\NetworkProvider" "AuthentProviderPath" "$INSTDIR\Client\Program\afslogon.dll"
-  WriteRegDWORD HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\NetworkProvider" "Class" 2
-  WriteRegDWORD HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\NetworkProvider" "LogonOptions" 0
-  WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\NetworkProvider" "LogonScript" "$INSTDIR\Client\Program\afscreds.exe -:%s -x"
-  WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\NetworkProvider" "Name" "OpenAFSDaemon"
-  WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\NetworkProvider" "ProviderPath" "$INSTDIR\Client\Program\afslogon.dll"
-   
+  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Client\CurrentVersion" "MajorVersion" ${AFS_MAJORVERSION}
+  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Client\CurrentVersion" "MinorVersion" ${AFS_MINORVERSION}
+  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Client\CurrentVersion" "PatchLevel" ${AFS_PATCHLEVEL}
+  WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Client\${AFS_VERSION}" "VersionString" ${AFS_VERSION}
+  WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Client\${AFS_VERSION}" "Title" "AFS Client"
+  WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Client\${AFS_VERSION}" "Description" "AFS Client"
+  WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Client\${AFS_VERSION}" "Software Type" "File System"
+  WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Client\${AFS_VERSION}" "PathName" "$INSTDIR\Client\Program"
+  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Client\${AFS_VERSION}" "MajorVersion" ${AFS_MAJORVERSION}
+  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Client\${AFS_VERSION}" "MinorVersion" ${AFS_MINORVERSION}
+  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Client\${AFS_VERSION}" "PatchLevel" ${AFS_PATCHLEVEL}
+!ifdef DEBUG
+  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Client\CurrentVersion" "Debug" 1
+  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Client\${AFS_VERSION}" "Debug" 1
+!else
+   ; Delete the DEBUG string
+   DeleteRegValue HKLM "${AFS_REGKEY_ROOT}\AFS Client\CurrentVersion" "Debug"
+   DeleteRegValue HKLM "${AFS_REGKEY_ROOT}\AFS Client\${AFS_VERSION}" "Debug"
+!endif
+   ; Set network settings
+  WriteRegDWORD HKLM "SYSTEM\CurrentControlSet\Services\NetBT\Parameters" "SmbDeviceEnabled" 0
+  
   ;Write start menu entries
   CreateDirectory "$SMPROGRAMS\OpenAFS\Client"
-  CreateShortCut '"$SMPROGRAMS\OpenAFS\Uninstall OpenAFS.lnk"' '"$INSTDIR\Uninstall.exe"'
-  CreateShortCut '"$SMPROGRAMS\OpenAFS\Client\Authentication.lnk"' '"$INSTDIR\Client\Program\afscreds.exe"'
-  CreateShortCut '"$SMSTARTUP\AFS Credentials.lnk"' '"$INSTDIR\Client\Program\afscreds.exe"'
+  CreateShortCut "$SMPROGRAMS\OpenAFS\Uninstall OpenAFS.lnk" "$INSTDIR\Uninstall.exe"
+  CreateShortCut "$SMPROGRAMS\OpenAFS\Client\Authentication.lnk" "$INSTDIR\Client\Program\afscreds.exe" 
+  CreateShortCut "$SMSTARTUP\AFS Credentials.lnk" "$INSTDIR\Client\Program\afscreds.exe" 
 
   Push "$INSTDIR\Client\Program"
   Call AddToPath
   Push "$INSTDIR\Common"
   Call AddToPath
   
+!ifdef INSTALL_KFW
+  ; Add kfw to path too
+  Push "$INSTDIR\kfw\bin"
+  Call AddToPath
+!endif
+   
   ; Create the AFS service
-  GetTempFileName $R0
-  File /oname=$R0 "${AFS_WININSTALL_DIR}\Service.exe"
-  nsExec::Exec '$R0 TransarcAFSDaemon "$INSTDIR\Client\Program\afsd_service.exe" "OpenAFS Client Service"'
-  Delete $R0
+  SetOutPath "$INSTDIR\Common"
+  File "${AFS_WININSTALL_DIR}\Service.exe"
+  nsExec::Exec "net stop TransarcAFSDaemon"
+  ;IMPORTANT!  If we are not refreshing the config files, do NOT remove the service
+  ;Don't re-install because it must be present or we wouldn't have passed the Reg check
+  ReadRegStr $R2 HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon" "Cell"
+  StrCmp $R2 "" +1 skipremove
+  nsExec::Exec '$INSTDIR\Common\Service.exe u TransarcAFSDaemon'
+  nsExec::Exec '$INSTDIR\Common\Service.exe TransarcAFSDaemon "$INSTDIR\Client\Program\afsd_service.exe" "OpenAFS Client Service"'
+skipremove:
+  Delete "$INSTDIR\Common\service.exe"
+
+  ; Daemon entries
+  WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon" "(Default)" ""
+  WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\NetworkProvider" "AuthentProviderPath" "$INSTDIR\Client\Program\afslogon.dll"
+  WriteRegDWORD HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\NetworkProvider" "Class" 2
+  ReadINIStr $R0 $1 "Field 7" "State"
+  ReadINIStr $R1 $1 "Field 9" "State"
+  ; Complicated way to do $R1 = ($R1 *2) + $R0
+  IntOp $R2 $R1 * 2
+  IntOp $R1 $R2 + $R0
+  WriteRegDWORD HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\NetworkProvider" "LogonOptions" $R1
+  WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\NetworkProvider" "LogonScript" "$INSTDIR\Client\Program\afscreds.exe -:%s -x"
+  WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\NetworkProvider" "Name" "OpenAFSDaemon"
+  WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\NetworkProvider" "ProviderPath" "$INSTDIR\Client\Program\afslogon.dll"
 
   ;Write cell name
   ReadINIStr $R0 $1 "Field 2" "State"
   WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\Parameters" "Cell" $R0
+  ReadINIStr $R0 $1 "Field 3" "State"
   WriteRegDWORD HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\Parameters" "ShowTrayIcon" 1
+  WriteRegDWORD HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\Parameters" "SecurityLevel" $R0
+  ReadINIStr $R0 $1 "Field 5" "State"  
+  WriteRegDWORD HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\Parameters" "FreelanceClient" $R0
+  WriteRegDWORD HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\Parameters" "UseDNS" 0
+  SetRebootFlag true
   
   WriteUninstaller "$INSTDIR\Uninstall.exe"
   
@@ -484,13 +794,24 @@ SectionEnd
 
 ;------------------------
 ; OpenAFS SERVER  
-Section "AFS Server" SecServer
+Section "AFS Server" secServer
 
   SetShellVarContext all
+  ; Stop any running services or we can't replace the files
+  ; Stop the running processes
+  ;GetTempFileName $R0
+  ;File /oname=$R0 "${AFS_WININSTALL_DIR}\Killer.exe"   ; Might not have the MSVCR71.DLL file to run
+  ;nsExec::Exec '$R0 afscreds.exe'
+!IFDEF INSTALL_KFW
+  ;nsExec::Exec '$R0 krbcc32s.exe'
+!ENDIF
+
+  nsExec::Exec "net stop TransarcAFSDaemon"
+  nsExec::Exec "net stop TransarcAFSServer"
 
   CreateDirectory "$INSTDIR\Server\usr\afs\etc"
   CreateDirectory "$INSTDIR\Server\usr\afs\local"
-  CreateDirectory "$INSTDIR\Server\usr\afs\logs"
+  CreateDirectory "$INSTDIR\Server\usr\afs\etc\logs"
   
   SetOutPath "$INSTDIR\Server\usr\afs\bin"  
   File "${AFS_SERVER_BUILDDIR}\afskill.exe"
@@ -509,6 +830,25 @@ Section "AFS Server" SecServer
   File "${AFS_SERVER_BUILDDIR}\vlserver.exe"
   File "${AFS_SERVER_BUILDDIR}\volinfo.exe"
   File "${AFS_SERVER_BUILDDIR}\volserver.exe"
+
+!ifdef DEBUG
+  File "${AFS_SERVER_BUILDDIR}\afskill.pdb"
+  File "${AFS_SERVER_BUILDDIR}\afssvrcfg.pdb"
+  File "${AFS_SERVER_BUILDDIR}\bosctlsvc.pdb"
+  File "${AFS_SERVER_BUILDDIR}\bosserver.pdb"
+  File "${AFS_SERVER_BUILDDIR}\buserver.pdb"
+  File "${AFS_ETC_BUILDDIR}\butc.pdb"
+  File "${AFS_SERVER_BUILDDIR}\fileserver.pdb"
+  File "${AFS_ETC_BUILDDIR}\fms.pdb"
+  File "${AFS_SERVER_BUILDDIR}\kaserver.pdb"
+  File "${AFS_SERVER_BUILDDIR}\ptserver.pdb"
+  File "${AFS_SERVER_BUILDDIR}\salvager.pdb"
+  File "${AFS_SERVER_BUILDDIR}\upclient.pdb"
+  File "${AFS_SERVER_BUILDDIR}\upserver.pdb"
+  File "${AFS_SERVER_BUILDDIR}\vlserver.pdb"
+  File "${AFS_SERVER_BUILDDIR}\volinfo.pdb"
+  File "${AFS_SERVER_BUILDDIR}\volserver.pdb"
+!endif
  
  ;AFS Server common files
  SetOutPath "$INSTDIR\Common"
@@ -517,38 +857,68 @@ Section "AFS Server" SecServer
  File "${AFS_SERVER_BUILDDIR}\afscfgadmin.dll"
  File "${AFS_SERVER_BUILDDIR}\afskasadmin.dll"
  File "${AFS_SERVER_BUILDDIR}\afsptsadmin.dll"
+
+!ifdef DEBUG
+ File "${AFS_SERVER_BUILDDIR}\afsvosadmin.pdb"
+ File "${AFS_SERVER_BUILDDIR}\afsbosadmin.pdb"
+ File "${AFS_SERVER_BUILDDIR}\afscfgadmin.pdb"
+ File "${AFS_SERVER_BUILDDIR}\afskasadmin.pdb"
+ File "${AFS_SERVER_BUILDDIR}\afsptsadmin.pdb"
+!endif
  SetOutPath "$INSTDIR\Common"
- File "${AFS_WININSTALL_DIR}\Msvcr71.dll"
    Call AFSLangFiles
    
+   SetOutPath "$SYSDIR"
+   File "${AFS_SERVER_BUILDDIR}\afsserver.cpl"
+
+!ifdef DEBUG
+   File "${AFS_SERVER_BUILDDIR}\afsserver.pdb"
+!endif
+   
   ;Store install folder
   WriteRegStr HKCU "${AFS_REGKEY_ROOT}\AFS Server" "" $INSTDIR
   
   DeleteRegKey HKLM "${AFS_REGKEY_ROOT}\AFS Server\CurrentVersion"
-  WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Server\CurrentVersion" "VersionString" ${MUI_VERSION}
+  WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Server\CurrentVersion" "VersionString" ${AFS_VERSION}
   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Server\CurrentVersion" "Title" "AFS Server"
   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Server\CurrentVersion" "Description" "AFS Server for Windows"
   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Server\CurrentVersion" "PathName" "$INSTDIR\Server"
   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Server\CurrentVersion" "Software Type" "File System"
-  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Server\CurrentVersion" "MajorVersion" ${MUI_MAJORVERSION}
-  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Server\CurrentVersion" "MinorVersion" ${MUI_MINORVERSION}
-  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Server\CurrentVersion" "PatchLevel" ${MUI_PATCHLEVEL}
-  WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Server\${MUI_VERSION}" "VersionString" ${MUI_VERSION}
-  WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Server\${MUI_VERSION}" "Title" "AFS Server"
-  WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Server\${MUI_VERSION}" "Description" "AFS Server for Windows"
-  WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Server\${MUI_VERSION}" "Software Type" "File System"
-  WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Server\${MUI_VERSION}" "PathName" "$INSTDIR\Server"
-  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Server\${MUI_VERSION}" "MajorVersion" ${MUI_MAJORVERSION}
-  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Server\${MUI_VERSION}" "MinorVersion" ${MUI_MINORVERSION}
-  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Server\${MUI_VERSION}" "PatchLevel" ${MUI_PATCHLEVEL}
-
+  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Server\CurrentVersion" "MajorVersion" ${AFS_MAJORVERSION}
+  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Server\CurrentVersion" "MinorVersion" ${AFS_MINORVERSION}
+  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Server\CurrentVersion" "PatchLevel" ${AFS_PATCHLEVEL}
+  WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Server\${AFS_VERSION}" "VersionString" ${AFS_VERSION}
+  WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Server\${AFS_VERSION}" "Title" "AFS Server"
+  WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Server\${AFS_VERSION}" "Description" "AFS Server for Windows"
+  WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Server\${AFS_VERSION}" "Software Type" "File System"
+  WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Server\${AFS_VERSION}" "PathName" "$INSTDIR\Server"
+  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Server\${AFS_VERSION}" "MajorVersion" ${AFS_MAJORVERSION}
+  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Server\${AFS_VERSION}" "MinorVersion" ${AFS_MINORVERSION}
+  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Server\${AFS_VERSION}" "PatchLevel" ${AFS_PATCHLEVEL}
+!ifdef DEBUG
+  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Server\CurrentVersion" "Debug" 1
+  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Server\${AFS_VERSION}" "Debug" 1
+!else
+   ; Delete the DEBUG string
+   DeleteRegValue HKLM "${AFS_REGKEY_ROOT}\AFS Server\CurrentVersion" "Debug"
+   DeleteRegValue HKLM "${AFS_REGKEY_ROOT}\AFS Server\${AFS_VERSION}" "Debug"
+!endif
   ; Install the service
-  GetTempFileName $R0
-  File /oname=$R0 "${AFS_WININSTALL_DIR}\Service.exe"
-  nsExec::Exec '$R0 TransarcAFSServer "$INSTDIR\Server\usr\afs\bin\bosctlsvc.exe" "OpenAFS AFS Server"'
-  Delete $R0
+  SetOutPath "$INSTDIR\Common"
+  File "${AFS_WININSTALL_DIR}\Service.exe"
+!ifdef DEBUG
+  File "${AFS_WININSTALL_DIR}\Service.pdb"
+!endif
+  ;Don't want to whack existing settings... Make users un-install and then re-install if they want that
+  ;nsExec::Exec '$INSTDIR\Common\service.exe u TransarcAFSServer'
+  nsExec::Exec '$INSTDIR\Common\service.exe TransarcAFSServer "$INSTDIR\Server\usr\afs\bin\bosctlsvc.exe" "OpenAFS AFS Server"'
+  Delete "$INSTDIR\Common\service.exe"
+  
+  CreateDirectory "$SMPROGRAMS\OpenAFS\Server"
+  CreateShortCut "$SMPROGRAMS\OpenAFS\Server\Server Configuration.lnk" "$INSTDIR\Server\usr\afs\bin\afssvrcfg.exe"
   
-  CreateShortCut "$SMPROGRAMS\OpenAFS\Server\Configuration Wizard.lnk" '"$INSTDIR\Server\usr\afs\bin\afssvrcfg.exe" /wizard'
+  ; Make the server config wizard auto-start on bootup
+  WriteRegStr HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce" "AFS Server Wizard" '"$INSTDIR\Server\usr\afs\bin\afssvrcfg.exe" /wizard"'
   
   WriteUninstaller "$INSTDIR\Uninstall.exe"
 
@@ -557,7 +927,7 @@ SectionEnd
 
 ;----------------------------
 ; OpenAFS Control Center
-Section "AFS Control Center" SecControl
+Section "AFS Control Center" secControl
 
   SetShellVarContext all
 
@@ -566,31 +936,61 @@ Section "AFS Control Center" SecControl
   File "${AFS_SERVER_BUILDDIR}\TaAfsAdmSvr.exe"
   File "${AFS_SERVER_BUILDDIR}\TaAfsServerManager.exe"
    
+!ifdef DEBUG
+  File "${AFS_SERVER_BUILDDIR}\TaAfsAccountManager.pdb"
+  File "${AFS_SERVER_BUILDDIR}\TaAfsAdmSvr.pdb"
+  File "${AFS_SERVER_BUILDDIR}\TaAfsServerManager.pdb"
+!endif
+
  ;AFS Server common files
  Call AFSCommon.Install
  Call AFSLangFiles
  SetOutPath "$INSTDIR\Common"
- File "${AFS_SERVER_BUILDDIR}\afsvosadmin.dll"
- File "${AFS_SERVER_BUILDDIR}\afsbosadmin.dll"
- File "${AFS_SERVER_BUILDDIR}\afscfgadmin.dll"
- File "${AFS_SERVER_BUILDDIR}\afskasadmin.dll"
- File "${AFS_SERVER_BUILDDIR}\afsptsadmin.dll"
 
   SetOutPath "$INSTDIR\Common"
-  File "${AFS_WININSTALL_DIR}\Msvcr71.dll"
-      
+!IFDEF DEBUG
+!IFDEF CL_1310
+  File "${AFS_WININSTALL_DIR}\msvcr71d.dll"
+  File "${AFS_WININSTALL_DIR}\msvcr71d.pdb"
+!ELSE
+!IFDEF CL_1300
+  File "${AFS_WININSTALL_DIR}\msvcrtd.dll"
+  File "${AFS_WININSTALL_DIR}\msvcrtd.pdb"
+!ELSE
+  File "${AFS_WININSTALL_DIR}\msvcrtd.dll"
+  File "${AFS_WININSTALL_DIR}\msvcrtd.pdb"
+!ENDIF
+!ENDIF
+!ELSE
+!IFDEF CL_1310
+  File "${AFS_WININSTALL_DIR}\msvcr71.dll"
+!ELSE
+!IFDEF CL_1300
+  File "${AFS_WININSTALL_DIR}\msvcrt.dll"
+!ELSE
+  File "${AFS_WININSTALL_DIR}\msvcrt.dll"
+!ENDIF
+!ENDIF
+!ENDIF
    
    ;Store install folder
   WriteRegStr HKCU "${AFS_REGKEY_ROOT}\AFS Control Center\CurrentVersion" "PathName" $INSTDIR
-  WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\CurrentVersion" "VersionString" ${MUI_VERSION}
-  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\CurrentVersion" "MajorVersion" ${MUI_MAJORVERSION}
-  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\CurrentVersion" "MinorVersion" ${MUI_MINORVERSION}
-  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\CurrentVersion" "PatchLevel" ${MUI_PATCHLEVEL}
-  WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\${MUI_VERSION}" "VersionString" ${MUI_VERSION}
-  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\${MUI_VERSION}" "MajorVersion" ${MUI_MAJORVERSION}
-  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\${MUI_VERSION}" "MinorVersion" ${MUI_MINORVERSION}
-  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\${MUI_VERSION}" "PatchLevel" ${MUI_PATCHLEVEL}
-  
+  WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\CurrentVersion" "VersionString" ${AFS_VERSION}
+  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\CurrentVersion" "MajorVersion" ${AFS_MAJORVERSION}
+  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\CurrentVersion" "MinorVersion" ${AFS_MINORVERSION}
+  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\CurrentVersion" "PatchLevel" ${AFS_PATCHLEVEL}
+  WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\${AFS_VERSION}" "VersionString" ${AFS_VERSION}
+  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\${AFS_VERSION}" "MajorVersion" ${AFS_MAJORVERSION}
+  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\${AFS_VERSION}" "MinorVersion" ${AFS_MINORVERSION}
+  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\${AFS_VERSION}" "PatchLevel" ${AFS_PATCHLEVEL}
+!ifdef DEBUG
+  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\CurrentVersion" "Debug" 1
+  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\${AFS_VERSION}" "Debug" 1
+!else
+   ; Delete the DEBUG string
+   DeleteRegValue HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\CurrentVersion" "Debug"
+   DeleteRegValue HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\${AFS_VERSION}" "Debug"
+!endif
 
   ;Write start menu entries
   CreateDirectory "$SMPROGRAMS\OpenAFS\Control Center"
@@ -604,14 +1004,16 @@ SectionEnd
 
 ;----------------------------
 ; OpenAFS Supplemental Documentation
-Section "Supplemental Documentation" SecDocs
+Section "Supplemental Documentation" secDocs
   SetShellVarContext all
 
    StrCmp $LANGUAGE ${LANG_ENGLISH} DoEnglish
    StrCmp $LANGUAGE ${LANG_GERMAN} DoGerman
    StrCmp $LANGUAGE ${LANG_SPANISH} DoSpanish
    StrCmp $LANGUAGE ${LANG_JAPANESE} DoJapanese
-   ;StrCmp $LANGUAGE ${LANG_KOREAN} DoKorean
+!ifndef v2.0b3
+   StrCmp $LANGUAGE ${LANG_KOREAN} DoKorean
+!endif
    StrCmp $LANGUAGE ${LANG_PORTUGUESEBR} DoPortugueseBR
    StrCmp $LANGUAGE ${LANG_SIMPCHINESE} DoSimpChinese
    StrCmp $LANGUAGE ${LANG_TRADCHINESE} DoTradChinese
@@ -635,7 +1037,7 @@ DoGerman:
    File "..\..\doc\install\Documentation\de_DE\README.TXT"
    SetOutPath "$INSTDIR\Documentation\html"
    File "..\..\doc\install\Documentation\de_DE\html\*"
-   ;SetOutPath "$INSTDIR\Documentation\html\CmdRef"
+   SetOutPath "$INSTDIR\Documentation\html\CmdRef"
    ;File "..\..\doc\install\Documentation\de_DE\html\CmdRef\*"
    SetOutPath "$INSTDIR\Documentation\html\InstallGd"
    File "..\..\doc\install\Documentation\de_DE\html\InstallGd\*"
@@ -650,13 +1052,13 @@ DoSpanish:
    File "..\..\doc\install\Documentation\es_ES\README.TXT"
    SetOutPath "$INSTDIR\Documentation\html"
    File "..\..\doc\install\Documentation\es_ES\html\*"
-   ;SetOutPath "$INSTDIR\Documentation\html\CmdRef"
+   SetOutPath "$INSTDIR\Documentation\html\CmdRef"
    ;File "..\..\doc\install\Documentation\es_ES\html\CmdRef\*"
    SetOutPath "$INSTDIR\Documentation\html\InstallGd"
-   File "..\..\doc\install\Documentation\es_ES\html\InstallGd\*"
-   ;SetOutPath "$INSTDIR\Documentation\html\ReleaseNotes"
+   ;File "..\..\doc\install\Documentation\es_ES\html\InstallGd\*"
+   SetOutPath "$INSTDIR\Documentation\html\ReleaseNotes"
    ;File "..\..\doc\install\Documentation\es_ES\html\ReleaseNotes\*"
-   ;SetOutPath "$INSTDIR\Documentation\html\SysAdminGd"
+   SetOutPath "$INSTDIR\Documentation\html\SysAdminGd"
    ;File "..\..\doc\install\Documentation\es_ES\html\SysAdminGd\*"
    goto DoneLanguage
 
@@ -670,9 +1072,9 @@ DoJapanese:
    SetOutPath "$INSTDIR\Documentation\html\InstallGd"
    File "..\..\doc\install\Documentation\ja_JP\html\InstallGd\*"
    SetOutPath "$INSTDIR\Documentation\html\ReleaseNotes"
-   File "..\..\doc\install\Documentation\ja_JP\html\ReleaseNotes\*"
+   ;File "..\..\doc\install\Documentation\ja_JP\html\ReleaseNotes\*"
    SetOutPath "$INSTDIR\Documentation\html\SysAdminGd"
-   File "..\..\doc\install\Documentation\ja_JP\html\SysAdminGd\*"
+   ;File "..\..\doc\install\Documentation\ja_JP\html\SysAdminGd\*"
    goto DoneLanguage
    
 DoKorean:
@@ -739,14 +1141,14 @@ DoTradChinese:
 DoneLanguage:
    ;Store install folder
   WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Supplemental Documentation" "" $INSTDIR
-  WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Supplemental Documentation\CurrentVersion" "VersionString" ${MUI_VERSION}
-  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Supplemental Documentation\CurrentVersion" "MajorVersion" ${MUI_MAJORVERSION}
-  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Supplemental Documentation\CurrentVersion" "MinorVersion" ${MUI_MINORVERSION}
-  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Supplemental Documentation\CurrentVersion" "PatchLevel" ${MUI_PATCHLEVEL}
-  WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Supplemental Documentation\${MUI_VERSION}" "VersionString" ${MUI_VERSION}
-  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Supplemental Documentation\${MUI_VERSION}" "MajorVersion" ${MUI_MAJORVERSION}
-  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Supplemental Documentation\${MUI_VERSION}" "MinorVersion" ${MUI_MINORVERSION}
-  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Supplemental Documentation\${MUI_VERSION}" "PatchLevel" ${MUI_PATCHLEVEL}
+  WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Supplemental Documentation\CurrentVersion" "VersionString" ${AFS_VERSION}
+  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Supplemental Documentation\CurrentVersion" "MajorVersion" ${AFS_MAJORVERSION}
+  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Supplemental Documentation\CurrentVersion" "MinorVersion" ${AFS_MINORVERSION}
+  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Supplemental Documentation\CurrentVersion" "PatchLevel" ${AFS_PATCHLEVEL}
+  WriteRegStr HKLM "${AFS_REGKEY_ROOT}\AFS Supplemental Documentation\${AFS_VERSION}" "VersionString" ${AFS_VERSION}
+  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Supplemental Documentation\${AFS_VERSION}" "MajorVersion" ${AFS_MAJORVERSION}
+  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Supplemental Documentation\${AFS_VERSION}" "MinorVersion" ${AFS_MINORVERSION}
+  WriteRegDWORD HKLM "${AFS_REGKEY_ROOT}\AFS Supplemental Documentation\${AFS_VERSION}" "PatchLevel" ${AFS_PATCHLEVEL}
 
   ; Write start menu shortcut
   SetOutPath "$SMPROGRAMS\OpenAFS"
@@ -771,22 +1173,40 @@ Function .onInit
   ; Set the default install options
        Push $0
 
+   Call IsUserAdmin
+   Pop $R0
+   StrCmp $R0 "true" contInstall
+
+   MessageBox MB_OK|MB_ICONSTOP|MB_TOPMOST "You must be an administrator of this machine to install this software."
+   Abort
+   
+contInstall:
+   ; Our logic should be like this.
+   ;     1) If no AFS components are installed, we do a clean install with default options. (Client/Docs)
+   ;     2) If existing modules are installed, we keep them selected
+   ;     3) If it is an upgrade, we set the text accordingly, else we mark it as a re-install
+   ;  TODO: Downgrade?
+   Call IsAnyAFSInstalled
+   Pop $R0
+   StrCmp $R0 "0" DefaultOptions
+   
    Call ShouldClientInstall
    Pop $R2
    
    StrCmp $R2 "0" NoClient
+   StrCmp $R2 "1" ReinstallClient
    StrCmp $R2 "2" UpgradeClient
+   StrCmp $R3 "3" DowngradeClient
    
-       StrCpy $1 ${secClient} ; Gotta remember which section we are at now...
        SectionGetFlags ${secClient} $0
        IntOp $0 $0 | ${SF_SELECTED}
        SectionSetFlags ${secClient} $0
-       # !insertmacro SelectSection ${secClient}
+    ;# !insertmacro SelectSection ${secClient}
    goto skipClient
 NoClient:
-       StrCpy $1 ${secClient} ; Gotta remember which section we are at now...
+       ;StrCpy $1 ${secClient} ; Gotta remember which section we are at now...
        SectionGetFlags ${secClient} $0
-       IntOp $0 $0 | ${SECTION_OFF}
+       IntOp $0 $0 & ${SECTION_OFF}
        SectionSetFlags ${secClient} $0
    goto skipClient
 UpgradeClient:
@@ -795,47 +1215,157 @@ UpgradeClient:
        SectionSetFlags ${secClient} $0
    SectionSetText ${secClient} $(UPGRADE_CLIENT)
    goto skipClient
+ReinstallClient:
+       SectionGetFlags ${secClient} $0
+       IntOp $0 $0 | ${SF_SELECTED}
+       SectionSetFlags ${secClient} $0
+   SectionSetText ${secClient} $(REINSTALL_CLIENT)
+   goto skipClient
+DowngradeClient:
+       SectionGetFlags ${secClient} $0
+       IntOp $0 $0 | ${SF_SELECTED}
+       SectionSetFlags ${secClient} $0
+   SectionSetText ${secClient} $(REINSTALL_CLIENT)
+   goto skipClient
 
    
 skipClient:   
    
-   
-   Call IsServerInstalled
+   Call ShouldServerInstall
    Pop $R2
    StrCmp $R2 "0" NoServer
+   StrCmp $R2 "1" ReinstallServer
+   StrCmp $R2 "2" UpgradeServer
+   StrCmp $R2 "3" DowngradeServer
    
        SectionGetFlags ${secServer} $0
-       IntOp $0 $0 & ${SF_SELECTED}
+       IntOp $0 $0 | ${SF_SELECTED}
        SectionSetFlags ${secServer} $0
-       # !insertmacro UnselectSection ${secServer}
+       ;# !insertmacro UnselectSection ${secServer}
+   goto skipServer
+
+UpgradeServer:
+   SectionGetFlags ${secServer} $0
+   IntOp $0 $0 | ${SF_SELECTED}
+   SectionSetFlags ${secServer} $0
+   SectionSetText ${secServer} $(UPGRADE_SERVER)
+   goto skipServer
+
+ReinstallServer:
+   SectionGetFlags ${secServer} $0
+   IntOp $0 $0 | ${SF_SELECTED}
+   SectionSetFlags ${secServer} $0
+   SectionSetText ${secServer} $(REINSTALL_SERVER)
    goto skipServer
 
+DowngradeServer:
+   SectionGetFlags ${secServer} $0
+   IntOp $0 $0 | ${SF_SELECTED}
+   SectionSetFlags ${secServer} $0
+   SectionSetText ${secServer} $(REINSTALL_SERVER)
+   goto skipServer
+   
 NoServer:
        SectionGetFlags ${secServer} $0
        IntOp $0 $0 & ${SECTION_OFF}
        SectionSetFlags ${secServer} $0
-       # !insertmacro UnselectSection ${secServer}
+       ;# !insertmacro UnselectSection ${secServer}
+   goto skipServer
+   
+skipServer:
+   ; Check control center
+   Call IsControlInstalled
+   Pop $R2
+   StrCmp $R2 "0" NoControl
+
+       SectionGetFlags ${secControl} $0
+       IntOp $0 $0 | ${SF_SELECTED}
+       SectionSetFlags ${secControl} $0
+   goto CheckDocs
+   
+NoControl:   
+       SectionGetFlags ${secControl} $0
+       IntOp $0 $0 & ${SECTION_OFF}
+       SectionSetFlags ${secControl} $0
+       ;# !insertmacro UnselectSection ${secControl}
+
+CheckDocs:
+   ; Check Documentation
+   Call IsDocumentationInstalled
+   Pop $R2
+   StrCmp $R2 "0" NoDocs
+       SectionGetFlags ${secDocs} $0
+       IntOp $0 $0 | ${SF_SELECTED}
+       SectionSetFlags ${secDocs} $0
+   goto end
+   
+NoDocs:
+       SectionGetFlags ${secDocs} $0
+       IntOp $0 $0 & ${SECTION_OFF}
+       SectionSetFlags ${secDocs} $0
+   goto end
+   
+DefaultOptions:
+   ; Client Selected
+       SectionGetFlags ${secClient} $0
+       IntOp $0 $0 | ${SF_SELECTED}
+       SectionSetFlags ${secClient} $0
+
+   ; Server NOT selected
+       SectionGetFlags ${secServer} $0
+       IntOp $0 $0 & ${SECTION_OFF}
+       SectionSetFlags ${secServer} $0
    
-skipServer:   
+   ; Control Center NOT selected
        SectionGetFlags ${secControl} $0
        IntOp $0 $0 & ${SECTION_OFF}
        SectionSetFlags ${secControl} $0
-       # !insertmacro UnselectSection ${secControl}
+       ;# !insertmacro UnselectSection ${secControl}
 
+   ; Documentation selected
        SectionGetFlags ${secDocs} $0
        IntOp $0 $0 | ${SF_SELECTED}
        SectionSetFlags ${secDocs} $0
-       # !insertmacro UnselectSection ${secDocs}
+       ;# !insertmacro UnselectSection ${secDocs}
+   goto end
 
+end:
        Pop $0
   
+   Push $R0
+  
+  ; See if we can set a default installation path...
+  ReadRegStr $R0 HKLM "${AFS_REGKEY_ROOT}\AFS Client\CurrentVersion" "PathName"
+  StrCmp $R0 "" TryServer
+  Push $R0
+  Call GetParent
+  Call GetParent
+  Pop $R0
+  StrCpy $INSTDIR $R0
+  goto Nope
+  
+TryServer:
+  ReadRegStr $R0 HKLM "${AFS_REGKEY_ROOT}\AFS Server\CurrentVersion" "PathName"
+  StrCmp $R0 "" TryControl
+  Push $R0
+  Call GetParent
+  Pop $R0
+  StrCpy $INSTDIR $R0
+  goto Nope
+   
+TryControl:
+  ReadRegStr $R0 HKLM "${AFS_REGKEY_ROOT}\AFS Control Center\CurrentVersion" "PathName"
+  StrCmp $R0 "" Nope
+  StrCpy $INSTDIR $R0
   
+Nope:
+  Pop $R0
   
   GetTempFilename $0
   File /oname=$0 CellServPage.ini
   GetTempFilename $1
   File /oname=$1 AFSCell.ini
-   
+  ;File /oname=$1 ConfigURL.ini
   
 FunctionEnd
 
@@ -847,37 +1377,64 @@ FunctionEnd
 ; These are our cleanup functions
 Function .onInstFailed
 Delete $0
-
+Delete $1
 FunctionEnd
 
 Function .onInstSuccess
 Delete $0
-
+Delete $1
 FunctionEnd
 
 
 ;--------------------------------
 ;Descriptions
 
+!ifdef v2.0b3
 !insertmacro MUI_FUNCTIONS_DESCRIPTION_BEGIN
-  !insertmacro MUI_DESCRIPTION_TEXT ${SecServer} $(DESC_SecServer)
-  !insertmacro MUI_DESCRIPTION_TEXT ${SecClient} $(DESC_SecClient)
-  !insertmacro MUI_DESCRIPTION_TEXT ${SecControl} $(DESC_SecControl)
-  !insertmacro MUI_DESCRIPTION_TEXT ${SecDocs} $(DESC_SecDocs)
-!insertmacro MUI_FUNCTIONS_DESCRIPTION_END
+!else
+!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
+!endif
+  !insertmacro MUI_DESCRIPTION_TEXT ${secServer} $(DESC_secServer)
+  !insertmacro MUI_DESCRIPTION_TEXT ${secClient} $(DESC_secClient)
+  !insertmacro MUI_DESCRIPTION_TEXT ${secControl} $(DESC_secControl)
+  !insertmacro MUI_DESCRIPTION_TEXT ${secDocs} $(DESC_secDocs)
+!ifndef v2.0b4
+  !insertmacro MUI_FUNCTIONS_DESCRIPTION_END
+!else
+  !insertmacro MUI_FUNCTION_DESCRIPTION_END
+!endif
  
 ;--------------------------------
 ;Uninstaller Section
 
 Section "Uninstall"
+  ; Make sure the user REALLY wants to do this, unless they did a silent uninstall, in which case...let them!
+#ifdef v2.0b4
+  IfSilent StartRemove     ; New in v2.0b4
+#endif
+  MessageBox MB_YESNO "Are you sure you want to remove OpenAFS from this machine?" IDYES StartRemove
+  abort
+  
+StartRemove:
   
   SetShellVarContext all
+  ; Stop the running processes
+  GetTempFileName $R0
+  File /oname=$R0 "${AFS_WININSTALL_DIR}\Killer.exe"
+  nsExec::Exec '$R0 afscreds.exe'
+!IFDEF INSTALL_KFW
+  nsExec::Exec '$R0 krbcc32s.exe'
+!ENDIF
+
   ; Delete the AFS service
   GetTempFileName $R0
   File /oname=$R0 "${AFS_WININSTALL_DIR}\Service.exe"
   nsExec::Exec "net stop TransarcAFSDaemon"
   nsExec::Exec "net stop TransarcAFSServer"
   nsExec::Exec '$R0 u TransarcAFSDaemon'
+  ; After we stop the service, but before we delete it, we have to remove the volume data
+  ; This is because the storage locations are in the registry under the service key.
+  ; Call un.RemoveAFSVolumes
   nsExec::Exec '$R0 u TransarcAFSServer'
   Delete $R0
   
@@ -885,6 +1442,10 @@ Section "Uninstall"
   Call un.RemoveFromPath
   Push "$INSTDIR\Common"
   Call un.RemoveFromPath
+!ifdef INSTALL_KFW
+  Push "$INSTDIR\kfw\bin"
+  Call un.RemoveFromPath
+!endif
   
   ; Delete documentation
   Delete "$INSTDIR\Documentation\README.TXT"
@@ -894,34 +1455,132 @@ Section "Uninstall"
   Delete "$INSTDIR\Documentation\html\ReleaseNotes\*"
   Delete "$INSTDIR\Documentation\html\SysAdminGd\*"
 
-
+   Delete /REBOOTOK "$INSTDIR\Common\afs_config.exe"
+   Delete /REBOOTOK "$INSTDIR\Common\afs_shl_ext.dll"
+   Delete /REBOOTOK "$INSTDIR\Common\afsadminutil.dll"
+   Delete /REBOOTOK "$INSTDIR\Common\lib\afsauthent.dll"
+   Delete /REBOOTOK "$INSTDIR\Common\lib\afspthread.dll"
+   Delete /REBOOTOK "$INSTDIR\Common\lib\afsrpc.dll"
+   Delete /REBOOTOK "$INSTDIR\Common\afsclientadmin.dll"
+   Delete /REBOOTOK "$INSTDIR\Common\afsprocmgmt.dll"
+   Delete /REBOOTOK "$INSTDIR\Common\afsvosadmin.dll"
+   Delete /REBOOTOK "$INSTDIR\Common\TaAfsAppLib.dll"
+   Delete /REBOOTOK "$INSTDIR\Common\afsvosadmin.dll"
+   Delete /REBOOTOK "$INSTDIR\Common\afsbosadmin.dll"
+   Delete /REBOOTOK "$INSTDIR\Common\afscfgadmin.dll"
+   Delete /REBOOTOK "$INSTDIR\Common\afskasadmin.dll"
+   Delete /REBOOTOK "$INSTDIR\Common\afsptsadmin.dll"
+
+!IFDEF DEBUG
+   Delete /REBOOTOK "$INSTDIR\Common\afs_config.pdb"
+   Delete /REBOOTOK "$INSTDIR\Common\afs_shl_ext.pdb"
+   Delete /REBOOTOK "$INSTDIR\Common\afsadminutil.pdb"
+   Delete /REBOOTOK "$INSTDIR\Common\lib\afsauthent.pdb"
+   Delete /REBOOTOK "$INSTDIR\Common\lib\afspthread.pdb"
+   Delete /REBOOTOK "$INSTDIR\Common\lib\afsrpc.pdb"
+   Delete /REBOOTOK "$INSTDIR\Common\afsclientadmin.pdb"
+   Delete /REBOOTOK "$INSTDIR\Common\afsprocmgmt.pdb"
+   Delete /REBOOTOK "$INSTDIR\Common\afsvosadmin.pdb"
+   Delete /REBOOTOK "$INSTDIR\Common\TaAfsAppLib.pdb"
+   Delete /REBOOTOK "$INSTDIR\Common\afsvosadmin.pdb"
+   Delete /REBOOTOK "$INSTDIR\Common\afsbosadmin.pdb"
+   Delete /REBOOTOK "$INSTDIR\Common\afscfgadmin.pdb"
+   Delete /REBOOTOK "$INSTDIR\Common\afskasadmin.pdb"
+   Delete /REBOOTOK "$INSTDIR\Common\afsptsadmin.pdb"
+
+!IFDEF CL_1310
+   Delete /REBOOTOK "$INSTDIR\Common\msvcr71d.dll"
+   Delete /REBOOTOK "$INSTDIR\Common\msvcr71d.pdb"
+!ELSE
+   Delete /REBOOTOK "$INSTDIR\Common\msvcrtd.dll"
+   Delete /REBOOTOK "$INSTDIR\Common\msvcrtd.pdb"
+!ENDIF
+!ELSE
+!IFDEF CL_1310
+   Delete /REBOOTOK "$INSTDIR\Common\msvcr71.dll"
+!ELSE
+   Delete /REBOOTOK "$INSTDIR\Common\msvcrt.dll"
+!ENDIF
+!ENDIF
+  
+!ifdef v2.0b3
+   Call un.IsSilent
+   Pop $R1
+   StrCmp $R1 "/S" SkipAsk
+!else
+   IfSilent SkipAsk
+!endif
+;  IfFileExists "$WINDIR\afsdcell.ini" CellExists SkipDelAsk
+;  CellExists:
+  MessageBox MB_YESNO "Would you like to keep your configuration files?" IDYES SkipDel
+  SkipAsk:
   Delete "$WINDIR\afsdcell.ini"
+
+  Delete "$WINDIR\afsdsbmt.ini"
+; Only remove krb5.ini if KfW was installed
+!IFDEF INSTALL_KFW
+  Delete "$WINDIR\krb5.ini"
+!ENDIF
+  Delete "$WINDIR\afsdns.ini"
+  Delete "$WINDIR\afs_freelance.ini"
   
+  SkipDel:
+  Delete "$WINDIR\afsd_init.log"
   Delete "$INSTDIR\Uninstall.exe"
 
   ; Remove server
-  Delete "$INSTDIR\Server\usr\afs\bin\afskill.exe"
-  Delete "$INSTDIR\Server\usr\afs\bin\afssvrcfg.exe"
-  Delete "$INSTDIR\Server\usr\afs\bin\bosctlsvc.exe"
-  Delete "$INSTDIR\Server\usr\afs\bin\bosserver.exe"
-  Delete "$INSTDIR\Server\usr\afs\bin\buserver.exe"
-  Delete "$INSTDIR\Server\usr\afs\bin\butc.exe"
-  Delete "$INSTDIR\Server\usr\afs\bin\fileserver.exe"
-  Delete "$INSTDIR\Server\usr\afs\bin\fms.exe"
-  Delete "$INSTDIR\Server\usr\afs\bin\kaserver.exe"
-  Delete "$INSTDIR\Server\usr\afs\bin\ptserver.exe"
-  Delete "$INSTDIR\Server\usr\afs\bin\salvager.exe"
+  Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\afskill.exe"
+  Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\afssvrcfg.exe"
+  Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\bosctlsvc.exe"
+  Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\bosserver.exe"
+  Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\buserver.exe"
+  Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\butc.exe"
+  Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\fileserver.exe"
+  Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\fms.exe"
+  Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\kaserver.exe"
+  Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\ptserver.exe"
+  Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\salvager.exe"
   Delete "$INSTDIR\Server\usr\afs\bin\ServerUninst.dll"
-  Delete "$INSTDIR\Server\usr\afs\bin\upclient.exe"
-  Delete "$INSTDIR\Server\usr\afs\bin\upserver.exe"
-  Delete "$INSTDIR\Server\usr\afs\bin\vlserver.exe"
-  Delete "$INSTDIR\Server\usr\afs\bin\volinfo.exe"
-  Delete "$INSTDIR\Server\usr\afs\bin\volserver.exe"
-  RMDir "$INSTDIR\Server\usr\afs\bin"
+  Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\upclient.exe"
+  Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\upserver.exe"
+  Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\vlserver.exe"
+  Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\volinfo.exe"
+  Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\volserver.exe"
+
+!ifdef DEBUG
+  Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\afskill.pdb"
+  Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\afssvrcfg.pdb"
+  Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\bosctlsvc.pdb"
+  Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\bosserver.pdb"
+  Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\buserver.pdb"
+  Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\butc.pdb"
+  Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\fileserver.pdb"
+  Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\fms.pdb"
+  Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\kaserver.pdb"
+  Delete /REBOOTOK "$INSTDIR\Server\usr\afs\bin\ptserver.pdb"
+  Delete "$INSTDIR\Server\usr\afs\bin\salvager.pdb"
+  Delete "$INSTDIR\Server\usr\afs\bin\ServerUninst.pdb"
+  Delete "$INSTDIR\Server\usr\afs\bin\upclient.pdb"
+  Delete "$INSTDIR\Server\usr\afs\bin\upserver.pdb"
+  Delete "$INSTDIR\Server\usr\afs\bin\vlserver.pdb"
+  Delete "$INSTDIR\Server\usr\afs\bin\volinfo.pdb"
+  Delete "$INSTDIR\Server\usr\afs\bin\volserver.pdb"
+!endif
+
+  RMDir /r "$INSTDIR\Server\usr\afs\bin"
+  RmDir /r "$INSTDIR\Server\usr\afs\etc\logs"
   RmDir /r "$INSTDIR\Server\usr\afs\etc"
   RmDir /r "$INSTDIR\Server\usr\afs\local"
   RMDIR /r "$INSTDIR\Server\usr\afs\logs"
   
+  Delete /REBOOTOK "$SYSDIR\afsserver.cpl"
+  Delete /REBOOTOK "$SYSDIR\afs_cpa.cpl"
+
+!ifdef DEBUG
+  Delete /REBOOTOK "$SYSDIR\afsserver.pdb"
+  Delete /REBOOTOK "$SYSDIR\afs_cpa.pdb"
+!endif
+  
   RMDir /r "$INSTDIR\Documentation\html\CmdRef"
   RMDir /r "$INSTDIR\Documentation\html\InstallGd"
   RMDir /r "$INSTDIR\Documentation\html\ReleaseNotes"
@@ -930,21 +1589,65 @@ Section "Uninstall"
   
   RMDir "$INSTDIR\Documentation"
   ; Delete DOC short cut
-  RMDir /r "$INSTDIR\Client\Program"
-  RMDir /r "$INSTDIR\Client"
-  RMDir /r "$INSTDIR\Common"
+  Delete /REBOOTOK "$INSTDIR\Client\Program\afscreds.exe"
+
+!ifdef DEBUG
+  Delete /REBOOTOK "$INSTDIR\Client\Program\afscreds.pdb"
+!endif
+
+  Delete /REBOOTOK "$INSTDIR\Client\Program\*"
+  Delete /REBOOTOK "$INSTDIR\Client\Program\Include\*"
+  Delete /REBOOTOK "$INSTDIR\Client\Program\Include\afs\*"
+  Delete /REBOOTOK "$INSTDIR\Client\Program\Include\rx\*"
+  Delete /REBOOTOK "$INSTDIR\Client\Program\Sample\*"
+  RMDir  "$INSTDIR\Client\Program\Sample"
+  RMDir  "$INSTDIR\Client\Program\Include\afs"
+  RMDir  "$INSTDIR\Client\Program\Include\rx"
+  RMDir  "$INSTDIR\Client\Program\Include"
+  RMDir  "$INSTDIR\Client\Program"
+  RMDir  "$INSTDIR\Client"
+  
+!IFDEF DEBUG
+!IFDEF CL_1310
+  Delete /REBOOTOK "$INSTDIR\Common\msvcr71d.dll"
+  Delete /REBOOTOK "$INSTDIR\Common\msvcr71d.pdb"
+!ELSE
+  Delete /REBOOTOK "$INSTDIR\Common\msvcrtd.dll"
+  Delete /REBOOTOK "$INSTDIR\Common\msvcrtd.pdb"
+!ENDIF
+!ELSE
+!IFDEF CL_1310
+  Delete /REBOOTOK "$INSTDIR\Common\msvcr71.dll"
+!ELSE
+  Delete /REBOOTOK "$INSTDIR\Common\msvcrt.dll"
+!ENDIF
+!ENDIF
+  Delete /REBOOTOK "$INSTDIR\Common\*"
+  RMDir "$INSTDIR\Common"
+
+!ifdef INSTALL_KFW
+  ;Remove KfW files
+  Delete /REBOOTOK "$INSTDIR\kfw\bin\*"
+  RMDIR  /r "$INSTDIR\kfw\bin"
+  Delete /REBOOTOK "$INSTDIR\kfw\doc\*"
+  RMDIR  /r "$INSTDIR\kfw\doc"
+  RMDIR  /r "$INSTDIR\kfw"
+!endif
 
   Delete "$SMPROGRAMS\OpenAFS\Documentation.lnk"
 
   ; Remove control center
-  Delete "$INSTDIR\Control Center\TaAfsAccountManager.exe"
-  Delete "$INSTDIR\Control Center\TaAfsAdmSvr.exe"
-  Delete "$INSTDIR\Control Center\TaAfsServerManager.exe"
-  Delete "$INSTDIR\Control Center\CCUninst.dll"
-  RMDir "$INSTDIR\Control Center"
+  Delete /REBOOTOK "$INSTDIR\Control Center\TaAfsAccountManager.exe"
+  Delete /REBOOTOK "$INSTDIR\Control Center\TaAfsAdmSvr.exe"
+  Delete /REBOOTOK "$INSTDIR\Control Center\TaAfsServerManager.exe"
+  Delete /REBOOTOK "$INSTDIR\Control Center\CCUninst.dll"
+!ifdef DEBUG
+  Delete /REBOOTOK "$INSTDIR\Control Center\TaAfsAccountManager.pdb"
+  Delete /REBOOTOK "$INSTDIR\Control Center\TaAfsAdmSvr.pdb"
+  Delete /REBOOTOK "$INSTDIR\Control Center\TaAfsServerManager.pdb"
+!endif
+  RMDir  "$INSTDIR\Control Center"
   
-  RMDir "$INSTDIR"
-
   Delete "$SMPROGRAMS\OpenAFS\Uninstall OpenAFS.lnk"
   Delete "$SMPROGRAMS\OpenAFS\Client\Authentication.lnk"
   Delete "$SMPROGRAMS\OpenAFS\Control Center\Account Manager.lnk"
@@ -952,7 +1655,19 @@ Section "Uninstall"
   RMDIR "$SMPROGRAMS\OpenAFS\Control Center"
   RMDir /r "$SMPROGRAMS\OpenAFS\Client"
   RMDir /r "$SMPROGRAMS\OpenAFS"
+  Delete "$SMSTARTUP\AFS Credentials.lnk"
   
+  ReadRegStr $R0 HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon" "CachePath"
+  IfErrors +2
+  Delete "$R0\AFSCache"
+  Delete "C:\AFSCache"
+
+  DeleteRegKey HKCR "*\shellex\ContextMenuHandlers\AFS Client Shell Extension"
+  DeleteRegKey HKCR "CLSID\{DC515C27-6CAC-11D1-BAE7-00C04FD140D2}\InprocServer32"
+  DeleteRegKey HKCR "CLSID\{DC515C27-6CAC-11D1-BAE7-00C04FD140D2}"
+  DeleteRegKey HKCR "FOLDER\shellex\ContextMenuHandlers\AFS Client Shell Extension"
+  DeleteRegValue HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Approved" "{DC515C27-6CAC-11D1-BAE7-00C04FD140D2}"
+
   DeleteRegKey HKLM "${AFS_REGKEY_ROOT}\AFS Client\CurrentVersion"
   DeleteRegKey HKLM "${AFS_REGKEY_ROOT}\AFS Client"
   DeleteRegKey HKLM "${AFS_REGKEY_ROOT}\AFS Supplemental Documentation\CurrentVersion"
@@ -963,9 +1678,14 @@ Section "Uninstall"
   DeleteRegKey HKLM "${AFS_REGKEY_ROOT}\AFS Server"
   DeleteRegKey /ifempty HKLM "${AFS_REGKEY_ROOT}"
   DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\OpenAFS"
+  DeleteRegValue HKLM "SYSTEM\CurrentControlSet\Services\NetBT\Parameters" "SmbDeviceEnabled"
+  RMDir  "$INSTDIR"
 
+!ifdef v2.0b3
   ;Display the Finish header
   !insertmacro MUI_UNFINISHHEADER
+!endif
 
 SectionEnd
 
@@ -976,9 +1696,14 @@ Function un.onInit
 
   ;Get language from registry
   ReadRegStr $LANGUAGE HKCU "Software\OpenAFS\AFS" "Installer Language"
-  
+
 FunctionEnd
 
+Function un.onUninstSuccess
+
+   MessageBox MB_OK "Please reboot your machine to complete uninstallation of the software"
+
+FunctionEnd
 
 ;------------------------------
 ; Get the CellServDB file from the Internet
@@ -987,23 +1712,34 @@ Function afs.GetCellServDB
 
 ;Check if we should download CellServDB
 ReadINIStr $R0 $0 "Field 4" "State"
-StrCmp $R0 "0" CheckIncl
+StrCmp $R0 "1" DoDownload
+
+;Do nothing if we're keeping the existing file
+ReadINIStr $R0 $0 "Field 2" "State"
+StrCmp $R0 "1" done
+
+ReadINIStr $R0 $0 "Field 3" "State"
+StrCmp $R0 "1" UsePackaged
+
+; If none of these, grab file from other location
+goto CheckOther
 
+DoDownload:
    ReadINIStr $R0 $0 "Field 5" "State"
    NSISdl::download $R0 "$WINDIR\afsdcell.ini"
    Pop $R0 ;Get the return value
    StrCmp $R0 "success" +2
       MessageBox MB_OK|MB_ICONSTOP "Download failed: $R0"
    goto done
-CheckIncl:
-   ReadINIStr $R0 $0 "Field 3" "State"
-   StrCmp $R0 "0" CheckOther
+
+UsePackaged:
    SetOutPath "$WINDIR"
    File "afsdcell.ini"
    goto done
    
 CheckOther:
    ReadINIStr $R0 $0 "Field 7" "State"
+   StrCmp $R0 "1" +1 done
    CopyFiles $R0 "$WINDIR\afsdcell.ini"
    
 done:
@@ -1016,12 +1752,28 @@ FunctionEnd
 ;Do the page to get the CellServDB
 
 Function AFSPageGetCellServDB
+  ; Skip this page if we are not installing the client
+  SectionGetFlags ${secClient} $R0
+  IntOp $R0 $R0 & ${SF_SELECTED}
+  StrCmp $R0 "0" Skip
+  
   ; Set the install options here
   
 startOver:
   WriteINIStr $0 "Field 2" "Flags" "DISABLED"
   WriteINIStr $0 "Field 3" "State" "1"
+  WriteINISTR $0 "Field 4" "State" "0"
+  WriteINIStr $0 "Field 6" "State" "0"
+  
+  ; If there is an existing afsdcell.ini file, allow the user to choose it and make it default
+  IfFileExists "$WINDIR\afsdcell.ini" +1 notpresent
+  WriteINIStr $0 "Field 2" "Flags" "ENABLED"
+  WriteINIStr $0 "Field 2" "State" "1"
+  WriteINIStr $0 "Field 3" "State" "0"
+  
+  notpresent:
   
+  !insertmacro MUI_HEADER_TEXT "CellServDB Configuration" "Please choose a method for installing the CellServDB file:" 
   InstallOptions::dialog $0
   Pop $R1
   StrCmp $R1 "cancel" exit
@@ -1030,10 +1782,22 @@ startOver:
 exit: Quit
 done:
 
-   ; Check that if a file is set, a filename is entered...
+   ; Check that if a file is set, a valid filename is entered...
    ReadINIStr $R0 $0 "Field 6" "State"
-   StrCmp $R0 "1" CheckFileName Skip
-CheckFileName:
+   StrCmp $R0 "1" CheckFileName
+   
+   ;Check if a URL is specified, one *IS* specified
+   ReadINIStr $R0 $0 "Field 4" "State"
+   StrCmp $R0 "1" CheckURL Skip
+   
+   CheckURL:
+   ReadINIStr $R0 $0 "Field 5" "State"
+   StrCmp $R0 "" +1 Skip
+   MessageBox MB_OK|MB_ICONSTOP $(URLError)
+   WriteINIStr $0 "Field 4" "State" "0"
+   goto startOver
+   
+   CheckFileName:
    ReadINIStr $R0 $0 "Field 7" "State"
    IfFileExists $R0 Skip
 
@@ -1047,9 +1811,40 @@ FunctionEnd
 
 
 Function AFSPageGetCellName
+!ifndef v2.0b4
    Call IsSilent
    Pop $R1
    StrCmp $R1 "/S" exit
+!else
+   IfSilent good
+!endif
+  ; Skip this page if we are not installing the client
+  SectionGetFlags ${secClient} $R0
+  IntOp $R0 $R0 & ${SF_SELECTED}
+  StrCmp $R0 "0" good
+  
+startOver:
+   ; If this is a server install, we do NOT want to recommend the Freelance client
+   ; And we do not need to ask for the cell name.
+   SectionGetFlags ${secServer} $R1
+   IntOp $R1 $R1 & ${SF_SELECTED}
+   StrCmp $R1 "1" +1 NotServer
+   WriteINIStr $1 "Field 6" "Text" "Enable AFS Freelance client (Not Recommended for servers)"
+   WriteINIStr $1 "Field 5" "State" "0"
+   WriteINIStr $1 "Field 1" "Flags" "DISABLED"
+   WriteINIStr $1 "Field 2" "Flags" "DISABLED"
+   goto SkipServerTest
+NotServer:
+   WriteINIStr $1 "Field 6" "Text" "Enable AFS Freelance client (Recommended)"
+   WriteINIStr $1 "Field 5" "State" "1"
+   WriteINIStr $1 "Field 1" "Flags" ""
+   WriteINIStr $1 "Field 2" "Flags" ""
+SkipServerTest:
+   ; Get the current cell name, if any
+   ReadRegStr $R1 HKLM "SYSTEM\CurrentControlSet\Services\TransarcAFSDaemon\Parameters" "Cell"
+   StrCmp $R1 "" +2
+   WriteINIStr $1 "Field 2" "State" $R1
+  !insertmacro MUI_HEADER_TEXT "Client Cell Name Configuration" "Please enter the name for your default cell:" 
   InstallOptions::dialog $1
   Pop $R1
   StrCmp $R1 "cancel" exit
@@ -1057,6 +1852,12 @@ Function AFSPageGetCellName
   StrCmp $R1 "success" done
 exit: Quit
 done:
+   ReadINIStr $R0 $1 "Field 2" "State"
+   StrCmp $R0 "" +1 good
+   
+   MessageBox MB_OK|MB_ICONSTOP $(CellNameError)
+   goto startOver
+good:
 FunctionEnd
 
 ;-------------
@@ -1065,12 +1866,17 @@ Function AFSCommon.Install
 
 WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\OpenAFS" "DisplayName" "OpenAFS for Windows"
 WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\OpenAFS" "UninstallString" "$INSTDIR\uninstall.exe"
-WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\OpenAFS" "DisplayVersion" "${MUI_VERSION}"
+!ifndef DEBUG
+WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\OpenAFS" "DisplayVersion" "${AFS_VERSION}"
+!else
+WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\OpenAFS" "DisplayVersion" "${AFS_VERSION} Checked/Debug"
+!endif
 WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\OpenAFS" "URLInfoAbout" "http://www.openafs.org/"
 
 FunctionEnd
 
-
+; This code is all needed in v2.0b3 to handle the /S switch...
+!ifdef v2.0b3
 ; Check if install should be silent
 Function IsSilent
   Push $0
@@ -1088,6 +1894,24 @@ Function IsSilent
 FunctionEnd
 
 
+; Check if uninstall should be silent
+Function un.IsSilent
+  Push $0
+  Push $CMDLINE
+  Push "/S"
+  Call un.StrStr
+  Pop $0
+  StrCpy $0 $0 3
+  StrCmp $0 "/S" silent
+  StrCmp $0 "/S " silent
+    StrCpy $0 0
+    Goto notsilent
+  silent: StrCpy $0 1
+  notsilent: Exch $0
+FunctionEnd
+
+
+
 ; StrStr function
 Function StrStr
   Exch $R1 ; st=haystack,old$R1, $R1=needle
@@ -1117,6 +1941,9 @@ Function StrStr
   Pop $R2
   Exch $R1
 FunctionEnd
+!endif
+; End of specific v2.0b3 code...
+
 
 ;-------------------
 ; Get the currently installed version and place it on the stack
@@ -1126,12 +1953,12 @@ Function GetInstalledVersion
    Push $R1
    Push $R4
    
-   ReadRegDWORD $R0 HKLM "Software\TransarcCorporation\$R2\CurrentVersion" "VersionString"
-   StrCmp $R0 "" NotTransarc
+   ReadRegStr $R0 HKLM "Software\TransarcCorporation\$R2\CurrentVersion" "VersionString"
+   StrCmp $R0 "" NotTransarc done
    
    
 NotTransarc:
-   ReadRegDWORD $R0 HKLM "${AFS_REGKEY_ROOT}\$R2\CurrentVersion" "VersionString"
+   ReadRegStr $R0 HKLM "${AFS_REGKEY_ROOT}\$R2\CurrentVersion" "VersionString"
    StrCmp $R0 "" done
    
 done:
@@ -1140,29 +1967,159 @@ done:
    Exch $R0
 FunctionEnd
 
+; Functions to get each component of the version number
+Function GetInstalledVersionMajor
+   Push $R0
+   Push $R1
+   Push $R4
+   
+   ReadRegDWORD $R0 HKLM "Software\TransarcCorporation\$R2\CurrentVersion" "MajorVersion"
+   StrCmp $R0 "" NotTransarc done
+   
+   
+NotTransarc:
+   ReadRegDWORD $R0 HKLM "${AFS_REGKEY_ROOT}\$R2\CurrentVersion" "MajorVersion"
+   StrCmp $R0 "" done
+   
+done:
+   Pop $R4
+   Pop $R1
+   Exch $R0
+FunctionEnd
+
+Function GetInstalledVersionMinor
+   Push $R0
+   Push $R1
+   Push $R4
+   
+   ReadRegDWORD $R0 HKLM "Software\TransarcCorporation\$R2\CurrentVersion" "MinorVersion"
+   StrCmp $R0 "" NotTransarc done
+   
+   
+NotTransarc:
+   ReadRegDWORD $R0 HKLM "${AFS_REGKEY_ROOT}\$R2\CurrentVersion" "MinorVersion"
+   StrCmp $R0 "" done
+   
+done:
+   Pop $R4
+   Pop $R1
+   Exch $R0
+FunctionEnd
+
+Function GetInstalledVersionPatch
+   Push $R0
+   Push $R1
+   Push $R4
+   
+   ReadRegDWORD $R0 HKLM "Software\TransarcCorporation\$R2\CurrentVersion" "PatchLevel"
+   StrCmp $R0 "" NotTransarc done
+   
+   
+NotTransarc:
+   ReadRegDWORD $R0 HKLM "${AFS_REGKEY_ROOT}\$R2\CurrentVersion" "PatchLevel"
+   StrCmp $R0 "" done
+   
+done:
+   Pop $R4
+   Pop $R1
+   Exch $R0
+FunctionEnd
+
+
 
 ;-------------------------------
 ; Check if the client should be checked for default install
 Function ShouldClientInstall
    Push $R0
-   StrCpy $R2 "Client"
+   StrCpy $R2 "AFS Client"
    Call GetInstalledVersion
    Pop $R0
    
    StrCmp $R0 "" NotInstalled
+   ; Now we see if it's an older or newer version
+
+   Call GetInstalledVersionMajor
+   Pop $R0
+   IntCmpU $R0 ${AFS_MAJORVERSION} +1 Upgrade Downgrade
+
+   Call GetInstalledVersionMinor
+   Pop $R0
+   IntCmpU $R0 ${AFS_MINORVERSION} +1 Upgrade Downgrade
    
-   StrCpy $R0 "0"
+   Call GetInstalledVersionPatch
+   Pop $R0
+   IntCmpU $R0 ${AFS_PATCHLEVEL} Reinstall Upgrade Downgrade
+   
+Reinstall:
+   StrCpy $R0 "1"
+   Exch $R0
+   goto end
+   
+Upgrade:
+   StrCpy $R0 "2"
    Exch $R0
    goto end
    
+Downgrade:
+   StrCpy $R0 "3"
+   Exch $R0
+   goto end
+   
+   
 NotInstalled:
+   StrCpy $R0 "0"
+   Exch $R0
+end:   
+FunctionEnd
+
+;-------------------------------
+; Check how the server options should be set
+Function ShouldServerInstall
+   Push $R0
+   StrCpy $R2 "AFS Server"
+   Call GetInstalledVersion
+   Pop $R0
+   
+   StrCmp $R0 "" NotInstalled
+   ; Now we see if it's an older or newer version
+
+   Call GetInstalledVersionMajor
+   Pop $R0
+   IntCmpU $R0 ${AFS_MAJORVERSION} +1 Upgrade Downgrade
+
+   Call GetInstalledVersionMinor
+   Pop $R0
+   IntCmpU $R0 ${AFS_MINORVERSION} +1 Upgrade Downgrade
+   
+   Call GetInstalledVersionPatch
+   Pop $R0
+   IntCmpU $R0 ${AFS_PATCHLEVEL} Reinstall Upgrade Downgrade
+   
+Reinstall:
    StrCpy $R0 "1"
    Exch $R0
+   goto end
+   
+Upgrade:
+   StrCpy $R0 "2"
+   Exch $R0
+   goto end
+   
+Downgrade:
+   StrCpy $R0 "3"
+   Exch $R0
+   goto end
+   
+   
+NotInstalled:
+   StrCpy $R0 "0"
+   Exch $R0
 end:   
 FunctionEnd
 
 
-; See if AFS Client is installed
+; See if AFS Server is installed
+; Returns: "1" if it is, 0 if it is not (on the stack)
 Function IsServerInstalled
    Push $R0
    StrCpy $R2 "AFS Server"
@@ -1182,7 +2139,8 @@ end:
 FunctionEnd
 
 
-; See if AFS Server is installed
+; See if AFS Client is installed
+; Returns: "1" if it is, 0 if it is not (on the stack)
 Function IsClientInstalled
    Push $R0
    StrCpy $R2 "AFS Client"
@@ -1204,6 +2162,7 @@ FunctionEnd
 
 
 ; See if AFS Documentation is installed
+; Returns: "1" if it is, 0 if it is not (on the stack)
 Function IsDocumentationInstalled
    Push $R0
    StrCpy $R2 "AFS Supplemental Documentation"
@@ -1223,10 +2182,11 @@ end:
 FunctionEnd
 
 
-; See if COntrol Center is installed
+; See if Control Center is installed
+; Returns: "1" if it is, 0 if it is not (on the stack)
 Function IsControlInstalled
    Push $R0
-   StrCpy $R2 "Control_Center"
+   StrCpy $R2 "AFS Control Center"
    Call GetInstalledVersion
    Pop $R0
    
@@ -1275,8 +2235,35 @@ FunctionEnd
 
 
 ;Check to see if any AFS component is installed
+;Returns: Value on stack: "1" if it is, "0" if it is not
 Function IsAnyAFSInstalled
-
+   Push $R0
+   Push $R1
+   Push $R2
+   Push $R3
+   Call IsClientInstalled
+   Pop $R0
+   Call IsServerInstalled
+   Pop $R1
+   Call IsControlInstalled
+   Pop $R2
+   Call IsDocumentationInstalled
+   Pop $R3
+   ; Now we must see if ANY of the $Rn values are 1
+   StrCmp $R0 "1" SomethingInstalled
+   StrCmp $R1 "1" SomethingInstalled
+   StrCmp $R2 "1" SomethingInstalled
+   StrCmp $R3 "1" SomethingInstalled
+   ;Nothing installed
+   StrCpy $R0 "0"
+   goto end
+SomethingInstalled:
+   StrCpy $R0 "1"
+end:
+   Pop $R3
+   Pop $R2
+   Pop $R1
+   Exch $R0
 FunctionEnd
 
 
@@ -1294,12 +2281,52 @@ Function AFSLangFiles
    File "${AFS_SERVER_BUILDDIR}\afsprocmgmt.dll"
    File "${AFS_SERVER_BUILDDIR}\afsvosadmin.dll"
    File "${AFS_SERVER_BUILDDIR}\TaAfsAppLib.dll"
+   File "${AFS_SERVER_BUILDDIR}\afsvosadmin.dll"
+   File "${AFS_SERVER_BUILDDIR}\afsbosadmin.dll"
+   File "${AFS_SERVER_BUILDDIR}\afscfgadmin.dll"
+   File "${AFS_SERVER_BUILDDIR}\afskasadmin.dll"
+   File "${AFS_SERVER_BUILDDIR}\afsptsadmin.dll"
+!IFDEF DEBUG
+!IFDEF CL_1310
+   File "${AFS_WININSTALL_DIR}\msvcr71d.dll"
+   File "${AFS_WININSTALL_DIR}\msvcr71d.pdb"
+!ELSE
+   File "${AFS_WININSTALL_DIR}\msvcrtd.dll"
+   File "${AFS_WININSTALL_DIR}\msvcrtd.pdb"
+!ENDIF
+!ELSE
+!IFDEF CL_1310
+   File "${AFS_WININSTALL_DIR}\msvcr71.dll"
+!ELSE
+   File "${AFS_WININSTALL_DIR}\msvcrt.dll"
+!ENDIF
+!ENDIF
+
+!ifdef DEBUG
+   File "${AFS_CLIENT_BUILDDIR}\afs_config.pdb"
+   File "${AFS_CLIENT_BUILDDIR}\afs_shl_ext.pdb"
+   File "${AFS_SERVER_BUILDDIR}\afsadminutil.pdb"
+   File "${AFS_DESTDIR}\lib\afsauthent.pdb"
+   File "${AFS_DESTDIR}\lib\afspthread.pdb"
+   File "${AFS_DESTDIR}\lib\afsrpc.pdb"
+   File "${AFS_SERVER_BUILDDIR}\afsclientadmin.pdb"
+   File "${AFS_SERVER_BUILDDIR}\afsprocmgmt.pdb"
+   File "${AFS_SERVER_BUILDDIR}\afsvosadmin.pdb"
+   File "${AFS_SERVER_BUILDDIR}\TaAfsAppLib.pdb"
+   File "${AFS_SERVER_BUILDDIR}\afsvosadmin.pdb"
+   File "${AFS_SERVER_BUILDDIR}\afsbosadmin.pdb"
+   File "${AFS_SERVER_BUILDDIR}\afscfgadmin.pdb"
+   File "${AFS_SERVER_BUILDDIR}\afskasadmin.pdb"
+   File "${AFS_SERVER_BUILDDIR}\afsptsadmin.pdb"
+!endif
 
    StrCmp $LANGUAGE ${LANG_ENGLISH} DoEnglish
    StrCmp $LANGUAGE ${LANG_GERMAN} DoGerman
    StrCmp $LANGUAGE ${LANG_SPANISH} DoSpanish
    StrCmp $LANGUAGE ${LANG_JAPANESE} DoJapanese
+!ifdef v2.0b4
    StrCmp $LANGUAGE ${LANG_KOREAN} DoKorean
+!endif
    StrCmp $LANGUAGE ${LANG_PORTUGUESEBR} DoPortugueseBR
    StrCmp $LANGUAGE ${LANG_SIMPCHINESE} DoSimpChinese
    StrCmp $LANGUAGE ${LANG_TRADCHINESE} DoTradChinese
@@ -1313,13 +2340,26 @@ DoEnglish:
    File "${AFS_CLIENT_BUILDDIR}\afs_config_1033.dll"
    File "${AFS_CLIENT_BUILDDIR}\afs_shl_ext_1033.dll"
    File "${AFS_CLIENT_BUILDDIR}\afscreds_1033.dll"
+   File "${AFS_CLIENT_BUILDDIR}\afs_cpa_1033.dll"
    File "${AFS_SERVER_BUILDDIR}\afseventmsg_1033.dll"
    ;File "${AFS_SERVER_BUILDDIR}\afs_setup_utils_1033.dll"
    File "${AFS_SERVER_BUILDDIR}\afsserver_1033.dll"
    File "${AFS_SERVER_BUILDDIR}\afssvrcfg_1033.dll"
    File "${AFS_SERVER_BUILDDIR}\TaAfsAccountManager_1033.dll"
-   ;File "${AFS_SERVER_BUILDDIR}\TaAfsAppLib_1033.dll"
-   ;File "${AFS_SERVER_BUILDDIR}\TaAfsServerManager_1033.dll"
+   File "${AFS_SERVER_BUILDDIR}\TaAfsAppLib_1033.dll"
+   File "${AFS_SERVER_BUILDDIR}\TaAfsServerManager_1033.dll"
+   File "..\..\doc\help\en_US\afs-cc.CNT"
+   File "..\..\doc\help\en_US\afs-cc.hlp"
+   File "..\..\doc\help\en_US\afs-light.CNT"
+   File "..\..\doc\help\en_US\afs-light.hlp"
+   File "..\..\doc\help\en_US\afs-nt.CNT"
+   File "..\..\doc\help\en_US\afs-nt.HLP"
+   File "..\..\doc\help\en_US\taafscfg.CNT"
+   File "..\..\doc\help\en_US\taafscfg.hlp"
+   File "..\..\doc\help\en_US\taafssvrmgr.CNT"
+   File "..\..\doc\help\en_US\taafssvrmgr.hlp"
+   File "..\..\doc\help\en_US\taafsusrmgr.CNT"
+   File "..\..\doc\help\en_US\taafsusrmgr.hlp"
    goto done
 
 DoGerman:
@@ -1331,13 +2371,46 @@ DoGerman:
    File "${AFS_CLIENT_BUILDDIR}\afs_config_1032.dll"
    File "${AFS_CLIENT_BUILDDIR}\afs_shl_ext_1032.dll"
    File "${AFS_CLIENT_BUILDDIR}\afscreds_1032.dll"
+   File "${AFS_CLIENT_BUILDDIR}\afs_cpa_1032.dll"
    File "${AFS_SERVER_BUILDDIR}\afseventmsg_1032.dll"
    ;File "${AFS_SERVER_BUILDDIR}\afs_setup_utils_1032.dll"
    File "${AFS_SERVER_BUILDDIR}\afsserver_1032.dll"
    File "${AFS_SERVER_BUILDDIR}\afssvrcfg_1032.dll"
    File "${AFS_SERVER_BUILDDIR}\TaAfsAccountManager_1032.dll"
-   ;File "${AFS_SERVER_BUILDDIR}\TaAfsAppLib_1032.dll"
-   ;File "${AFS_SERVER_BUILDDIR}\TaAfsServerManager_1032.dll"
+   File "${AFS_SERVER_BUILDDIR}\TaAfsAppLib_1032.dll"
+   File "${AFS_SERVER_BUILDDIR}\TaAfsServerManager_1032.dll"
+   File "..\..\doc\help\de_DE\afs-cc.CNT"
+   File "..\..\doc\help\de_DE\afs-cc.hlp"
+   File "..\..\doc\help\de_DE\afs-light.CNT"
+   File "..\..\doc\help\de_DE\afs-light.hlp"
+   File "..\..\doc\help\de_DE\afs-nt.CNT"
+   File "..\..\doc\help\de_DE\afs-nt.HLP"
+   File "..\..\doc\help\de_DE\taafscfg.CNT"
+   File "..\..\doc\help\de_DE\taafscfg.hlp"
+   File "..\..\doc\help\de_DE\taafssvrmgr.CNT"
+   File "..\..\doc\help\de_DE\taafssvrmgr.hlp"
+   File "..\..\doc\help\de_DE\taafsusrmgr.CNT"
+   File "..\..\doc\help\de_DE\taafsusrmgr.hlp"
+
+!ifdef DEBUG
+   ;File "${AFS_CLIENT_BUILDDIR}\afs_config_1033.pdb"
+   ;File "${AFS_CLIENT_BUILDDIR}\afs_shl_ext_1033.pdb"
+   ;File "${AFS_CLIENT_BUILDDIR}\afscreds_1033.pdb"
+   ;File "${AFS_CLIENT_BUILDDIR}\afs_cpa_1033.pdb"
+   ;File "${AFS_SERVER_BUILDDIR}\afseventmsg_1033.pdb"
+   ;File "${AFS_SERVER_BUILDDIR}\afsserver_1033.pdb"
+   ;File "${AFS_SERVER_BUILDDIR}\afssvrcfg_1033.pdb"
+   ;File "${AFS_SERVER_BUILDDIR}\TaAfsAccountManager_1033.pdb"
+   ;File "${AFS_SERVER_BUILDDIR}\TaAfsAppLib_1033.pdb"
+   ;File "${AFS_SERVER_BUILDDIR}\TaAfsServerManager_1033.pdb"
+!IFDEF CL_1310
+   File "${AFS_WININSTALL_DIR}\msvcr71d.dll"
+   File "${AFS_WININSTALL_DIR}\msvcr71d.pdb"
+!ELSE
+   File "${AFS_WININSTALL_DIR}\msvcrtd.dll"
+   File "${AFS_WININSTALL_DIR}\msvcrtd.pdb"
+!ENDIF
+!endif
    goto done   
 
 DoSpanish:
@@ -1349,13 +2422,26 @@ DoSpanish:
    File "${AFS_CLIENT_BUILDDIR}\afs_config_1034.dll"
    File "${AFS_CLIENT_BUILDDIR}\afs_shl_ext_1034.dll"
    File "${AFS_CLIENT_BUILDDIR}\afscreds_1034.dll"
+   File "${AFS_CLIENT_BUILDDIR}\afs_cpa_1034.dll"
    File "${AFS_SERVER_BUILDDIR}\afseventmsg_1034.dll"
    ;File "${AFS_SERVER_BUILDDIR}\afs_setup_utils_1034.dll"
    File "${AFS_SERVER_BUILDDIR}\afsserver_1034.dll"
    File "${AFS_SERVER_BUILDDIR}\afssvrcfg_1034.dll"
    File "${AFS_SERVER_BUILDDIR}\TaAfsAccountManager_1034.dll"
-   ;File "${AFS_SERVER_BUILDDIR}\TaAfsAppLib_1034.dll"
-   ;File "${AFS_SERVER_BUILDDIR}\TaAfsServerManager_1034.dll"
+   File "${AFS_SERVER_BUILDDIR}\TaAfsAppLib_1034.dll"
+   File "${AFS_SERVER_BUILDDIR}\TaAfsServerManager_1034.dll"
+   File "..\..\doc\help\es_ES\afs-cc.CNT"
+   File "..\..\doc\help\es_ES\afs-cc.hlp"
+   File "..\..\doc\help\es_ES\afs-light.CNT"
+   File "..\..\doc\help\es_ES\afs-light.hlp"
+   File "..\..\doc\help\es_ES\afs-nt.CNT"
+   File "..\..\doc\help\es_ES\afs-nt.HLP"
+   File "..\..\doc\help\es_ES\taafscfg.CNT"
+   File "..\..\doc\help\es_ES\taafscfg.hlp"
+   File "..\..\doc\help\es_ES\taafssvrmgr.CNT"
+   File "..\..\doc\help\es_ES\taafssvrmgr.hlp"
+   File "..\..\doc\help\es_ES\taafsusrmgr.CNT"
+   File "..\..\doc\help\es_ES\taafsusrmgr.hlp"
    goto done
 
 DoJapanese:
@@ -1367,13 +2453,26 @@ DoJapanese:
    File "${AFS_CLIENT_BUILDDIR}\afs_config_1041.dll"
    File "${AFS_CLIENT_BUILDDIR}\afs_shl_ext_1041.dll"
    File "${AFS_CLIENT_BUILDDIR}\afscreds_1041.dll"
+   File "${AFS_CLIENT_BUILDDIR}\afs_cpa_1041.dll"
    File "${AFS_SERVER_BUILDDIR}\afseventmsg_1041.dll"
    ;File "${AFS_SERVER_BUILDDIR}\afs_setup_utils_1041.dll"
    File "${AFS_SERVER_BUILDDIR}\afsserver_1041.dll"
    File "${AFS_SERVER_BUILDDIR}\afssvrcfg_1041.dll"
    File "${AFS_SERVER_BUILDDIR}\TaAfsAccountManager_1041.dll"
-   ;File "${AFS_SERVER_BUILDDIR}\TaAfsAppLib_1041.dll"
-   ;File "${AFS_SERVER_BUILDDIR}\TaAfsServerManager_1041.dll"
+   File "${AFS_SERVER_BUILDDIR}\TaAfsAppLib_1041.dll"
+   File "${AFS_SERVER_BUILDDIR}\TaAfsServerManager_1041.dll"
+   File "..\..\doc\help\ja_JP\afs-cc.CNT"
+   File "..\..\doc\help\ja_JP\afs-cc.hlp"
+   File "..\..\doc\help\ja_JP\afs-light.CNT"
+   File "..\..\doc\help\ja_JP\afs-light.hlp"
+   File "..\..\doc\help\ja_JP\afs-nt.CNT"
+   File "..\..\doc\help\ja_JP\afs-nt.HLP"
+   File "..\..\doc\help\ja_JP\taafscfg.CNT"
+   File "..\..\doc\help\ja_JP\taafscfg.hlp"
+   File "..\..\doc\help\ja_JP\taafssvrmgr.CNT"
+   File "..\..\doc\help\ja_JP\taafssvrmgr.hlp"
+   File "..\..\doc\help\ja_JP\taafsusrmgr.CNT"
+   File "..\..\doc\help\ja_JP\taafsusrmgr.hlp"
    goto done
    
 DoKorean:
@@ -1385,13 +2484,26 @@ DoKorean:
    File "${AFS_CLIENT_BUILDDIR}\afs_config_1042.dll"
    File "${AFS_CLIENT_BUILDDIR}\afs_shl_ext_1042.dll"
    File "${AFS_CLIENT_BUILDDIR}\afscreds_1042.dll"
+   File "${AFS_CLIENT_BUILDDIR}\afs_cpa_1042.dll"
    File "${AFS_SERVER_BUILDDIR}\afseventmsg_1042.dll"
    ;File "${AFS_SERVER_BUILDDIR}\afs_setup_utils_1042.dll"
    File "${AFS_SERVER_BUILDDIR}\afsserver_1042.dll"
    File "${AFS_SERVER_BUILDDIR}\afssvrcfg_1042.dll"
    File "${AFS_SERVER_BUILDDIR}\TaAfsAccountManager_1042.dll"
-   ;File "${AFS_SERVER_BUILDDIR}\TaAfsAppLib_1042.dll"
-   ;File "${AFS_SERVER_BUILDDIR}\TaAfsServerManager_1042.dll"
+   File "${AFS_SERVER_BUILDDIR}\TaAfsAppLib_1042.dll"
+   File "${AFS_SERVER_BUILDDIR}\TaAfsServerManager_1042.dll"
+   File "..\..\doc\help\ko_KR\afs-cc.CNT"
+   File "..\..\doc\help\ko_KR\afs-cc.hlp"
+   File "..\..\doc\help\ko_KR\afs-light.CNT"
+   File "..\..\doc\help\ko_KR\afs-light.hlp"
+   File "..\..\doc\help\ko_KR\afs-nt.CNT"
+   File "..\..\doc\help\ko_KR\afs-nt.HLP"
+   File "..\..\doc\help\ko_KR\taafscfg.CNT"
+   File "..\..\doc\help\ko_KR\taafscfg.hlp"
+   File "..\..\doc\help\ko_KR\taafssvrmgr.CNT"
+   File "..\..\doc\help\ko_KR\taafssvrmgr.hlp"
+   File "..\..\doc\help\ko_KR\taafsusrmgr.CNT"
+   File "..\..\doc\help\ko_KR\taafsusrmgr.hlp"
    goto done
 
 
@@ -1404,13 +2516,26 @@ DoPortugueseBR:
    File "${AFS_CLIENT_BUILDDIR}\afs_config_1046.dll"
    File "${AFS_CLIENT_BUILDDIR}\afs_shl_ext_1046.dll"
    File "${AFS_CLIENT_BUILDDIR}\afscreds_1046.dll"
+   File "${AFS_CLIENT_BUILDDIR}\afs_cpa_1046.dll"
    File "${AFS_SERVER_BUILDDIR}\afseventmsg_1046.dll"
    ;File "${AFS_SERVER_BUILDDIR}\afs_setup_utils_1046.dll"
    File "${AFS_SERVER_BUILDDIR}\afsserver_1046.dll"
    File "${AFS_SERVER_BUILDDIR}\afssvrcfg_1046.dll"
    File "${AFS_SERVER_BUILDDIR}\TaAfsAccountManager_1046.dll"
-   ;File "${AFS_SERVER_BUILDDIR}\TaAfsAppLib_1046.dll"
-   ;File "${AFS_SERVER_BUILDDIR}\TaAfsServerManager_1046.dll"
+   File "${AFS_SERVER_BUILDDIR}\TaAfsAppLib_1046.dll"
+   File "${AFS_SERVER_BUILDDIR}\TaAfsServerManager_1046.dll"
+   File "..\..\doc\help\pt_BR\afs-cc.CNT"
+   File "..\..\doc\help\pt_BR\afs-cc.hlp"
+   File "..\..\doc\help\pt_BR\afs-light.CNT"
+   File "..\..\doc\help\pt_BR\afs-light.hlp"
+   File "..\..\doc\help\pt_BR\afs-nt.CNT"
+   File "..\..\doc\help\pt_BR\afs-nt.HLP"
+   File "..\..\doc\help\pt_BR\taafscfg.CNT"
+   File "..\..\doc\help\pt_BR\taafscfg.hlp"
+   File "..\..\doc\help\pt_BR\taafssvrmgr.CNT"
+   File "..\..\doc\help\pt_BR\taafssvrmgr.hlp"
+   File "..\..\doc\help\pt_BR\taafsusrmgr.CNT"
+   File "..\..\doc\help\pt_BR\taafsusrmgr.hlp"
    goto done
    
 DoSimpChinese:
@@ -1422,13 +2547,26 @@ DoSimpChinese:
    File "${AFS_CLIENT_BUILDDIR}\afs_config_2052.dll"
    File "${AFS_CLIENT_BUILDDIR}\afs_shl_ext_2052.dll"
    File "${AFS_CLIENT_BUILDDIR}\afscreds_2052.dll"
+   File "${AFS_CLIENT_BUILDDIR}\afs_cpa_2052.dll"
    File "${AFS_SERVER_BUILDDIR}\afseventmsg_2052.dll"
    ;File "${AFS_SERVER_BUILDDIR}\afs_setup_utils_2052.dll"
    File "${AFS_SERVER_BUILDDIR}\afsserver_2052.dll"
    File "${AFS_SERVER_BUILDDIR}\afssvrcfg_2052.dll"
    File "${AFS_SERVER_BUILDDIR}\TaAfsAccountManager_2052.dll"
-   ;File "${AFS_SERVER_BUILDDIR}\TaAfsAppLib_2052.dll"
-   ;File "${AFS_SERVER_BUILDDIR}\TaAfsServerManager_2052.dll"
+   File "${AFS_SERVER_BUILDDIR}\TaAfsAppLib_2052.dll"
+   File "${AFS_SERVER_BUILDDIR}\TaAfsServerManager_2052.dll"
+   File "..\..\doc\help\zh_CN\afs-cc.CNT"
+   File "..\..\doc\help\zh_CN\afs-cc.hlp"
+   File "..\..\doc\help\zh_CN\afs-light.CNT"
+   File "..\..\doc\help\zh_CN\afs-light.hlp"
+   File "..\..\doc\help\zh_CN\afs-nt.CNT"
+   File "..\..\doc\help\zh_CN\afs-nt.HLP"
+   File "..\..\doc\help\zh_CN\taafscfg.CNT"
+   File "..\..\doc\help\zh_CN\taafscfg.hlp"
+   File "..\..\doc\help\zh_CN\taafssvrmgr.CNT"
+   File "..\..\doc\help\zh_CN\taafssvrmgr.hlp"
+   File "..\..\doc\help\zh_CN\taafsusrmgr.CNT"
+   File "..\..\doc\help\zh_CN\taafsusrmgr.hlp"
    goto done
    
 DoTradChinese:
@@ -1440,13 +2578,26 @@ DoTradChinese:
    File "${AFS_CLIENT_BUILDDIR}\afs_config_1028.dll"
    File "${AFS_CLIENT_BUILDDIR}\afs_shl_ext_1028.dll"
    File "${AFS_CLIENT_BUILDDIR}\afscreds_1028.dll"
+   File "${AFS_CLIENT_BUILDDIR}\afs_cpa_1028.dll"
    File "${AFS_SERVER_BUILDDIR}\afseventmsg_1028.dll"
    ;File "${AFS_SERVER_BUILDDIR}\afs_setup_utils_1028.dll"
    File "${AFS_SERVER_BUILDDIR}\afsserver_1028.dll"
    File "${AFS_SERVER_BUILDDIR}\afssvrcfg_1028.dll"
    File "${AFS_SERVER_BUILDDIR}\TaAfsAccountManager_1028.dll"
-   ;File "${AFS_SERVER_BUILDDIR}\TaAfsAppLib_1028.dll"
-   ;File "${AFS_SERVER_BUILDDIR}\TaAfsServerManager_1028.dll"
+   File "${AFS_SERVER_BUILDDIR}\TaAfsAppLib_1028.dll"
+   File "${AFS_SERVER_BUILDDIR}\TaAfsServerManager_1028.dll"
+   File "..\..\doc\help\zh_TW\afs-cc.CNT"
+   File "..\..\doc\help\zh_TW\afs-cc.hlp"
+   File "..\..\doc\help\zh_TW\afs-light.CNT"
+   File "..\..\doc\help\zh_TW\afs-light.hlp"
+   File "..\..\doc\help\zh_TW\afs-nt.CNT"
+   File "..\..\doc\help\zh_TW\afs-nt.HLP"
+   File "..\..\doc\help\zh_TW\taafscfg.CNT"
+   File "..\..\doc\help\zh_TW\taafscfg.hlp"
+   File "..\..\doc\help\zh_TW\taafssvrmgr.CNT"
+   File "..\..\doc\help\zh_TW\taafssvrmgr.hlp"
+   File "..\..\doc\help\zh_TW\taafsusrmgr.CNT"
+   File "..\..\doc\help\zh_TW\taafsusrmgr.hlp"
    goto done
    
 done:
@@ -1647,4 +2798,278 @@ Function un.IsNT
     Push 1
 FunctionEnd
 
+!ifdef ADDSHAREDDLLUSED
+; AddSharedDLL
+ ;
+ ; Increments a shared DLLs reference count.
+ ; Use by passing one item on the stack (the full path of the DLL).
+ ;
+ ; Usage:
+ ;   Push $SYSDIR\myDll.dll
+ ;   Call AddSharedDLL
+ ;
+
+ Function AddSharedDLL
+   Exch $R1
+   Push $R0
+   ReadRegDword $R0 HKLM Software\Microsoft\Windows\CurrentVersion\SharedDLLs $R1
+   IntOp $R0 $R0 + 1
+   WriteRegDWORD HKLM Software\Microsoft\Windows\CurrentVersion\SharedDLLs $R1 $R0
+   Pop $R0
+   Pop $R1
+ FunctionEnd
+
+; un.RemoveSharedDLL
+ ;
+ ; Decrements a shared DLLs reference count, and removes if necessary.
+ ; Use by passing one item on the stack (the full path of the DLL).
+ ; Note: for use in the main installer (not the uninstaller), rename the
+ ; function to RemoveSharedDLL.
+ ;
+ ; Usage:
+ ;   Push $SYSDIR\myDll.dll
+ ;   Call un.RemoveSharedDLL
+ ;
+
+ Function un.RemoveSharedDLL
+   Exch $R1
+   Push $R0
+   ReadRegDword $R0 HKLM Software\Microsoft\Windows\CurrentVersion\SharedDLLs $R1
+   StrCmp $R0 "" remove
+     IntOp $R0 $R0 - 1
+     IntCmp $R0 0 rk rk uk
+     rk:
+       DeleteRegValue HKLM Software\Microsoft\Windows\CurrentVersion\SharedDLLs $R1
+     goto Remove
+     uk:
+       WriteRegDWORD HKLM Software\Microsoft\Windows\CurrentVersion\SharedDLLs $R1 $R0
+     Goto noremove
+   remove:
+     Delete /REBOOTOK $R1
+   noremove:
+   Pop $R0
+   Pop $R1
+ FunctionEnd
+!endif
+
+!ifdef INSTALL_LOOPBACK
+Function afs.InstallMSLoopback
+   GetTempFileName $R0
+   File /oname=$R0 "loopback_install.dll"
+   nsExec::Exec "rundll32.exe $R0 doLoopBackEntry quiet"
+   Call GetWindowsVersion
+   Pop $R1
+   StrCmp $R1 "2000" +1 +2
+   nsExec::Exec "rundll32.exe $R0 disableLoopBackEntry"
+   Delete $R0
+FunctionEnd
+!endif
+
+
+; GetWindowsVersion
+;
+; Based on Yazno's function, http://yazno.tripod.com/powerpimpit/
+; Updated by Joost Verburg
+;
+; Returns on top of stack
+;
+; Windows Version (95, 98, ME, NT x.x, 2000, XP, 2003)
+; or
+; '' (Unknown Windows Version)
+;
+; Usage:
+;   Call GetWindowsVersion
+;   Pop $R0
+;   ; at this point $R0 is "NT 4.0" or whatnot
+
+Function GetWindowsVersion
+
+  Push $R0
+  Push $R1
+
+  ClearErrors
+
+  ReadRegStr $R0 HKLM \
+  "SOFTWARE\Microsoft\Windows NT\CurrentVersion" CurrentVersion
+
+  IfErrors 0 lbl_winnt
+  
+  ; we are not NT
+  ReadRegStr $R0 HKLM \
+  "SOFTWARE\Microsoft\Windows\CurrentVersion" VersionNumber
+
+  StrCpy $R1 $R0 1
+  StrCmp $R1 '4' 0 lbl_error
+
+  StrCpy $R1 $R0 3
+
+  StrCmp $R1 '4.0' lbl_win32_95
+  StrCmp $R1 '4.9' lbl_win32_ME lbl_win32_98
+
+  lbl_win32_95:
+    StrCpy $R0 '95'
+  Goto lbl_done
+
+  lbl_win32_98:
+    StrCpy $R0 '98'
+  Goto lbl_done
+
+  lbl_win32_ME:
+    StrCpy $R0 'ME'
+  Goto lbl_done
+
+  lbl_winnt:
+
+  StrCpy $R1 $R0 1
+
+  StrCmp $R1 '3' lbl_winnt_x
+  StrCmp $R1 '4' lbl_winnt_x
+
+  StrCpy $R1 $R0 3
+
+  StrCmp $R1 '5.0' lbl_winnt_2000
+  StrCmp $R1 '5.1' lbl_winnt_XP
+  StrCmp $R1 '5.2' lbl_winnt_2003 lbl_error
+
+  lbl_winnt_x:
+    StrCpy $R0 "NT $R0" 6
+  Goto lbl_done
+
+  lbl_winnt_2000:
+    Strcpy $R0 '2000'
+  Goto lbl_done
+
+  lbl_winnt_XP:
+    Strcpy $R0 'XP'
+  Goto lbl_done
+
+  lbl_winnt_2003:
+    Strcpy $R0 '2003'
+  Goto lbl_done
+
+  lbl_error:
+    Strcpy $R0 ''
+  lbl_done:
+
+  Pop $R1
+  Exch $R0
+
+FunctionEnd
+
+
+; Author: Lilla (lilla@earthlink.net) 2003-06-13
+; function IsUserAdmin uses plugin \NSIS\PlusgIns\UserInfo.dll
+; This function is based upon code in \NSIS\Contrib\UserInfo\UserInfo.nsi
+; This function was tested under NSIS 2 beta 4 (latest CVS as of this writing).
+;
+; Usage:
+;   Call IsUserAdmin
+;   Pop $R0   ; at this point $R0 is "true" or "false"
+;
+Function IsUserAdmin
+Push $R0
+Push $R1
+Push $R2
+
+ClearErrors
+UserInfo::GetName
+IfErrors Win9x
+Pop $R1
+UserInfo::GetAccountType
+Pop $R2
+
+StrCmp $R2 "Admin" 0 Continue
+; Observation: I get here when running Win98SE. (Lilla)
+; The functions UserInfo.dll looks for are there on Win98 too, 
+; but just don't work. So UserInfo.dll, knowing that admin isn't required
+; on Win98, returns admin anyway. (per kichik)
+; MessageBox MB_OK 'User "$R1" is in the Administrators group'
+StrCpy $R0 "true"
+Goto Done
+
+Continue:
+; You should still check for an empty string because the functions
+; UserInfo.dll looks for may not be present on Windows 95. (per kichik)
+StrCmp $R2 "" Win9x
+StrCpy $R0 "false"
+;MessageBox MB_OK 'User "$R1" is in the "$R2" group'
+Goto Done
+
+Win9x:
+; comment/message below is by UserInfo.nsi author:
+; This one means you don't need to care about admin or
+; not admin because Windows 9x doesn't either
+;MessageBox MB_OK "Error! This DLL can't run under Windows 9x!"
+StrCpy $R0 "false"
+
+Done:
+;MessageBox MB_OK 'User= "$R1"  AccountType= "$R2"  IsUserAdmin= "$R0"'
+
+Pop $R2
+Pop $R1
+Exch $R0
+FunctionEnd
+
+; GetParent
+ ; input, top of stack  (e.g. C:\Program Files\Poop)
+ ; output, top of stack (replaces, with e.g. C:\Program Files)
+ ; modifies no other variables.
+ ;
+ ; Usage:
+ ;   Push "C:\Program Files\Directory\Whatever"
+ ;   Call GetParent
+ ;   Pop $R0
+ ;   ; at this point $R0 will equal "C:\Program Files\Directory"
+
+Function GetParent
+
+  Exch $R0
+  Push $R1
+  Push $R2
+  Push $R3
+  
+  StrCpy $R1 0
+  StrLen $R2 $R0
+  
+  loop:
+    IntOp $R1 $R1 + 1
+    IntCmp $R1 $R2 get 0 get
+    StrCpy $R3 $R0 1 -$R1
+    StrCmp $R3 "\" get
+  Goto loop
+  
+  get:
+    StrCpy $R0 $R0 -$R1
+    
+    Pop $R3
+    Pop $R2
+    Pop $R1
+    Exch $R0
+    
+FunctionEnd
+
+
+;--------------------------------
+;Handle what must and what must not be installed
+Function .onSelChange
+   ; If they install the server, they MUST install the client
+   SectionGetFlags ${secServer} $R0
+   IntOp $R0 $R0 & ${SF_SELECTED}
+   StrCmp $R0 "1" MakeClientSelected
+   
+   ; If they install the control center, we'll give them the client.
+   ; It may not be required, but it's a bit more useful
+   SectionGetFlags ${secControl} $R0
+   IntOp $R0 $R0 & ${SF_SELECTED}
+   StrCmp $R0 "1" MakeClientSelected
+   goto end
+   
+MakeClientSelected:
+   SectionGetFlags ${secClient} $R0
+   IntOp $R0 $R0 | ${SF_SELECTED}
+   SectionSetFlags ${secClient} $R0
+   
+end:
+FunctionEnd