Upgrade to KFW 3.2.2.
[metze/wireshark/wip.git] / packaging / nsis / wireshark.nsi
1 ;
2 ; wireshark.nsi
3 ;
4 ; $Id$
5
6
7 ; Set the compression mechanism first.
8 ; As of NSIS 2.07, solid compression which makes installer about 1MB smaller
9 ; is no longer the default, so use the /SOLID switch.
10 ; This unfortunately is unknown to NSIS prior to 2.07 and creates an error.
11 ; So if you get an error here, please update to at least NSIS 2.07!
12 SetCompressor /SOLID lzma
13
14 InstType "un.Default (keep Personal Settings and WinPcap)"
15 InstType "un.All (remove all)"
16
17 ; Used to refresh the display of file association
18 !define SHCNE_ASSOCCHANGED 0x08000000
19 !define SHCNF_IDLIST 0
20
21 ; Used to add associations between file extensions and Wireshark
22 !define WIRESHARK_ASSOC "wireshark-capture-file"
23
24 ; ============================================================================
25 ; Header configuration
26 ; ============================================================================
27 ; The name of the installer
28 !define PROGRAM_NAME "Wireshark"
29 !if ${WIRESHARK_TARGET_PLATFORM} == "win32"
30 !define BITS 32
31 !else
32 !define BITS 64
33 !endif
34
35 Name "${PROGRAM_NAME} ${VERSION} (${BITS}-bit)"
36
37 ; The file to write
38 OutFile "wireshark-${WIRESHARK_TARGET_PLATFORM}-${VERSION}.exe"
39
40 ; Icon of installer and uninstaller
41 Icon "..\..\image\wiresharkinst.ico"
42 UninstallIcon "..\..\image\wiresharkinst.ico"
43
44 ; Uninstall stuff (NSIS 2.08: "\r\n" don't work here)
45 !define MUI_UNCONFIRMPAGE_TEXT_TOP "The following Wireshark installation will be uninstalled. Click 'Next' to continue."
46 ; Uninstall stuff (this text isn't used with the MODERN_UI!)
47 ;UninstallText "This will uninstall Wireshark.\r\nBefore starting the uninstallation, make sure Wireshark is not running.\r\nClick 'Next' to continue."
48
49 XPStyle on
50
51
52
53 ; ============================================================================
54 ; Modern UI
55 ; ============================================================================
56 ; The modern user interface will look much better than the common one.
57 ; However, as the development of the modern UI is still going on, and the script
58 ; syntax changes, you will need exactly that NSIS version, which this script is
59 ; made for. This is the current (December 2003) latest version: V2.0b4
60 ; If you are using a different version, it's not predictable what will happen.
61
62 !include "MUI.nsh"
63 ;!addplugindir ".\Plugins"
64
65 !define MUI_ICON "..\..\image\wiresharkinst.ico"
66 !define MUI_UNICON "..\..\image\wiresharkinst.ico"
67
68 !define MUI_COMPONENTSPAGE_SMALLDESC
69 !define MUI_FINISHPAGE_NOAUTOCLOSE
70 !define MUI_UNFINISHPAGE_NOAUTOCLOSE
71 !define MUI_WELCOMEPAGE_TEXT "This wizard will guide you through the installation of Wireshark.\r\n\r\nBefore starting the installation, make sure Wireshark is not running.\r\n\r\nClick 'Next' to continue."
72 ;!define MUI_FINISHPAGE_LINK "Install WinPcap to be able to capture packets from a network!"
73 ;!define MUI_FINISHPAGE_LINK_LOCATION "http://www.winpcap.org"
74
75 ; NSIS shows Readme files by opening the Readme file with the default application for
76 ; the file's extension. "README.win32" won't work in most cases, because extension "win32"
77 ; is usually not associated with an appropriate text editor. We should use extension "txt"
78 ; for a text file or "html" for an html README file.
79 !define MUI_FINISHPAGE_SHOWREADME "$INSTDIR\NEWS.txt"
80 !define MUI_FINISHPAGE_SHOWREADME_TEXT "Show News"
81 !define MUI_FINISHPAGE_SHOWREADME_NOTCHECKED
82 !define MUI_FINISHPAGE_RUN "$INSTDIR\wireshark.exe"
83 !define MUI_FINISHPAGE_RUN_NOTCHECKED
84
85
86
87 !define MUI_PAGE_CUSTOMFUNCTION_SHOW myShowCallback
88
89 ; ============================================================================
90 ; MUI Pages
91 ; ============================================================================
92
93 !insertmacro MUI_PAGE_WELCOME
94 !insertmacro MUI_PAGE_LICENSE "..\..\COPYING"
95 !insertmacro MUI_PAGE_COMPONENTS
96 Page custom DisplayAdditionalTasksPage
97 !insertmacro MUI_PAGE_DIRECTORY
98 Page custom DisplayWinPcapPage
99 !insertmacro MUI_PAGE_INSTFILES
100 !insertmacro MUI_PAGE_FINISH
101
102 !insertmacro MUI_UNPAGE_WELCOME
103 !insertmacro MUI_UNPAGE_CONFIRM
104 !insertmacro MUI_UNPAGE_COMPONENTS
105 !insertmacro MUI_UNPAGE_INSTFILES
106 !insertmacro MUI_UNPAGE_FINISH
107
108 ; ============================================================================
109 ; MUI Languages
110 ; ============================================================================
111
112 !insertmacro MUI_LANGUAGE "English"
113
114 ; ============================================================================
115 ; Reserve Files
116 ; ============================================================================
117
118   ;Things that need to be extracted on first (keep these lines before any File command!)
119   ;Only useful for BZIP2 compression
120
121   ReserveFile "AdditionalTasksPage.ini"
122   ReserveFile "WinPcapPage.ini"
123   !insertmacro MUI_RESERVEFILE_INSTALLOPTIONS
124
125 ; ============================================================================
126 ; Section macros
127 ; ============================================================================
128 !include "Sections.nsh"
129
130 ; ========= Macro to unselect and disable a section =========
131
132 !macro DisableSection SECTION
133
134   Push $0
135     SectionGetFlags "${SECTION}" $0
136     IntOp $0 $0 & ${SECTION_OFF}
137     IntOp $0 $0 | ${SF_RO}
138     SectionSetFlags "${SECTION}" $0
139   Pop $0
140
141 !macroend
142
143 ; ========= Macro to enable (unreadonly) a section =========
144 !define SECTION_ENABLE   0xFFFFFFEF
145 !macro EnableSection SECTION
146
147   Push $0
148     SectionGetFlags "${SECTION}" $0
149     IntOp $0 $0 & ${SECTION_ENABLE}
150     SectionSetFlags "${SECTION}" $0
151   Pop $0
152
153 !macroend
154
155 ; ============================================================================
156 ; Services
157 ; ============================================================================
158 !include "servicelib.nsh"
159
160 ; ============================================================================
161 ; Command Line
162 ; ============================================================================
163 !include "FileFunc.nsh"
164
165 !insertmacro GetParameters
166 !insertmacro GetOptions
167
168 ; ============================================================================
169 ; License page configuration
170 ; ============================================================================
171 LicenseText "Wireshark is distributed under the GNU General Public License."
172 LicenseData "..\..\COPYING"
173
174 ; ============================================================================
175 ; Component page configuration
176 ; ============================================================================
177 ComponentText "The following components are available for installation."
178
179 ; Component check boxes
180 ; Commented out for NSIS v 2.0
181 ; EnabledBitmap "..\..\image\nsis-checked.bmp"
182 ; DisabledBitmap "..\..\image\nsis-unchecked.bmp"
183
184 ; ============================================================================
185 ; Directory selection page configuration
186 ; ============================================================================
187 ; The text to prompt the user to enter a directory
188 DirText "Choose a directory in which to install Wireshark."
189
190 ; The default installation directory
191 !if ${WIRESHARK_TARGET_PLATFORM} == "win64"
192   InstallDir $PROGRAMFILES64\Wireshark
193 !else
194   InstallDir $PROGRAMFILES\Wireshark
195 !endif
196
197 ; See if this is an upgrade; if so, use the old InstallDir as default
198 InstallDirRegKey HKEY_LOCAL_MACHINE SOFTWARE\Wireshark "InstallDir"
199
200
201 ; ============================================================================
202 ; Install page configuration
203 ; ============================================================================
204 ShowInstDetails show
205 ShowUninstDetails show
206
207 ; ============================================================================
208 ; Functions and macros
209 ; ============================================================================
210 !macro UpdateIcons
211         Push $R0
212         Push $R1
213         Push $R2
214
215         !define UPDATEICONS_UNIQUE ${__LINE__}
216
217         IfFileExists "$SYSDIR\shell32.dll" UpdateIcons.ok_shell32_${UPDATEICONS_UNIQUE} UpdateIcons.error_shell32_${UPDATEICONS_UNIQUE}
218 UpdateIcons.ok_shell32_${UPDATEICONS_UNIQUE}:
219         System::Call 'shell32.dll::SHChangeNotify(i, i, i, i) v (${SHCNE_ASSOCCHANGED}, ${SHCNF_IDLIST}, 0, 0)'
220         Goto UpdateIcons.quit_${UPDATEICONS_UNIQUE}
221
222 UpdateIcons.error_shell32_${UPDATEICONS_UNIQUE}:
223         MessageBox MB_OK|MB_ICONSTOP  \
224             "Can't find 'shell32.dll' library. Impossible to update icons" \
225             /SD IDOK
226         Goto UpdateIcons.quit_${UPDATEICONS_UNIQUE}
227
228 UpdateIcons.quit_${UPDATEICONS_UNIQUE}:
229         !undef UPDATEICONS_UNIQUE
230         Pop $R2
231         Pop $R1
232         Pop $R0
233
234 !macroend
235
236 Function Associate
237         ; $R0 should contain the prefix to associate to Wireshark
238         Push $R1
239
240         ReadRegStr $R1 HKCR $R0 ""
241         StrCmp $R1 "" Associate.doRegister
242         Goto Associate.end
243 Associate.doRegister:
244         ;The extension is not associated to any program, we can do the link
245         WriteRegStr HKCR $R0 "" ${WIRESHARK_ASSOC}
246 Associate.end:
247         pop $R1
248 FunctionEnd
249
250 Function un.unlink
251         ; $R0 should contain the prefix to unlink
252         Push $R1
253
254         ReadRegStr $R1 HKCR $R0 ""
255         StrCmp $R1 ${WIRESHARK_ASSOC} un.unlink.doUnlink
256         Goto un.unlink.end
257 un.unlink.doUnlink:
258         ; The extension is associated with Wireshark so, we must destroy this!
259         DeleteRegKey HKCR $R0
260 un.unlink.end:
261         pop $R1
262 FunctionEnd
263
264 Var OLD_UNINSTALLER
265 Var OLD_INSTDIR
266 Var OLD_DISPLAYNAME
267 Var TMP_UNINSTALLER
268
269 ; ============================================================================
270 ; 64-bit support
271 ; ============================================================================
272 !include x64.nsh
273
274 Function .onInit
275   !if ${WIRESHARK_TARGET_PLATFORM} == "win64"
276     ; http://forums.winamp.com/printthread.php?s=16ffcdd04a8c8d52bee90c0cae273ac5&threadid=262873
277     ${IfNot} ${RunningX64}
278       MessageBox MB_OK "This version of Wireshark only runs on x64 machines.\nTry installing the 32-bit version instead."
279       Abort
280     ${EndIf}
281   !endif
282
283   ; Copied from http://nsis.sourceforge.net/Auto-uninstall_old_before_installing_new
284   ReadRegStr $OLD_UNINSTALLER HKLM \
285     "Software\Microsoft\Windows\CurrentVersion\Uninstall\Wireshark" \
286     "UninstallString"
287   StrCmp $OLD_UNINSTALLER "" done
288
289   ReadRegStr $OLD_INSTDIR HKLM \
290     "Software\Microsoft\Windows\CurrentVersion\App Paths\wireshark.exe" \
291     "Path"
292   StrCmp $OLD_INSTDIR "" done
293
294   ReadRegStr $OLD_DISPLAYNAME HKLM \
295     "Software\Microsoft\Windows\CurrentVersion\Uninstall\Wireshark" \
296     "DisplayName"
297   StrCmp $OLD_DISPLAYNAME "" done
298
299   MessageBox MB_YESNOCANCEL|MB_ICONQUESTION \
300     "$OLD_DISPLAYNAME is already installed.\
301     $\n$\nWould you like to uninstall it first?" \
302       /SD IDYES \
303       IDYES prep_uninstaller \
304       IDNO done
305   Abort
306  
307 ; Copy the uninstaller to $TEMP and run it.
308 ; The uninstaller normally does this by itself, but doesn't wait around
309 ; for the executable to finish, which means ExecWait won't work correctly.
310 prep_uninstaller:
311   ClearErrors
312   StrCpy $TMP_UNINSTALLER "$TEMP\wireshark_uninstaller.exe"
313   ; ...because we surround UninstallString in quotes.
314   StrCpy $0 $OLD_UNINSTALLER -1 1
315   StrCpy $1 "$TEMP\wireshark_uninstaller.exe"
316   StrCpy $2 1
317   System::Call 'kernel32::CopyFile(t r0, t r1, b r2) 1'
318   IfSilent silent_uninstall
319   ExecWait "$TMP_UNINSTALLER _?=$OLD_INSTDIR"
320   Goto cleanup
321
322 silent_uninstall:
323   ExecWait "$TMP_UNINSTALLER /S _?=$OLD_INSTDIR"
324
325 cleanup:
326   Delete "$TMP_UNINSTALLER"
327   
328 done:
329   ;Extract InstallOptions INI files
330   !insertmacro MUI_INSTALLOPTIONS_EXTRACT "AdditionalTasksPage.ini"
331   !insertmacro MUI_INSTALLOPTIONS_EXTRACT "WinpcapPage.ini"
332 FunctionEnd
333
334 Function DisplayAdditionalTasksPage
335   !insertmacro MUI_HEADER_TEXT "Select Additional Tasks" "Which additional tasks should be done?"
336   !insertmacro MUI_INSTALLOPTIONS_DISPLAY "AdditionalTasksPage.ini"
337 FunctionEnd
338
339 Function DisplayWinPcapPage
340   !insertmacro MUI_HEADER_TEXT "Install WinPcap?" "WinPcap is required to capture live network data. Should WinPcap be installed?"
341   !insertmacro MUI_INSTALLOPTIONS_DISPLAY "WinPcapPage.ini"
342 FunctionEnd
343
344 ; ============================================================================
345 ; Installation execution commands
346 ; ============================================================================
347
348 Var WINPCAP_UNINSTALL ;declare variable for holding the value of a registry key
349 ;Var WIRESHARK_UNINSTALL ;declare variable for holding the value of a registry key
350
351 Section "-Required"
352 ;-------------------------------------------
353
354 ;
355 ; Install for every user
356 ;
357 SetShellVarContext all
358
359
360
361 SetOutPath $INSTDIR
362 File "..\..\wiretap\wiretap-${WTAP_VERSION}.dll"
363 !ifdef ENABLE_LIBWIRESHARK
364 File "..\..\epan\libwireshark.dll"
365 !endif
366 File "..\..\wsutil\libwsutil.dll"
367 File "${GLIB_DIR}\bin\libgio-2.0-0.dll"
368 File "${GLIB_DIR}\bin\libglib-2.0-0.dll"
369 File "${GLIB_DIR}\bin\libgobject-2.0-0.dll"
370 File "${GLIB_DIR}\bin\libgmodule-2.0-0.dll"
371 !ifdef ICONV_DIR
372 File "${ICONV_DIR}\bin\iconv.dll"
373 !endif
374 File "${GETTEXT_DIR}\bin\${GETTEXT_DLL}"
375 !ifdef ZLIB_DIR
376 File "${ZLIB_DIR}\zlib1.dll"
377 !endif
378 !ifdef C_ARES_DIR
379 File "${C_ARES_DIR}\cares.dll"
380 !endif
381 !ifdef ADNS_DIR
382 File "${ADNS_DIR}\..\${MSVC_VARIANT}\adns\adns_dll.dll"
383 !endif
384 !ifdef PCRE_DIR
385 File "${PCRE_DIR}\bin\pcre3.dll"
386 File "${PCRE_DIR}\man\cat3\pcrepattern.3.txt"
387 !endif
388 !ifdef KFW_DIR
389 File "${KFW_DIR}\bin\comerr32.dll"
390 File "${KFW_DIR}\bin\krb5_32.dll"
391 File "${KFW_DIR}\bin\k5sprt32.dll"
392 !endif
393 !ifdef GNUTLS_DIR
394 File "${GNUTLS_DIR}\bin\libgcrypt-11.dll"
395 File "${GNUTLS_DIR}\bin\libgnutls-26.dll"
396 File "${GNUTLS_DIR}\bin\libgnutls-extra-26.dll"
397 File "${GNUTLS_DIR}\bin\libgnutls-openssl-26.dll"
398 File "${GNUTLS_DIR}\bin\libgpg-error-0.dll"
399 File "${GNUTLS_DIR}\bin\libtasn1-3.dll"
400 !endif
401 !ifdef LUA_DIR
402 File "${LUA_DIR}\lua5.1.dll"
403 File "..\..\epan\wslua\init.lua"
404 File "..\..\epan\wslua\console.lua"
405 File "..\..\epan\wslua\dtd_gen.lua"
406 !endif
407 !ifdef SMI_DIR
408 File "${SMI_DIR}\lib\smi.dll"
409 !endif
410 File "..\..\README"
411 File "..\..\README.win32"
412 File "..\..\AUTHORS-SHORT"
413 File "..\..\COPYING"
414 File "NEWS.txt"
415 File "..\..\manuf"
416 File "..\..\services"
417 File "..\..\doc\ws.css"
418 File "..\..\doc\wireshark.html"
419 File "..\..\doc\wireshark-filter.html"
420 File "..\..\dumpcap.exe"
421 File "..\..\doc\dumpcap.html"
422 File "..\..\ipmap.html"
423
424 ; C-runtime redistributable
425 !ifdef VCREDIST_EXE
426 ; vcredist_x86.exe (MSVC V8) - copy and execute the redistributable installer
427 File "${VCREDIST_EXE}"
428 ExecWait '"$INSTDIR\vcredist_x86.exe"' $0
429 DetailPrint "vcredist_x86 returned $0"
430 !else
431 !ifdef MSVCR_DLL
432 ; msvcr*.dll (MSVC V7 or V7.1) - simply copy the dll file
433 !echo "IF YOU GET AN ERROR HERE, check the MSVC_VARIANT setting in config.nmake: MSVC2005 vs. MSVC2005EE!"
434 File "${MSVCR_DLL}"
435 !else
436 !if ${MSVC_VARIANT} != "MSVC6"
437 !error "C-Runtime redistributable for this package not available / not redistributable!"
438 !endif
439 !endif  ; MSVCR_DLL
440 !endif  ; VCREDIST_EXE
441
442
443 ; global config files - don't overwrite if already existing
444 ;IfFileExists cfilters dont_overwrite_cfilters
445 File "..\..\cfilters"
446 ;dont_overwrite_cfilters:
447 ;IfFileExists colorfilters dont_overwrite_colorfilters
448 File "..\..\colorfilters"
449 ;dont_overwrite_colorfilters:
450 ;IfFileExists dfilters dont_overwrite_dfilters
451 File "..\..\dfilters"
452 ;dont_overwrite_dfilters:
453 ;IfFileExists smi_modules dont_overwrite_smi_modules
454 File "..\..\smi_modules"
455 ;dont_overwrite_smi_modules:
456
457
458 ;
459 ; Install the Diameter DTD and XML files in the "diameter" subdirectory
460 ; of the installation directory.
461 ;
462 SetOutPath $INSTDIR\diameter
463 File "..\..\diameter\chargecontrol.xml"
464 File "..\..\diameter\dictionary.dtd"
465 File "..\..\diameter\dictionary.xml"
466 File "..\..\diameter\Ericsson.xml"
467 File "..\..\diameter\etsie2e4.xml"
468 File "..\..\diameter\gqpolicy.xml"
469 File "..\..\diameter\imscxdx.xml"
470 File "..\..\diameter\mobileipv4.xml"
471 File "..\..\diameter\nasreq.xml"
472 File "..\..\diameter\sip.xml"
473 File "..\..\diameter\sunping.xml"
474 File "..\..\diameter\TGPPGmb.xml"
475 File "..\..\diameter\TGPPRx.xml"
476 File "..\..\diameter\TGPPSh.xml"
477 SetOutPath $INSTDIR
478
479
480
481 ;
482 ; Install the RADIUS directory files in the "radius" subdirectory
483 ; of the installation directory.
484 ;
485 SetOutPath $INSTDIR\radius
486 File "..\..\radius\dictionary"
487 File "..\..\radius\dictionary.3com"
488 File "..\..\radius\dictionary.3gpp"
489 File "..\..\radius\dictionary.3gpp2"
490 File "..\..\radius\dictionary.acc"
491 File "..\..\radius\dictionary.alcatel"
492 File "..\..\radius\dictionary.alteon"
493 File "..\..\radius\dictionary.altiga"
494 File "..\..\radius\dictionary.aptis"
495 File "..\..\radius\dictionary.ascend"
496 File "..\..\radius\dictionary.aruba"
497 File "..\..\radius\dictionary.bay"
498 File "..\..\radius\dictionary.bintec"
499 File "..\..\radius\dictionary.bristol"
500 File "..\..\radius\dictionary.cablelabs"
501 File "..\..\radius\dictionary.cabletron"
502 File "..\..\radius\dictionary.cisco"
503 File "..\..\radius\dictionary.cisco.bbsm"
504 File "..\..\radius\dictionary.cisco.vpn3000"
505 File "..\..\radius\dictionary.cisco.vpn5000"
506 File "..\..\radius\dictionary.colubris"
507 File "..\..\radius\dictionary.columbia_university"
508 File "..\..\radius\dictionary.compat"
509 File "..\..\radius\dictionary.cosine"
510 File "..\..\radius\dictionary.ericsson"
511 File "..\..\radius\dictionary.erx"
512 File "..\..\radius\dictionary.extreme"
513 File "..\..\radius\dictionary.foundry"
514 File "..\..\radius\dictionary.freeradius"
515 File "..\..\radius\dictionary.gandalf"
516 File "..\..\radius\dictionary.garderos"
517 File "..\..\radius\dictionary.gemtek"
518 File "..\..\radius\dictionary.itk"
519 File "..\..\radius\dictionary.juniper"
520 File "..\..\radius\dictionary.karlnet"
521 File "..\..\radius\dictionary.livingston"
522 File "..\..\radius\dictionary.localweb"
523 File "..\..\radius\dictionary.merit"
524 File "..\..\radius\dictionary.microsoft"
525 File "..\..\radius\dictionary.mikrotik"
526 File "..\..\radius\dictionary.navini"
527 File "..\..\radius\dictionary.netscreen"
528 File "..\..\radius\dictionary.nokia"
529 File "..\..\radius\dictionary.nomadix"
530 File "..\..\radius\dictionary.propel"
531 File "..\..\radius\dictionary.quintum"
532 File "..\..\radius\dictionary.redback"
533 File "..\..\radius\dictionary.redcreek"
534 File "..\..\radius\dictionary.shasta"
535 File "..\..\radius\dictionary.shiva"
536 File "..\..\radius\dictionary.sonicwall"
537 File "..\..\radius\dictionary.springtide"
538 File "..\..\radius\dictionary.starent"
539 File "..\..\radius\dictionary.t_systems_nova"
540 File "..\..\radius\dictionary.telebit"
541 File "..\..\radius\dictionary.trapeze"
542 File "..\..\radius\dictionary.tunnel"
543 File "..\..\radius\dictionary.unisphere"
544 File "..\..\radius\dictionary.unix"
545 File "..\..\radius\dictionary.usr"
546 File "..\..\radius\dictionary.valemount"
547 File "..\..\radius\dictionary.versanet"
548 File "..\..\radius\dictionary.wimax"
549 File "..\..\radius\dictionary.wispr"
550 File "..\..\radius\dictionary.xedia"
551 SetOutPath $INSTDIR
552
553 ;
554 ; install the dtds in the dtds subdirectory
555 ;
556 SetOutPath $INSTDIR\dtds
557 File "..\..\dtds\dc.dtd"
558 File "..\..\dtds\itunes.dtd"
559 File "..\..\dtds\mscml.dtd"
560 File "..\..\dtds\pocsettings.dtd"
561 File "..\..\dtds\presence.dtd"
562 File "..\..\dtds\reginfo.dtd"
563 File "..\..\dtds\rlmi.dtd"
564 File "..\..\dtds\rss.dtd"
565 File "..\..\dtds\smil.dtd"
566 File "..\..\dtds\xcap-caps.dtd"
567 File "..\..\dtds\xcap-error.dtd"
568 File "..\..\dtds\watcherinfo.dtd"
569 SetOutPath $INSTDIR
570
571 ; Install the TPNCP DAT file in the "tpncp" subdirectory
572 ; of the installation directory.
573 SetOutPath $INSTDIR\tpncp
574 File "..\..\tpncp\tpncp.dat"
575
576 ;
577 ; install the wimaxasncp TLV definitions in the wimaxasncp subdirectory
578 ;
579 SetOutPath $INSTDIR\wimaxasncp
580 File "..\..\wimaxasncp\dictionary.xml"
581 File "..\..\wimaxasncp\dictionary.dtd"
582 SetOutPath $INSTDIR
583
584 SetOutPath $INSTDIR\help
585 File "..\..\help\toc"
586 File "..\..\help\overview.txt"
587 File "..\..\help\getting_started.txt"
588 File "..\..\help\capturing.txt"
589 File "..\..\help\capture_filters.txt"
590 File "..\..\help\display_filters.txt"
591 File "..\..\help\faq.txt"
592
593 ; Write the uninstall keys for Windows
594 WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\Wireshark" "DisplayVersion" "${VERSION}"
595 WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\Wireshark" "DisplayName" "Wireshark ${VERSION}"
596 WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\Wireshark" "UninstallString" '"$INSTDIR\uninstall.exe"'
597 WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\Wireshark" "Publisher" "The Wireshark developer community, http://www.wireshark.org"
598 WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\Wireshark" "HelpLink" "mailto:wireshark-users@wireshark.org"
599 WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\Wireshark" "URLInfoAbout" "http://www.wireshark.org"
600 WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\Wireshark" "URLUpdateInfo" "http://www.wireshark.org/download/win32/"
601 WriteRegDWORD HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\Wireshark" "NoModify" 1
602 WriteRegDWORD HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\Wireshark" "NoRepair" 1
603 WriteUninstaller "uninstall.exe"
604
605 ; Write an entry for ShellExecute
606 WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\App Paths\wireshark.exe" "" '$INSTDIR\wireshark.exe'
607 WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\App Paths\wireshark.exe" "Path" '$INSTDIR'
608
609 ; Create start menu entries (depending on additional tasks page)
610 ReadINIStr $0 "$PLUGINSDIR\AdditionalTasksPage.ini" "Field 2" "State"
611 StrCmp $0 "0" SecRequired_skip_StartMenu
612 SetOutPath $PROFILE
613 ;CreateDirectory "$SMPROGRAMS\Wireshark"
614 ; To qoute "http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwue/html/ch11d.asp":
615 ; "Do not include Readme, Help, or Uninstall entries on the Programs menu."
616 Delete "$SMPROGRAMS\Wireshark\Wireshark Web Site.lnk"
617 ;WriteINIStr "$SMPROGRAMS\Wireshark\Wireshark Web Site.url" "InternetShortcut" "URL" "http://www.wireshark.org/"
618 CreateShortCut "$SMPROGRAMS\Wireshark.lnk" "$INSTDIR\wireshark.exe" "" "$INSTDIR\wireshark.exe" 0 "" "" "The Wireshark Network Protocol Analyzer"
619 ;CreateShortCut "$SMPROGRAMS\Wireshark\Wireshark Manual.lnk" "$INSTDIR\wireshark.html"
620 ;CreateShortCut "$SMPROGRAMS\Wireshark\Display Filters Manual.lnk" "$INSTDIR\wireshark-filter.html"
621 ;CreateShortCut "$SMPROGRAMS\Wireshark\Wireshark Program Directory.lnk" "$INSTDIR"
622 ;CreateShortCut "$SMPROGRAMS\Wireshark\Uninstall Wireshark.lnk" "$INSTDIR\uninstall.exe"
623 SecRequired_skip_StartMenu:
624
625 ; is command line option "/desktopicon" set?
626 ${GetParameters} $R0
627 ${GetOptions} $R0 "/desktopicon=" $R1
628 StrCmp $R1 "no" SecRequired_skip_DesktopIcon
629 StrCmp $R1 "yes" SecRequired_install_DesktopIcon
630
631 ; Create desktop icon (depending on additional tasks page and command line option)
632 ReadINIStr $0 "$PLUGINSDIR\AdditionalTasksPage.ini" "Field 3" "State"
633 StrCmp $0 "0" SecRequired_skip_DesktopIcon
634 SecRequired_install_DesktopIcon:
635 CreateShortCut "$DESKTOP\Wireshark.lnk" "$INSTDIR\wireshark.exe" "" "$INSTDIR\wireshark.exe" 0 "" "" "The Wireshark Network Protocol Analyzer"
636 SecRequired_skip_DesktopIcon:
637
638 ; is command line option "/quicklaunchicon" set?
639 ${GetParameters} $R0
640 ${GetOptions} $R0 "/quicklaunchicon=" $R1
641 StrCmp $R1 "no" SecRequired_skip_QuickLaunchIcon
642 StrCmp $R1 "yes" SecRequired_install_QuickLaunchIcon
643
644 ; Create quick launch icon (depending on additional tasks page and command line option)
645 ReadINIStr $0 "$PLUGINSDIR\AdditionalTasksPage.ini" "Field 4" "State"
646 StrCmp $0 "0" SecRequired_skip_QuickLaunchIcon
647 SecRequired_install_QuickLaunchIcon:
648 CreateShortCut "$QUICKLAUNCH\Wireshark.lnk" "$INSTDIR\wireshark.exe" "" "$INSTDIR\wireshark.exe" 0 "" "" "The Wireshark Network Protocol Analyzer"
649 SecRequired_skip_QuickLaunchIcon:
650
651 ; Create File Extensions (depending on additional tasks page)
652 ReadINIStr $0 "$PLUGINSDIR\AdditionalTasksPage.ini" "Field 6" "State"
653 StrCmp $0 "0" SecRequired_skip_FileExtensions
654 WriteRegStr HKCR ${WIRESHARK_ASSOC} "" "Wireshark capture file"
655 WriteRegStr HKCR "${WIRESHARK_ASSOC}\Shell\open\command" "" '"$INSTDIR\wireshark.exe" "%1"'
656 WriteRegStr HKCR "${WIRESHARK_ASSOC}\DefaultIcon" "" '"$INSTDIR\wireshark.exe",1'
657 push $R0
658         StrCpy $R0 ".5vw"
659         Call Associate
660         StrCpy $R0 ".acp"
661         Call Associate
662         StrCpy $R0 ".apc"
663         Call Associate
664         StrCpy $R0 ".atc"
665         Call Associate
666         StrCpy $R0 ".bfr"
667         Call Associate
668         StrCpy $R0 ".cap"
669         Call Associate
670         StrCpy $R0 ".enc"
671         Call Associate
672         StrCpy $R0 ".erf"
673         Call Associate
674         StrCpy $R0 ".fdc"
675         Call Associate
676         StrCpy $R0 ".pcap"
677         Call Associate
678         StrCpy $R0 ".pcapng"
679         Call Associate
680         StrCpy $R0 ".pkt"
681         Call Associate
682         StrCpy $R0 ".snoop"
683         Call Associate
684         StrCpy $R0 ".syc"
685         Call Associate
686         StrCpy $R0 ".tpc"
687         Call Associate
688         StrCpy $R0 ".tr1"
689         Call Associate
690         StrCpy $R0 ".trace"
691         Call Associate
692         StrCpy $R0 ".trc"
693         Call Associate
694         StrCpy $R0 ".wpc"
695         Call Associate
696         StrCpy $R0 ".wpz"
697         Call Associate
698         StrCpy $R0 ".rf5"
699         Call Associate
700 ; if somethings added here, add it also to the uninstall section and the AdditionalTask page
701 pop $R0
702 !insertmacro UpdateIcons
703 SecRequired_skip_FileExtensions:
704
705 ; if running as a silent installer, don't try to install winpcap
706 IfSilent SecRequired_skip_Winpcap
707
708 ; Install WinPcap (depending on winpcap page setting)
709 ReadINIStr $0 "$PLUGINSDIR\WinPcapPage.ini" "Field 4" "State"
710 StrCmp $0 "0" SecRequired_skip_Winpcap
711 ; Uinstall old WinPcap first
712 ReadRegStr $WINPCAP_UNINSTALL HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\WinPcapInst" "UninstallString"
713 IfErrors lbl_winpcap_notinstalled ;if RegKey is unavailable, WinPcap is not installed
714 ; from released version 3.1, WinPcap will uninstall an old version by itself
715 ;ExecWait '$WINPCAP_UNINSTALL' $0
716 ;DetailPrint "WinPcap uninstaller returned $0"
717 lbl_winpcap_notinstalled:
718 SetOutPath $INSTDIR
719 File "WinPcap_4_1_beta5.exe"
720 ExecWait '"$INSTDIR\WinPcap_4_1_beta5.exe"' $0
721 DetailPrint "WinPcap installer returned $0"
722 SecRequired_skip_Winpcap:
723
724 ; Load Winpcap NPF service at startup (depending on winpcap page)
725 ReadINIStr $0 "$PLUGINSDIR\WinPcapPage.ini" "Field 8" "State"
726 StrCmp $0 "0" SecRequired_no_WinpcapService
727 WriteRegDWORD HKEY_LOCAL_MACHINE "SYSTEM\CurrentControlSet\Services\NPF" "Start" 2 ;set NPF to (SERVICE_AUTO_START)
728 !insertmacro SERVICE "start" "NPF" ""
729 Goto SecRequired_done_WinpcapService
730 SecRequired_no_WinpcapService:
731 WriteRegDWORD HKEY_LOCAL_MACHINE "SYSTEM\CurrentControlSet\Services\NPF" "Start" 3 ;set NPF to (SERVICE_DEMAND_START)
732 !insertmacro SERVICE "stop" "NPF" ""
733 SecRequired_done_WinpcapService:
734
735 ; If no user profile exists for Wireshark but for Ethereal, copy it over
736 SetShellVarContext current
737 IfFileExists $APPDATA\Wireshark profile_done
738 IfFileExists $APPDATA\Ethereal 0 profile_done
739 ;MessageBox MB_YESNO "This seems to be the first time you use Wireshark. Copy over the personal settings from Ethereal?" /SD IDYES IDNO profile_done
740 CreateDirectory $APPDATA\Wireshark
741 CopyFiles $APPDATA\Ethereal\*.* $APPDATA\Wireshark
742 profile_done:
743 SetShellVarContext all
744
745 SectionEnd ; "Required"
746
747 !ifdef GTK_DIR
748 Section "Wireshark" SecWireshark
749 ;-------------------------------------------
750 SetOutPath $INSTDIR
751 File "..\..\wireshark.exe"
752 File "${GTK_DIR}\bin\libgdk-win32-2.0-0.dll"
753 File "${GTK_DIR}\bin\libgdk_pixbuf-2.0-0.dll"
754 File "${GTK_DIR}\bin\libgtk-win32-2.0-0.dll"
755 File "${GTK_DIR}\bin\libatk-1.0-0.dll"
756 File "${GTK_DIR}\bin\libpango-1.0-0.dll"
757 File "${GTK_DIR}\bin\libpangowin32-1.0-0.dll"
758 !ifdef NEED_CAIRO_DLL
759 File "${GTK_DIR}\bin\libcairo-2.dll"
760 File "${GTK_DIR}\bin\libpangocairo-1.0-0.dll"
761 !endif
762 !ifdef NEED_LIBPNG_DLL
763 File "${GTK_DIR}\bin\libpng12-0.dll"
764 !endif
765 !ifdef NEED_LIBTIFF_DLL
766 File "${GTK_DIR}\bin\${TIFF_DLL}"
767 !endif
768 !ifdef NEED_LIBJPEG_DLL
769 File "${GTK_DIR}\bin\${JPEG_DLL}"
770 !endif
771 SetOutPath $INSTDIR\etc\gtk-2.0
772 File "${GTK_DIR}\etc\gtk-2.0\*.*"
773
774 !if ${WIRESHARK_TARGET_PLATFORM} == "win32"
775 SetOutPath $INSTDIR\etc\pango
776 File "${GTK_DIR}\etc\pango\pango.*"
777 SetOutPath $INSTDIR\lib\gtk-2.0\${GTK_LIB_DIR}\loaders
778 File "${GTK_DIR}\lib\gtk-2.0\${GTK_LIB_DIR}\loaders\libpixbufloader-*.dll"
779 !endif
780
781 SetOutPath $INSTDIR\lib\gtk-2.0\${GTK_LIB_DIR}\engines
782 File "${GTK_DIR}\lib\gtk-2.0\${GTK_LIB_DIR}\engines\libpixmap.dll"
783 SetOutPath $INSTDIR\lib\gtk-2.0\modules
784 File "${GTK_DIR}\lib\gtk-2.0\modules\libgail.dll"
785 # Not needed with pango 1.14.5
786 #SetOutPath $INSTDIR\lib\pango\${PANGO_LIB_DIR}\modules
787 #File "${GTK_DIR}\lib\pango\${PANGO_LIB_DIR}\modules\pango-*.dll"
788
789 ; GTK MS-Windows Engine (GTK-Wimp)
790 SetOutPath $INSTDIR\${GTK_WIMP_DLLDST_DIR}
791 File "${GTK_WIMP_DLLSRC_DIR}\libwimp.dll"
792 SetOutPath $INSTDIR\${GTK_WIMP_RCDST_DIR}
793 File "${GTK_WIMP_RCSRC_DIR}\gtkrc"
794
795 SectionEnd ; "Wireshark"
796 !endif
797
798
799 Section "TShark" SecTShark
800 ;-------------------------------------------
801 SetOutPath $INSTDIR
802 File "..\..\tshark.exe"
803 File "..\..\doc\tshark.html"
804 SectionEnd
805
806 SectionGroup "Plugins / Extensions" SecPluginsGroup
807
808 Section "Dissector Plugins" SecPlugins
809 ;-------------------------------------------
810 SetOutPath '$INSTDIR\plugins\${VERSION}'
811 File "..\..\plugins\asn1\asn1.dll"
812 File "..\..\plugins\docsis\docsis.dll"
813 File "..\..\plugins\ethercat\ethercat.dll"
814 File "..\..\plugins\giop\coseventcomm.dll"
815 File "..\..\plugins\giop\cosnaming.dll"
816 File "..\..\plugins\giop\parlay.dll"
817 File "..\..\plugins\giop\tango.dll"
818 File "..\..\plugins\gryphon\gryphon.dll"
819 File "..\..\plugins\irda\irda.dll"
820 File "..\..\plugins\m2m\m2m.dll"
821 File "..\..\plugins\opcua\opcua.dll"
822 File "..\..\plugins\profinet\profinet.dll"
823 File "..\..\plugins\sercosiii\sercosiii.dll"
824 File "..\..\plugins\unistim\unistim.dll"
825 File "..\..\plugins\wimax\wimax.dll"
826 File "..\..\plugins\wimaxasncp\wimaxasncp.dll"
827 SectionEnd
828
829 Section "Tree Statistics Plugin" SecStatsTree
830 ;-------------------------------------------
831 SetOutPath '$INSTDIR\plugins\${VERSION}'
832 File "..\..\plugins\stats_tree\stats_tree.dll"
833 SectionEnd
834
835 Section "Mate - Meta Analysis and Tracing Engine" SecMate
836 ;-------------------------------------------
837 SetOutPath '$INSTDIR\plugins\${VERSION}'
838 File "..\..\plugins\mate\mate.dll"
839 SectionEnd
840
841
842 !ifdef NET_SNMP_DIR
843 Section "SNMP MIBs" SecMIBs
844 ;-------------------------------------------
845 SetOutPath $INSTDIR\snmp\mibs
846 File "${NET_SNMP_DIR}\mibs\*.txt"
847 SectionEnd
848 !endif
849
850 !ifdef SMI_DIR
851 Section "SNMP MIBs" SecMIBs
852 ;-------------------------------------------
853 SetOutPath $INSTDIR\snmp\mibs
854 File "${SMI_DIR}\mibs\*"
855 SectionEnd
856 !endif
857
858 SectionGroupEnd ; "Plugins / Extensions"
859
860
861 SectionGroup "Tools" SecToolsGroup
862
863 Section "Editcap" SecEditcap
864 ;-------------------------------------------
865 SetOutPath $INSTDIR
866 File "..\..\editcap.exe"
867 File "..\..\doc\editcap.html"
868 SectionEnd
869
870 Section "Text2Pcap" SecText2Pcap
871 ;-------------------------------------------
872 SetOutPath $INSTDIR
873 File "..\..\text2pcap.exe"
874 File "..\..\doc\text2pcap.html"
875 SectionEnd
876
877 Section "Mergecap" SecMergecap
878 ;-------------------------------------------
879 SetOutPath $INSTDIR
880 File "..\..\mergecap.exe"
881 File "..\..\doc\mergecap.html"
882 SectionEnd
883
884 Section "Capinfos" SecCapinfos
885 ;-------------------------------------------
886 SetOutPath $INSTDIR
887 File "..\..\capinfos.exe"
888 File "..\..\doc\capinfos.html"
889 SectionEnd
890
891 Section "Rawshark" SecRawshark
892 ;-------------------------------------------
893 SetOutPath $INSTDIR
894 File "..\..\rawshark.exe"
895 File "..\..\doc\rawshark.html"
896 SectionEnd
897
898 SectionGroupEnd ; "Tools"
899
900 !ifdef HHC_DIR
901 Section "User's Guide" SecUsersGuide
902 ;-------------------------------------------
903 SetOutPath $INSTDIR
904 File "user-guide.chm"
905 SectionEnd
906 !endif
907
908 Section "Uninstall" un.SecUinstall
909 ;-------------------------------------------
910
911 ;
912 ; UnInstall for every user
913 ;
914 SectionIn 1 2
915 SetShellVarContext all
916
917 Delete "$INSTDIR\rawshark.exe"
918 IfErrors 0 NoRawsharkErrorMsg
919         MessageBox MB_OK "Please note: rawshark.exe could not be removed, it's probably in use!" IDOK 0 ;skipped if rawshark.exe removed
920         Abort "Please note: rawshark.exe could not be removed, it's probably in use! Abort uninstall process!"
921 NoRawsharkErrorMsg:
922
923 Delete "$INSTDIR\tshark.exe"
924 IfErrors 0 NoTSharkErrorMsg
925         MessageBox MB_OK "Please note: tshark.exe could not be removed, it's probably in use!" IDOK 0 ;skipped if tshark.exe removed
926         Abort "Please note: tshark.exe could not be removed, it's probably in use! Abort uninstall process!"
927 NoTSharkErrorMsg:
928
929 Delete "$INSTDIR\wireshark.exe"
930 IfErrors 0 NoWiresharkErrorMsg
931         MessageBox MB_OK "Please note: wireshark.exe could not be removed, it's probably in use!" IDOK 0 ;skipped if wireshark.exe removed
932         Abort "Please note: wireshark.exe could not be removed, it's probably in use! Abort uninstall process!"
933 NoWiresharkErrorMsg:
934
935 DeleteRegKey HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\Wireshark"
936 DeleteRegKey HKEY_LOCAL_MACHINE "Software\Wireshark"
937 DeleteRegKey HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\App Paths\wireshark.exe"
938
939 push $R0
940         StrCpy $R0 ".5vw"
941         Call un.unlink
942         StrCpy $R0 ".acp"
943         Call un.unlink
944         StrCpy $R0 ".apc"
945         Call un.unlink
946         StrCpy $R0 ".atc"
947         Call un.unlink
948         StrCpy $R0 ".bfr"
949         Call un.unlink
950         StrCpy $R0 ".cap"
951         Call un.unlink
952         StrCpy $R0 ".enc"
953         Call un.unlink
954         StrCpy $R0 ".erf"
955         Call un.unlink
956         StrCpy $R0 ".fdc"
957         Call un.unlink
958         StrCpy $R0 ".pcap"
959         Call un.unlink
960         StrCpy $R0 ".pkt"
961         Call un.unlink
962         StrCpy $R0 ".snoop"
963         Call un.unlink
964         StrCpy $R0 ".syc"
965         Call un.unlink
966         StrCpy $R0 ".tpc"
967         Call un.unlink
968         StrCpy $R0 ".tr1"
969         Call un.unlink
970         StrCpy $R0 ".trace"
971         Call un.unlink
972         StrCpy $R0 ".trc"
973         Call un.unlink
974         StrCpy $R0 ".wpc"
975         Call un.unlink
976         StrCpy $R0 ".wpz"
977         Call un.unlink
978         StrCpy $R0 ".rf5"
979         Call un.unlink
980 pop $R0
981
982 DeleteRegKey HKCR ${WIRESHARK_ASSOC}
983 DeleteRegKey HKCR "${WIRESHARK_ASSOC}\Shell\open\command"
984 DeleteRegKey HKCR "${WIRESHARK_ASSOC}\DefaultIcon"
985 !insertmacro UpdateIcons
986
987 Delete "$INSTDIR\etc\gtk-2.0\*.*"
988 Delete "$INSTDIR\etc\pango\*.*"
989 Delete "$INSTDIR\lib\gtk-2.0\2.2.0\engines\*.*"
990 Delete "$INSTDIR\lib\gtk-2.0\2.2.0\loaders\*.*"
991 Delete "$INSTDIR\lib\gtk-2.0\2.2.0\immodules\*.*"
992 Delete "$INSTDIR\lib\gtk-2.0\2.4.0\engines\*.*"
993 Delete "$INSTDIR\lib\gtk-2.0\2.4.0\loaders\*.*"
994 Delete "$INSTDIR\lib\gtk-2.0\2.4.0\immodules\*.*"
995 Delete "$INSTDIR\lib\gtk-2.0\2.10.0\engines\*.*"
996 Delete "$INSTDIR\lib\gtk-2.0\2.10.0\loaders\*.*"
997 Delete "$INSTDIR\lib\gtk-2.0\2.10.0\immodules\*.*"
998 Delete "$INSTDIR\lib\gtk-2.0\modules\*.*"
999 Delete "$INSTDIR\lib\pango\1.2.0\modules\*.*"
1000 Delete "$INSTDIR\lib\pango\1.4.0\modules\*.*"
1001 Delete "$INSTDIR\lib\pango\1.5.0\modules\*.*"
1002 Delete "$INSTDIR\share\themes\Default\gtk-2.0\*.*"
1003 Delete "$INSTDIR\help\*.*"
1004 Delete "$INSTDIR\diameter\*.*"
1005 Delete "$INSTDIR\snmp\mibs\*.*"
1006 Delete "$INSTDIR\snmp\*.*"
1007 Delete "$INSTDIR\tpncp\*.*"
1008 Delete "$INSTDIR\wimaxasncp\*.*"
1009 Delete "$INSTDIR\*.exe"
1010 Delete "$INSTDIR\*.dll"
1011 Delete "$INSTDIR\*.html"
1012 Delete "$INSTDIR\ws.css"
1013 Delete "$INSTDIR\COPYING"
1014 Delete "$INSTDIR\AUTHORS-SHORT"
1015 ; previous versions installed these files
1016 Delete "$INSTDIR\*.manifest"
1017 ; previous versions installed this file
1018 Delete "$INSTDIR\AUTHORS-SHORT-FORMAT"
1019 Delete "$INSTDIR\README*"
1020 Delete "$INSTDIR\NEWS.txt"
1021 Delete "$INSTDIR\manuf"
1022 Delete "$INSTDIR\services"
1023 Delete "$INSTDIR\pcrepattern.3.txt"
1024 Delete "$INSTDIR\user-guide.chm"
1025 Delete "$INSTDIR\example_snmp_users_file"
1026 Delete "$INSTDIR\ipmap.html"
1027 Delete "$INSTDIR\radius\*.*"
1028 Delete "$INSTDIR\dtds\*.*"
1029 Delete "$SMPROGRAMS\Wireshark\*.*"
1030 Delete "$SMPROGRAMS\Wireshark.lnk"
1031 Delete "$DESKTOP\Wireshark.lnk"
1032 Delete "$QUICKLAUNCH\Wireshark.lnk"
1033
1034 RMDir "$INSTDIR\etc\gtk-2.0"
1035 RMDir "$INSTDIR\etc\pango"
1036 RMDir "$INSTDIR\etc"
1037 RMDir "$INSTDIR\lib\gtk-2.0\2.2.0\engines"
1038 RMDir "$INSTDIR\lib\gtk-2.0\2.2.0\loaders"
1039 RMDir "$INSTDIR\lib\gtk-2.0\2.2.0\immodules"
1040 RMDir "$INSTDIR\lib\gtk-2.0\2.2.0"
1041 RMDir "$INSTDIR\lib\gtk-2.0\2.4.0\engines"
1042 RMDir "$INSTDIR\lib\gtk-2.0\2.4.0\loaders"
1043 RMDir "$INSTDIR\lib\gtk-2.0\2.4.0\immodules"
1044 RMDir "$INSTDIR\lib\gtk-2.0\2.4.0"
1045 RMDir "$INSTDIR\lib\gtk-2.0\2.10.0\engines"
1046 RMDir "$INSTDIR\lib\gtk-2.0\2.10.0\loaders"
1047 RMDir "$INSTDIR\lib\gtk-2.0\2.10.0\immodules"
1048 RMDir "$INSTDIR\lib\gtk-2.0\2.10.0"
1049 RMDir "$INSTDIR\lib\gtk-2.0\modules"
1050 RMDir "$INSTDIR\lib\gtk-2.0"
1051 RMDir "$INSTDIR\lib\pango\1.2.0\modules"
1052 RMDir "$INSTDIR\lib\pango\1.2.0"
1053 RMDir "$INSTDIR\lib\pango\1.4.0\modules"
1054 RMDir "$INSTDIR\lib\pango\1.4.0"
1055 RMDir "$INSTDIR\lib\pango\1.5.0\modules"
1056 RMDir "$INSTDIR\lib\pango\1.5.0"
1057 RMDir "$INSTDIR\lib\pango"
1058 RMDir "$INSTDIR\lib"
1059 RMDir "$INSTDIR\share\themes\Default\gtk-2.0"
1060 RMDir "$INSTDIR\share\themes\Default"
1061 RMDir "$INSTDIR\share\themes"
1062 RMDir "$INSTDIR\share"
1063 RMDir "$SMPROGRAMS\Wireshark"
1064 RMDir "$INSTDIR\help"
1065 RMDir "$INSTDIR\diameter"
1066 RMDir "$INSTDIR\snmp\mibs"
1067 RMDir "$INSTDIR\snmp"
1068 RMDir "$INSTDIR\radius"
1069 RMDir "$INSTDIR\dtds"
1070 RMDir "$INSTDIR\tpncp"
1071 RMDir "$INSTDIR\wimaxasncp"
1072 RMDir "$INSTDIR"
1073
1074 SectionEnd ; "Uinstall"
1075
1076 Section "Un.Plugins" un.SecPlugins
1077 ;-------------------------------------------
1078 SectionIn 1 2
1079 ;Delete "$INSTDIR\plugins\${VERSION}\*.*"
1080 ;Delete "$INSTDIR\plugins\*.*"
1081 ;RMDir "$INSTDIR\plugins\${VERSION}"
1082 ;RMDir "$INSTDIR\plugins"
1083 RMDir /r "$INSTDIR\plugins"
1084 SectionEnd
1085
1086 Section "Un.Global Settings" un.SecGlobalSettings
1087 ;-------------------------------------------
1088 SectionIn 1 2
1089 Delete "$INSTDIR\cfilters"
1090 Delete "$INSTDIR\colorfilters"
1091 Delete "$INSTDIR\dfilters"
1092 Delete "$INSTDIR\init.lua"
1093 Delete "$INSTDIR\console.lua"
1094 Delete "$INSTDIR\dtd_gen.lua"
1095 Delete "$INSTDIR\smi_modules"
1096 RMDir "$INSTDIR"
1097 SectionEnd
1098
1099 Section /o "Un.Personal Settings" un.SecPersonalSettings
1100 ;-------------------------------------------
1101 SectionIn 2
1102 SetShellVarContext current
1103 Delete "$APPDATA\Wireshark\*.*"
1104 RMDir "$APPDATA\Wireshark"
1105 SectionEnd
1106
1107 ;VAR un.WINPCAP_UNINSTALL
1108
1109 Section /o "Un.WinPcap" un.SecWinPcap
1110 ;-------------------------------------------
1111 SectionIn 2
1112 ReadRegStr $1 HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\WinPcapInst" "UninstallString"
1113 ;IfErrors un.lbl_winpcap_notinstalled ;if RegKey is unavailable, WinPcap is not installed
1114 ;MessageBox MB_OK "WinPcap $1"
1115 ExecWait '$1' $0
1116 DetailPrint "WinPcap uninstaller returned $0"
1117 ;SetRebootFlag true
1118 ;un.lbl_winpcap_notinstalled:
1119 SectionEnd
1120
1121 Section "-Un.Finally"
1122 ;-------------------------------------------
1123 SectionIn 1 2
1124 ; this test must be done after all other things uninstalled (e.g. Global Settings)
1125 IfFileExists "$INSTDIR" 0 NoFinalErrorMsg
1126     MessageBox MB_OK "Please note: The directory $INSTDIR could not be removed!" IDOK 0 ; skipped if dir doesn't exist
1127 NoFinalErrorMsg:
1128 SectionEnd
1129
1130
1131 ; ============================================================================
1132 ; PLEASE MAKE SURE, THAT THE DESCRIPTIVE TEXT FITS INTO THE DESCRIPTION FIELD!
1133 ; ============================================================================
1134 !insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
1135 !ifdef GTK_DIR
1136   !insertmacro MUI_DESCRIPTION_TEXT ${SecWireshark} "${PROGRAM_NAME} is a GUI network protocol analyzer."
1137 !endif
1138   !insertmacro MUI_DESCRIPTION_TEXT ${SecTShark} "TShark is a text based network protocol analyzer."
1139   !insertmacro MUI_DESCRIPTION_TEXT ${SecPluginsGroup} "Some plugins and extensions for both Wireshark and TShark."
1140   !insertmacro MUI_DESCRIPTION_TEXT ${SecPlugins} "Plugins with some extended dissections."
1141   !insertmacro MUI_DESCRIPTION_TEXT ${SecStatsTree} "Plugin for some extended statistics."
1142   !insertmacro MUI_DESCRIPTION_TEXT ${SecMate} "Plugin - Meta Analysis and Tracing Engine (Experimental)."
1143 !ifdef NET_SNMP_DIR
1144   !insertmacro MUI_DESCRIPTION_TEXT ${SecMIBs} "SNMP MIBs for better SNMP dissection."
1145 !endif
1146 !ifdef SMI_DIR
1147   !insertmacro MUI_DESCRIPTION_TEXT ${SecMIBs} "SNMP MIBs for better SNMP dissection."
1148 !endif
1149   !insertmacro MUI_DESCRIPTION_TEXT ${SecToolsGroup} "Additional command line based tools."
1150   !insertmacro MUI_DESCRIPTION_TEXT ${SecEditCap} "Editcap is a program that reads a capture file and writes some or all of the packets into another capture file."
1151   !insertmacro MUI_DESCRIPTION_TEXT ${SecText2Pcap} "Text2pcap is a program that reads in an ASCII hex dump and writes the data into a libpcap-style capture file."
1152   !insertmacro MUI_DESCRIPTION_TEXT ${SecMergecap} "Mergecap is a program that combines multiple saved capture files into a single output file"
1153   !insertmacro MUI_DESCRIPTION_TEXT ${SecCapinfos} "Capinfos is a program that provides information on capture files."
1154   !insertmacro MUI_DESCRIPTION_TEXT ${SecRawshark} "Rawshark is a raw packet filter."
1155 !ifdef HHC_DIR
1156   !insertmacro MUI_DESCRIPTION_TEXT ${SecUsersGuide} "Install the user's guide, so an internet connection is not required to read the help pages."
1157 !endif
1158 !insertmacro MUI_FUNCTION_DESCRIPTION_END
1159
1160 !insertmacro MUI_UNFUNCTION_DESCRIPTION_BEGIN
1161   !insertmacro MUI_DESCRIPTION_TEXT ${un.SecUinstall} "Uninstall all Wireshark components."
1162   !insertmacro MUI_DESCRIPTION_TEXT ${un.SecPlugins} "Uninstall all Plugins (even from previous Wireshark versions)."
1163   !insertmacro MUI_DESCRIPTION_TEXT ${un.SecGlobalSettings} "Uninstall global settings like: $INSTDIR\cfilters"
1164   !insertmacro MUI_DESCRIPTION_TEXT ${un.SecPersonalSettings} "Uninstall personal settings like your preferences file from your profile: $PROFILE."
1165   !insertmacro MUI_DESCRIPTION_TEXT ${un.SecWinPcap} "Call WinPcap's uninstall program."
1166 !insertmacro MUI_UNFUNCTION_DESCRIPTION_END
1167
1168 ; ============================================================================
1169 ; Callback functions
1170 ; ============================================================================
1171 !ifdef GTK_DIR
1172 ; Disable File extensions if Wireshark isn't selected
1173 Function .onSelChange
1174         Push $0
1175         SectionGetFlags ${SecWireshark} $0
1176         IntOp  $0 $0 & 1
1177         IntCmp $0 0 onSelChange.unselect
1178         WriteINIStr "$PLUGINSDIR\AdditionalTasksPage.ini" "Field 6" "State" 1
1179         WriteINIStr "$PLUGINSDIR\AdditionalTasksPage.ini" "Field 6" "Flags" ""
1180         WriteINIStr "$PLUGINSDIR\AdditionalTasksPage.ini" "Field 7" "Flags" ""
1181         Goto onSelChange.end
1182
1183 onSelChange.unselect:
1184         WriteINIStr "$PLUGINSDIR\AdditionalTasksPage.ini" "Field 6" "State" 0
1185         WriteINIStr "$PLUGINSDIR\AdditionalTasksPage.ini" "Field 6" "Flags" "DISABLED"
1186         WriteINIStr "$PLUGINSDIR\AdditionalTasksPage.ini" "Field 7" "Flags" "DISABLED"
1187         Goto onSelChange.end
1188
1189 onSelChange.end:
1190         Pop $0
1191 FunctionEnd
1192 !endif
1193
1194
1195 !include "GetWindowsVersion.nsh"
1196 !include WinMessages.nsh
1197 !include "VersionCompare.nsh"
1198
1199 Var NPF_START ; NPF service registry key
1200 Var WINPCAP_NAME ; DisplayName from WinPcap installation
1201 Var WINPCAP_VERSION ; DisplayVersion from WinPcap installation
1202
1203 Function myShowCallback
1204
1205         ; Get the Windows version
1206         Call GetWindowsVersion
1207         Pop $R0 ; Windows Version
1208
1209         ; Check if we're able to run with this version
1210         StrCmp $R0 '95' lbl_winversion_unsupported
1211         StrCmp $R0 '98' lbl_winversion_unsupported
1212         StrCmp $R0 'ME' lbl_winversion_unsupported
1213         StrCmp $R0 'NT 4.0' lbl_winversion_unsupported_nt4
1214         Goto lbl_winversion_supported
1215 lbl_winversion_unsupported:
1216         MessageBox MB_OK \
1217             "Windows $R0 is no longer supported. The last known version working with 98/ME was Ethereal 0.99.0!" \
1218             /SD IDOK
1219             
1220         Quit
1221
1222 lbl_winversion_unsupported_nt4:
1223         MessageBox MB_OK \
1224             "Windows $R0 is no longer supported. The last known version working with NT 4.0 was Wireshark 0.99.4!" \
1225             /SD IDOK
1226         Quit
1227
1228 lbl_winversion_supported:
1229
1230         ; detect if WinPcap should be installed
1231         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 4" "Text" "Install WinPcap 4.1 beta5"
1232         ReadRegStr $WINPCAP_NAME HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\WinPcapInst" "DisplayName"
1233         IfErrors 0 lbl_winpcap_installed ;if RegKey is available, WinPcap is already installed
1234         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 2" "Text" "WinPcap is currently not installed"
1235         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 2" "Flags" "DISABLED"
1236         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 5" "Text" "(Use Add/Remove Programs first to uninstall any undetected old WinPcap versions)"
1237         Goto lbl_winpcap_done
1238
1239 lbl_winpcap_installed:
1240         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 2" "Text" "$WINPCAP_NAME"
1241         ; Compare the installed build against the one we have.
1242         ReadRegStr $WINPCAP_VERSION HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\WinPcapInst" "DisplayVersion"
1243         StrCmp $WINPCAP_VERSION "" lbl_winpcap_do_install ; WinPcap is really old(?) or installed improperly.
1244         ${VersionCompare} $WINPCAP_VERSION "4.0.0.1452" $1 ; WinPcap 4.1 beta5
1245         StrCmp $1 "2" lbl_winpcap_do_install
1246
1247 ;lbl_winpcap_dont_install:
1248         ; The installed version is >= to what we have, so don't install
1249         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 4" "State" "0"
1250         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 5" "Text" "If selected, the currently installed $WINPCAP_NAME will be uninstalled first."
1251         Goto lbl_winpcap_done
1252
1253 ;lbl_winpcap_dont_upgrade:
1254         ; force the user to upgrade by hand
1255         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 4" "State" "0"
1256         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 4" "Flags" "DISABLED"
1257         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 5" "Text" "If you wish to install WinPcap 4.1 beta5, please uninstall $WINPCAP_NAME manually first."
1258         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 5" "Flags" "DISABLED"
1259         Goto lbl_winpcap_done
1260
1261 lbl_winpcap_do_install:
1262         ; seems to be an old version, install newer one
1263         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 4" "State" "1"
1264         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 5" "Text" "The currently installed $WINPCAP_NAME will be uninstalled first."
1265
1266 lbl_winpcap_done:
1267
1268         ; Disable NPF service setting for Win OT
1269         StrCmp $R0 '95' lbl_npf_disable
1270         StrCmp $R0 '98' lbl_npf_disable
1271         StrCmp $R0 'ME' lbl_npf_disable
1272         ; Enable NPF by default under Vista.
1273         StrCmp $R0 'Vista' lbl_npf_enable
1274         ReadRegDWORD $NPF_START HKEY_LOCAL_MACHINE "SYSTEM\CurrentControlSet\Services\NPF" "Start"
1275         ; (Winpcap may not be installed already, so no regKey is no error here)
1276         IfErrors lbl_npf_done ;RegKey not available, so do not set it
1277         IntCmp $NPF_START 2 0 lbl_npf_done lbl_npf_done
1278 lbl_npf_enable:
1279         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 8" "State" "1"
1280         Goto lbl_npf_done
1281         ;disable
1282 lbl_npf_disable:
1283         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 8" "State" "0"
1284         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 8" "Flags" "DISABLED"
1285         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 9" "Flags" "DISABLED"
1286 lbl_npf_done:
1287
1288
1289         ; if Wireshark was previously installed, unselect previously not installed icons etc.
1290         ; detect if Wireshark is already installed ->
1291         ReadRegStr $0 HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Wireshark" "UninstallString"
1292         IfErrors lbl_wireshark_notinstalled ;if RegKey is unavailable, Wireshark is not installed
1293
1294         ; only select Start Menu Group, if previously installed
1295         ; (we use the "all users" start menu, so select it first)
1296         SetShellVarContext all
1297         IfFileExists "$SMPROGRAMS\Wireshark\Wireshark.lnk" lbl_have_startmenu
1298         IfFileExists "$SMPROGRAMS\Wireshark.lnk" lbl_have_startmenu
1299         WriteINIStr "$PLUGINSDIR\AdditionalTasksPage.ini" "Field 2" "State" "0"
1300 lbl_have_startmenu:
1301
1302         ; only select Desktop Icon, if previously installed
1303         IfFileExists "$DESKTOP\Wireshark.lnk" lbl_have_desktopicon
1304         WriteINIStr "$PLUGINSDIR\AdditionalTasksPage.ini" "Field 3" "State" "0"
1305 lbl_have_desktopicon:
1306
1307         ; only select Quick Launch Icon, if previously installed
1308         IfFileExists "$QUICKLAUNCH\Wireshark.lnk" lbl_have_quicklaunchicon
1309         WriteINIStr "$PLUGINSDIR\AdditionalTasksPage.ini" "Field 4" "State" "0"
1310 lbl_have_quicklaunchicon:
1311
1312 lbl_wireshark_notinstalled:
1313
1314
1315 FunctionEnd