Associate Wireshark with Tektronix K12xx/K15 .rf5 files
[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 !ifdef GTK1_DIR & GTK2_DIR
15 InstType "Wireshark (GTK2 user interface)"
16 InstType "Wireshark (legacy GTK1 user interface)"
17 !endif
18
19 InstType "un.Default (keep Personal Settings and WinPcap)"
20 InstType "un.All (remove all)"
21
22 ; Used to refresh the display of file association
23 !define SHCNE_ASSOCCHANGED 0x08000000
24 !define SHCNF_IDLIST 0
25
26 ; Used to add associations between file extensions and Wireshark
27 !define WIRESHARK_ASSOC "wireshark-file"
28
29 ; ============================================================================
30 ; Header configuration
31 ; ============================================================================
32 ; The name of the installer
33 !define PROGRAM_NAME "Wireshark"
34
35 Name "${PROGRAM_NAME} ${VERSION}"
36
37 ; The file to write
38 OutFile "${DEST}-setup-${VERSION}.exe"
39
40 ; Icon of installer and uninstaller
41 Icon "..\..\image\wireshark.ico"
42 UninstallIcon "..\..\image\wireshark.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\wireshark.ico"
66 !define MUI_UNICON "..\..\image\wireshark.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 InstallDir $PROGRAMFILES\Wireshark\
192
193 ; See if this is an upgrade; if so, use the old InstallDir as default
194 InstallDirRegKey HKEY_LOCAL_MACHINE SOFTWARE\Wireshark "InstallDir"
195
196
197 ; ============================================================================
198 ; Install page configuration
199 ; ============================================================================
200 ShowInstDetails show
201 ShowUninstDetails show
202
203 ; ============================================================================
204 ; Functions and macros
205 ; ============================================================================
206 !macro UpdateIcons
207         Push $R0
208         Push $R1
209         Push $R2
210
211         !define UPDATEICONS_UNIQUE ${__LINE__}
212
213         IfFileExists "$SYSDIR\shell32.dll" UpdateIcons.next1_${UPDATEICONS_UNIQUE} UpdateIcons.error1_${UPDATEICONS_UNIQUE}
214 UpdateIcons.next1_${UPDATEICONS_UNIQUE}:
215         GetDllVersion "$SYSDIR\shell32.dll" $R0 $R1
216         IntOp $R2 $R0 / 0x00010000
217         IntCmp $R2 4 UpdateIcons.next2_${UPDATEICONS_UNIQUE} UpdateIcons.error2_${UPDATEICONS_UNIQUE}
218 UpdateIcons.next2_${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.error1_${UPDATEICONS_UNIQUE}:
223         MessageBox MB_OK|MB_ICONSTOP  "Can't find 'shell32.dll' library. Impossible to update icons"
224         Goto UpdateIcons.quit_${UPDATEICONS_UNIQUE}
225 UpdateIcons.error2_${UPDATEICONS_UNIQUE}:
226         MessageBox MB_OK|MB_ICONINFORMATION "You should install the free 'Microsoft Layer for Unicode' to update Wireshark capture file icons"
227         Goto UpdateIcons.quit_${UPDATEICONS_UNIQUE}
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 Function .onInit
265   ;Extract InstallOptions INI files
266   !insertmacro MUI_INSTALLOPTIONS_EXTRACT "AdditionalTasksPage.ini"
267   !insertmacro MUI_INSTALLOPTIONS_EXTRACT "WinpcapPage.ini"
268 FunctionEnd
269
270 Function DisplayAdditionalTasksPage
271   !insertmacro MUI_HEADER_TEXT "Select Additional Tasks" "Which additional tasks should be done?"
272   !insertmacro MUI_INSTALLOPTIONS_DISPLAY "AdditionalTasksPage.ini"
273 FunctionEnd
274
275 Function DisplayWinPcapPage
276   !insertmacro MUI_HEADER_TEXT "Install WinPcap?" "WinPcap is required to capture live network data. Should WinPcap be installed?"
277   !insertmacro MUI_INSTALLOPTIONS_DISPLAY "WinPcapPage.ini"
278 FunctionEnd
279
280 ; ============================================================================
281 ; Installation execution commands
282 ; ============================================================================
283
284 Var WINPCAP_UNINSTALL ;declare variable for holding the value of a registry key
285 ;Var WIRESHARK_UNINSTALL ;declare variable for holding the value of a registry key
286
287 Section "-Required"
288 ;-------------------------------------------
289
290 ;
291 ; Install for every user
292 ;
293 !ifdef GTK1_DIR & GTK2_DIR
294 SectionIn 1 2 RO
295 !endif
296 SetShellVarContext all
297
298
299
300 SetOutPath $INSTDIR
301 File "..\..\wiretap\wiretap-${WTAP_VERSION}.dll"
302 !ifdef ENABLE_LIBWIRESHARK
303 File "..\..\epan\libwireshark.dll"
304 !endif
305 File "${GLIB_DIR}\bin\libglib-2.0-0.dll"
306 File "${GLIB_DIR}\bin\libgmodule-2.0-0.dll"
307 File "${GLIB_DIR}\bin\libgobject-2.0-0.dll"
308 File "${ICONV_DIR}\bin\iconv.dll"
309 File "${GETTEXT_DIR}\bin\intl.dll"
310 !ifdef ZLIB_DIR
311 File "${ZLIB_DIR}\zlib1.dll"
312 !endif
313 !ifdef ADNS_DIR
314 File "${ADNS_DIR}\adns_win32\LIB\adns_dll.dll"
315 !endif
316 !ifdef PCRE_DIR
317 File "${PCRE_DIR}\bin\pcre.dll"
318 File "${PCRE_DIR}\man\cat3\pcrepattern.3.txt"
319 !endif
320 !ifdef KFW_DIR
321 File "${KFW_DIR}\bin\comerr32.dll"
322 File "${KFW_DIR}\bin\krb5_32.dll"
323 !endif
324 !ifdef GNUTLS_DIR
325 File "${GNUTLS_DIR}\bin\libgcrypt-11.dll"
326 File "${GNUTLS_DIR}\bin\libgnutls-13.dll"
327 File "${GNUTLS_DIR}\bin\libgnutls-extra-13.dll"
328 File "${GNUTLS_DIR}\bin\libgnutls-openssl-13.dll"
329 File "${GNUTLS_DIR}\bin\libgpg-error-0.dll"
330 File "${GNUTLS_DIR}\bin\libtasn1-3.dll"
331 !endif
332 !ifdef LUA_DIR
333 File "${LUA_DIR}\lib\dll\lua5.1.dll"
334 File "..\..\epan\wslua\init.lua"
335 File "..\..\epan\wslua\console.lua"
336 File "..\..\epan\wslua\dtd_gen.lua"
337 !endif
338 !ifdef SMI_DIR
339 File "${SMI_DIR}\lib\smi.dll"
340 !endif
341 File "..\..\FAQ"
342 File "..\..\README"
343 File "..\..\README.win32"
344 File "..\..\AUTHORS-SHORT"
345 File "..\..\COPYING"
346 File "NEWS.txt"
347 File "..\..\manuf"
348 File "..\..\services"
349 File "..\..\doc\wireshark.html"
350 File "..\..\doc\wireshark-filter.html"
351 File "..\..\dumpcap.exe"
352 File "..\..\doc\dumpcap.html"
353 File "..\..\example_snmp_users_file"
354
355 ; C-runtime redistributable
356 !ifdef VCREDIST_EXE
357 ; vcredist_x86.exe (MSVC V8) - copy and execute the redistributable installer
358 File "${VCREDIST_EXE}"
359 ExecWait '"$INSTDIR\vcredist_x86.exe"' $0
360 DetailPrint "vcredist_x86 returned $0"
361 !else
362 !ifdef MSVCR_DLL
363 ; msvcr*.dll (MSVC V7 or V7.1) - simply copy the dll file
364 File "${MSVCR_DLL}"
365 !else
366 !if ${MSVC_VARIANT} != "MSVC6"
367 !error "C-Runtime redistributable for this package not available / not redistributable!"
368 !endif
369 !endif  ; MSVCR_DLL
370 !endif  ; VCREDIST_EXE
371
372
373 ; global config files - don't overwrite if already existing
374 ;IfFileExists cfilters dont_overwrite_cfilters
375 File "..\..\cfilters"
376 ;dont_overwrite_cfilters:
377 ;IfFileExists colorfilters dont_overwrite_colorfilters
378 File "..\..\colorfilters"
379 ;dont_overwrite_colorfilters:
380 ;IfFileExists dfilters dont_overwrite_dfilters
381 File "..\..\dfilters"
382 ;dont_overwrite_dfilters:
383 ;IfFileExists dfilters dont_overwrite_smi_modules
384 File "..\..\smi_modules"
385 ;dont_overwrite_smi_modules:
386
387
388 ;
389 ; Install the Diameter DTD and XML files in the "diameter" subdirectory
390 ; of the installation directory.
391 ;
392 SetOutPath $INSTDIR\diameter
393 File "..\..\diameter\chargecontrol.xml"
394 File "..\..\diameter\dictionary.dtd"
395 File "..\..\diameter\dictionary.xml"
396 File "..\..\diameter\Ericsson.xml"
397 File "..\..\diameter\etsie2e4.xml"
398 File "..\..\diameter\gqpolicy.xml"
399 File "..\..\diameter\imscxdx.xml"
400 File "..\..\diameter\mobileipv4.xml"
401 File "..\..\diameter\nasreq.xml"
402 File "..\..\diameter\sip.xml"
403 File "..\..\diameter\sunping.xml"
404 File "..\..\diameter\TGPPSh.xml"
405 SetOutPath $INSTDIR
406
407
408
409 ;
410 ; Install the RADIUS directory files in the "radius" subdirectory
411 ; of the installation directory.
412 ;
413 SetOutPath $INSTDIR\radius
414 File "..\..\radius\dictionary"
415 File "..\..\radius\dictionary.3com"
416 File "..\..\radius\dictionary.3gpp"
417 File "..\..\radius\dictionary.3gpp2"
418 File "..\..\radius\dictionary.acc"
419 File "..\..\radius\dictionary.alcatel"
420 File "..\..\radius\dictionary.alteon"
421 File "..\..\radius\dictionary.altiga"
422 File "..\..\radius\dictionary.aptis"
423 File "..\..\radius\dictionary.ascend"
424 File "..\..\radius\dictionary.bay"
425 File "..\..\radius\dictionary.bintec"
426 File "..\..\radius\dictionary.bristol"
427 File "..\..\radius\dictionary.cablelabs"
428 File "..\..\radius\dictionary.cabletron"
429 File "..\..\radius\dictionary.cisco"
430 File "..\..\radius\dictionary.cisco.bbsm"
431 File "..\..\radius\dictionary.cisco.vpn3000"
432 File "..\..\radius\dictionary.cisco.vpn5000"
433 File "..\..\radius\dictionary.colubris"
434 File "..\..\radius\dictionary.columbia_university"
435 File "..\..\radius\dictionary.compat"
436 File "..\..\radius\dictionary.cosine"
437 File "..\..\radius\dictionary.ericsson"
438 File "..\..\radius\dictionary.erx"
439 File "..\..\radius\dictionary.extreme"
440 File "..\..\radius\dictionary.foundry"
441 File "..\..\radius\dictionary.freeradius"
442 File "..\..\radius\dictionary.gandalf"
443 File "..\..\radius\dictionary.garderos"
444 File "..\..\radius\dictionary.gemtek"
445 File "..\..\radius\dictionary.itk"
446 File "..\..\radius\dictionary.juniper"
447 File "..\..\radius\dictionary.karlnet"
448 File "..\..\radius\dictionary.livingston"
449 File "..\..\radius\dictionary.localweb"
450 File "..\..\radius\dictionary.merit"
451 File "..\..\radius\dictionary.microsoft"
452 File "..\..\radius\dictionary.mikrotik"
453 File "..\..\radius\dictionary.navini"
454 File "..\..\radius\dictionary.netscreen"
455 File "..\..\radius\dictionary.nokia"
456 File "..\..\radius\dictionary.nomadix"
457 File "..\..\radius\dictionary.propel"
458 File "..\..\radius\dictionary.quintum"
459 File "..\..\radius\dictionary.redback"
460 File "..\..\radius\dictionary.redcreek"
461 File "..\..\radius\dictionary.shasta"
462 File "..\..\radius\dictionary.shiva"
463 File "..\..\radius\dictionary.sonicwall"
464 File "..\..\radius\dictionary.springtide"
465 File "..\..\radius\dictionary.t_systems_nova"
466 File "..\..\radius\dictionary.telebit"
467 File "..\..\radius\dictionary.trapeze"
468 File "..\..\radius\dictionary.tunnel"
469 File "..\..\radius\dictionary.unisphere"
470 File "..\..\radius\dictionary.unix"
471 File "..\..\radius\dictionary.usr"
472 File "..\..\radius\dictionary.valemount"
473 File "..\..\radius\dictionary.versanet"
474 File "..\..\radius\dictionary.wispr"
475 File "..\..\radius\dictionary.xedia"
476 SetOutPath $INSTDIR
477
478 ;
479 ; install the dtds in the dtds subdirectory
480 ;
481 SetOutPath $INSTDIR\dtds
482 File "..\..\dtds\dc.dtd"
483 File "..\..\dtds\itunes.dtd"
484 File "..\..\dtds\mscml.dtd"
485 File "..\..\dtds\pocsettings.dtd"
486 File "..\..\dtds\presence.dtd"
487 File "..\..\dtds\reginfo.dtd"
488 File "..\..\dtds\rlmi.dtd"
489 File "..\..\dtds\rss.dtd"
490 File "..\..\dtds\smil.dtd"
491 File "..\..\dtds\xcap-caps.dtd"
492 File "..\..\dtds\xcap-error.dtd"
493 File "..\..\dtds\watcherinfo.dtd"
494 SetOutPath $INSTDIR
495
496 ; Install the TPNCP DAT file in the "tpncp" subdirectory
497 ; of the installation directory.
498 SetOutPath $INSTDIR\tpncp
499 File "..\..\tpncp\tpncp.dat"
500
501 ;
502 ; install the wimaxasncp TLV definitions in the wimaxasncp subdirectory
503 ;
504 SetOutPath $INSTDIR\wimaxasncp
505 File "..\..\wimaxasncp\dictionary.xml"
506 File "..\..\wimaxasncp\dictionary.dtd"
507 SetOutPath $INSTDIR
508
509 SetOutPath $INSTDIR\help
510 File "..\..\help\toc"
511 File "..\..\help\overview.txt"
512 File "..\..\help\getting_started.txt"
513 File "..\..\help\capturing.txt"
514 File "..\..\help\capture_filters.txt"
515 File "..\..\help\display_filters.txt"
516 File "..\..\help\faq.txt"
517
518 ; Write the uninstall keys for Windows
519 WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\Wireshark" "DisplayVersion" "${VERSION}"
520 WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\Wireshark" "DisplayName" "Wireshark ${VERSION}"
521 WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\Wireshark" "UninstallString" '"$INSTDIR\uninstall.exe"'
522 WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\Wireshark" "Publisher" "The Wireshark developer community, http://www.wireshark.org"
523 WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\Wireshark" "HelpLink" "mailto:wireshark-users@wireshark.org"
524 WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\Wireshark" "URLInfoAbout" "http://www.wireshark.org"
525 WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\Wireshark" "URLUpdateInfo" "http://www.wireshark.org/download/win32/"
526 WriteRegDWORD HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\Wireshark" "NoModify" 1
527 WriteRegDWORD HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\Wireshark" "NoRepair" 1
528 WriteUninstaller "uninstall.exe"
529
530 ; Write an entry for ShellExecute
531 WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\App Paths\wireshark.exe" "" '$INSTDIR\wireshark.exe'
532 WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\App Paths\wireshark.exe" "Path" '$INSTDIR'
533
534 ; Create start menu entries (depending on additional tasks page)
535 ReadINIStr $0 "$PLUGINSDIR\AdditionalTasksPage.ini" "Field 2" "State"
536 StrCmp $0 "0" SecRequired_skip_StartMenu
537 SetOutPath $PROFILE
538 CreateDirectory "$SMPROGRAMS\Wireshark"
539 ; To qoute "http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwue/html/ch11d.asp":
540 ; "Do not include Readme, Help, or Uninstall entries on the Programs menu."
541 Delete "$SMPROGRAMS\Wireshark\Wireshark Web Site.lnk"
542 ;WriteINIStr "$SMPROGRAMS\Wireshark\Wireshark Web Site.url" "InternetShortcut" "URL" "http://www.wireshark.org/"
543 CreateShortCut "$SMPROGRAMS\Wireshark\Wireshark.lnk" "$INSTDIR\wireshark.exe" "" "$INSTDIR\wireshark.exe" 0 "" "" "The Wireshark Network Protocol Analyzer"
544 ;CreateShortCut "$SMPROGRAMS\Wireshark\Wireshark Manual.lnk" "$INSTDIR\wireshark.html"
545 ;CreateShortCut "$SMPROGRAMS\Wireshark\Display Filters Manual.lnk" "$INSTDIR\wireshark-filter.html"
546 CreateShortCut "$SMPROGRAMS\Wireshark\Wireshark Program Directory.lnk" \
547           "$INSTDIR"
548 ;CreateShortCut "$SMPROGRAMS\Wireshark\Uninstall Wireshark.lnk" "$INSTDIR\uninstall.exe"
549 SecRequired_skip_StartMenu:
550
551 ; is command line option "/desktopicon" set?
552 ${GetParameters} $R0
553 ${GetOptions} $R0 "/desktopicon=" $R1
554 StrCmp $R1 "no" SecRequired_skip_DesktopIcon
555 StrCmp $R1 "yes" SecRequired_install_DesktopIcon
556
557 ; Create desktop icon (depending on additional tasks page and command line option)
558 ReadINIStr $0 "$PLUGINSDIR\AdditionalTasksPage.ini" "Field 3" "State"
559 StrCmp $0 "0" SecRequired_skip_DesktopIcon
560 SecRequired_install_DesktopIcon:
561 CreateShortCut "$DESKTOP\Wireshark.lnk" "$INSTDIR\wireshark.exe" "" "$INSTDIR\wireshark.exe" 0 "" "" "The Wireshark Network Protocol Analyzer"
562 SecRequired_skip_DesktopIcon:
563
564 ; is command line option "/quicklaunchicon" set?
565 ${GetParameters} $R0
566 ${GetOptions} $R0 "/quicklaunchicon=" $R1
567 StrCmp $R1 "no" SecRequired_skip_QuickLaunchIcon
568 StrCmp $R1 "yes" SecRequired_install_QuickLaunchIcon
569
570 ; Create quick launch icon (depending on additional tasks page and command line option)
571 ReadINIStr $0 "$PLUGINSDIR\AdditionalTasksPage.ini" "Field 4" "State"
572 StrCmp $0 "0" SecRequired_skip_QuickLaunchIcon
573 SecRequired_install_QuickLaunchIcon:
574 CreateShortCut "$QUICKLAUNCH\Wireshark.lnk" "$INSTDIR\wireshark.exe" "" "$INSTDIR\wireshark.exe" 0 "" "" "The Wireshark Network Protocol Analyzer"
575 SecRequired_skip_QuickLaunchIcon:
576
577 ; Create File Extensions (depending on additional tasks page)
578 ReadINIStr $0 "$PLUGINSDIR\AdditionalTasksPage.ini" "Field 6" "State"
579 StrCmp $0 "0" SecRequired_skip_FileExtensions
580 WriteRegStr HKCR ${WIRESHARK_ASSOC} "" "Wireshark file"
581 WriteRegStr HKCR "${WIRESHARK_ASSOC}\Shell\open\command" "" '"$INSTDIR\wireshark.exe" "%1"'
582 WriteRegStr HKCR "${WIRESHARK_ASSOC}\DefaultIcon" "" '"$INSTDIR\wireshark.exe",1'
583 push $R0
584         StrCpy $R0 ".5vw"
585         Call Associate
586         StrCpy $R0 ".acp"
587         Call Associate
588         StrCpy $R0 ".apc"
589         Call Associate
590         StrCpy $R0 ".atc"
591         Call Associate
592         StrCpy $R0 ".bfr"
593         Call Associate
594         StrCpy $R0 ".cap"
595         Call Associate
596         StrCpy $R0 ".enc"
597         Call Associate
598         StrCpy $R0 ".erf"
599         Call Associate
600         StrCpy $R0 ".fdc"
601         Call Associate
602         StrCpy $R0 ".pcap"
603         Call Associate
604         StrCpy $R0 ".pkt"
605         Call Associate
606         StrCpy $R0 ".snoop"
607         Call Associate
608         StrCpy $R0 ".syc"
609         Call Associate
610         StrCpy $R0 ".tpc"
611         Call Associate
612         StrCpy $R0 ".tr1"
613         Call Associate
614         StrCpy $R0 ".trace"
615         Call Associate
616         StrCpy $R0 ".trc"
617         Call Associate
618         StrCpy $R0 ".wpc"
619         Call Associate
620         StrCpy $R0 ".wpz"
621         Call Associate
622         StrCpy $R0 ".rf5"
623         Call Associate
624 ; if somethings added here, add it also to the uninstall section and the AdditionalTask page
625 pop $R0
626 !insertmacro UpdateIcons
627 SecRequired_skip_FileExtensions:
628
629 ; if running as a silent installer, don't try to install winpcap
630 IfSilent SecRequired_skip_Winpcap
631
632 ; Install WinPcap (depending on winpcap page setting)
633 ReadINIStr $0 "$PLUGINSDIR\WinPcapPage.ini" "Field 4" "State"
634 StrCmp $0 "0" SecRequired_skip_Winpcap
635 ; Uinstall old WinPcap first
636 ReadRegStr $WINPCAP_UNINSTALL HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\WinPcapInst" "UninstallString"
637 IfErrors lbl_winpcap_notinstalled ;if RegKey is unavailable, WinPcap is not installed
638 ; from released version 3.1, WinPcap will uninstall an old version by itself
639 ;ExecWait '$WINPCAP_UNINSTALL' $0
640 ;DetailPrint "WinPcap uninstaller returned $0"
641 lbl_winpcap_notinstalled:
642 SetOutPath $INSTDIR
643 File "WinPcap_4_0_2.exe"
644 ExecWait '"$INSTDIR\WinPcap_4_0_2.exe"' $0
645 DetailPrint "WinPcap installer returned $0"
646 SecRequired_skip_Winpcap:
647
648 ; Load Winpcap NPF service at startup (depending on winpcap page)
649 ReadINIStr $0 "$PLUGINSDIR\WinPcapPage.ini" "Field 8" "State"
650 StrCmp $0 "0" SecRequired_no_WinpcapService
651 WriteRegDWORD HKEY_LOCAL_MACHINE "SYSTEM\CurrentControlSet\Services\NPF" "Start" 2 ;set NPF to (SERVICE_AUTO_START)
652 !insertmacro SERVICE "start" "NPF" ""
653 Goto SecRequired_done_WinpcapService
654 SecRequired_no_WinpcapService:
655 WriteRegDWORD HKEY_LOCAL_MACHINE "SYSTEM\CurrentControlSet\Services\NPF" "Start" 3 ;set NPF to (SERVICE_DEMAND_START)
656 !insertmacro SERVICE "stop" "NPF" ""
657 SecRequired_done_WinpcapService:
658
659 ; If no user profile exists for Wireshark but for Ethereal, copy it over
660 SetShellVarContext current
661 IfFileExists $APPDATA\Wireshark profile_done
662 IfFileExists $APPDATA\Ethereal 0 profile_done
663 ;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
664 CreateDirectory $APPDATA\Wireshark
665 CopyFiles $APPDATA\Ethereal\*.* $APPDATA\Wireshark
666 profile_done:
667 SetShellVarContext all
668
669 SectionEnd ; "Required"
670
671
672 SectionGroup "!Wireshark" SecWiresharkGroup
673
674 !ifdef GTK1_DIR
675 Section "Wireshark GTK1" SecWiresharkGTK1
676 ;-------------------------------------------
677 !ifdef GTK1_DIR & GTK2_DIR
678 SectionIn 2 RO
679 !endif
680 SetOutPath $INSTDIR
681 File "..\..\wireshark.exe"
682 File "${GTK1_DIR}\lib\libgtk-0.dll"
683 File "${GTK1_DIR}\lib\libgdk-0.dll"
684 SectionEnd
685 !endif
686
687 !ifdef GTK2_DIR
688 Section "Wireshark GTK2" SecWiresharkGTK2
689 ;-------------------------------------------
690 !ifdef GTK1_DIR & GTK2_DIR
691 SectionIn 1 RO
692 !endif
693 SetOutPath $INSTDIR
694 File /oname=wireshark.exe "..\..\wireshark-gtk2.exe"
695 File "${GTK2_DIR}\bin\libgdk-win32-2.0-0.dll"
696 File "${GTK2_DIR}\bin\libgdk_pixbuf-2.0-0.dll"
697 File "${GTK2_DIR}\bin\libgtk-win32-2.0-0.dll"
698 File "${GTK2_DIR}\bin\libatk-1.0-0.dll"
699 File "${GTK2_DIR}\bin\libpango-1.0-0.dll"
700 File "${GTK2_DIR}\bin\libpangowin32-1.0-0.dll"
701 !ifdef NEED_CAIRO_DLL
702 File "${GTK2_DIR}\bin\libcairo-2.dll"
703 File "${GTK2_DIR}\bin\libpangocairo-1.0-0.dll"
704 !endif
705 !ifdef NEED_LIBPNG_DLL
706 File "${GTK2_DIR}\bin\libpng13.dll"
707 !endif
708 !ifdef NEED_LIBTIFF_DLL
709 File "${GTK2_DIR}\bin\libtiff3.dll"
710 !endif
711 !ifdef NEED_LIBJPEG_DLL
712 File "${GTK2_DIR}\bin\jpeg62.dll"
713 !endif
714 SetOutPath $INSTDIR\etc\gtk-2.0
715 File "${GTK2_DIR}\etc\gtk-2.0\*.*"
716 SetOutPath $INSTDIR\etc\pango
717 File "${GTK2_DIR}\etc\pango\pango.*"
718 #SetOutPath $INSTDIR\lib\gtk-2.0\${GTK2_LIB_DIR}\loaders
719 #File "${GTK2_DIR}\lib\gtk-2.0\${GTK2_LIB_DIR}\loaders\libpixbufloader-*.dll"
720 SetOutPath $INSTDIR\lib\gtk-2.0\${GTK2_LIB_DIR}\immodules
721 File "${GTK2_DIR}\lib\gtk-2.0\${GTK2_LIB_DIR}\immodules\im-*.dll"
722 # Not needed with pango 1.14.5
723 #SetOutPath $INSTDIR\lib\pango\${PANGO_LIB_DIR}\modules
724 #File "${GTK2_DIR}\lib\pango\${PANGO_LIB_DIR}\modules\pango-*.dll"
725
726 SectionEnd
727
728 !ifdef GTK_WIMP_DIR
729 Section "GTK MS Windows Engine" SecGTKWimp
730 ;-------------------------------------------
731 SectionIn 1
732 SetOutPath $INSTDIR\${GTK_WIMP_DLLDST_DIR}
733 File "${GTK_WIMP_DLLSRC_DIR}\libwimp.dll"
734 SetOutPath $INSTDIR\${GTK_WIMP_RCDST_DIR}
735 File "${GTK_WIMP_RCSRC_DIR}\gtkrc"
736 SectionEnd
737 !endif
738 !endif
739
740 SectionGroupEnd ; "Wireshark"
741
742
743 Section "TShark" SecTShark
744 ;-------------------------------------------
745 !ifdef GTK1_DIR & GTK2_DIR
746 SectionIn 1 2
747 !endif
748 SetOutPath $INSTDIR
749 File "..\..\tshark.exe"
750 File "..\..\doc\tshark.html"
751 SectionEnd
752
753 SectionGroup "Plugins / Extensions" SecPluginsGroup
754
755 Section "Dissector Plugins" SecPlugins
756 ;-------------------------------------------
757 !ifdef GTK1_DIR & GTK2_DIR
758 SectionIn 1 2
759 !endif
760 SetOutPath $INSTDIR\plugins\${VERSION}
761 File "..\..\plugins\agentx\agentx.dll"
762 File "..\..\plugins\artnet\artnet.dll"
763 File "..\..\plugins\asn1\asn1.dll"
764 File "..\..\plugins\ciscosm\ciscosm.dll"
765 File "..\..\plugins\docsis\docsis.dll"
766 File "..\..\plugins\enttec\enttec.dll"
767 File "..\..\plugins\ethercat\ethercat.dll"
768 File "..\..\plugins\giop\coseventcomm.dll"
769 File "..\..\plugins\giop\cosnaming.dll"
770 File "..\..\plugins\giop\parlay.dll"
771 File "..\..\plugins\giop\tango.dll"
772 File "..\..\plugins\gryphon\gryphon.dll"
773 File "..\..\plugins\irda\irda.dll"
774 File "..\..\plugins\lwres\lwres.dll"
775 File "..\..\plugins\m2m\m2m.dll"
776 File "..\..\plugins\opsi\opsi.dll"
777 File "..\..\plugins\pcli\pcli.dll"
778 File "..\..\plugins\profinet\profinet.dll"
779 File "..\..\plugins\rlm\rlm.dll"
780 File "..\..\plugins\rtnet\rtnet.dll"
781 File "..\..\plugins\rudp\rudp.dll"
782 File "..\..\plugins\sbus\sbus.dll"
783 File "..\..\plugins\unistim\unistim.dll"
784 File "..\..\plugins\v5ua\v5ua.dll"
785 File "..\..\plugins\wimax\wimax.dll"
786 File "..\..\plugins\wimaxasncp\wimaxasncp.dll"
787 SectionEnd
788
789 Section "Tree Statistics Plugin" SecStatsTree
790 ;-------------------------------------------
791 !ifdef GTK1_DIR & GTK2_DIR
792 SectionIn 1 2
793 !endif
794 SetOutPath $INSTDIR\plugins\${VERSION}
795 File "..\..\plugins\stats_tree\stats_tree.dll"
796 SectionEnd
797
798 Section "Mate - Meta Analysis and Tracing Engine" SecMate
799 ;-------------------------------------------
800 SetOutPath $INSTDIR\plugins\${VERSION}
801 File "..\..\plugins\mate\mate.dll"
802 SectionEnd
803
804
805 !ifdef NET_SNMP_DIR
806 Section "SNMP MIBs" SecMIBs
807 ;-------------------------------------------
808 !ifdef GTK1_DIR & GTK2_DIR
809 SectionIn 1 2
810 !endif
811 SetOutPath $INSTDIR\snmp\mibs
812 File "${NET_SNMP_DIR}\mibs\*.txt"
813 SectionEnd
814 !endif
815
816 !ifdef SMI_DIR
817 Section "SNMP MIBs" SecMIBs
818 ;-------------------------------------------
819 !ifdef GTK1_DIR & GTK2_DIR
820 SectionIn 1 2
821 !endif
822 SetOutPath $INSTDIR\snmp\mibs
823 File "${SMI_DIR}\mibs\*"
824 SectionEnd
825 !endif
826
827 SectionGroupEnd ; "Plugins / Extensions"
828
829
830 SectionGroup "Tools" SecToolsGroup
831
832 Section "Editcap" SecEditcap
833 ;-------------------------------------------
834 !ifdef GTK1_DIR & GTK2_DIR
835 SectionIn 1 2
836 !endif
837 SetOutPath $INSTDIR
838 File "..\..\editcap.exe"
839 File "..\..\doc\editcap.html"
840 SectionEnd
841
842 Section "Text2Pcap" SecText2Pcap
843 ;-------------------------------------------
844 !ifdef GTK1_DIR & GTK2_DIR
845 SectionIn 1 2
846 !endif
847 SetOutPath $INSTDIR
848 File "..\..\text2pcap.exe"
849 File "..\..\doc\text2pcap.html"
850 SectionEnd
851
852 Section "Mergecap" SecMergecap
853 ;-------------------------------------------
854 !ifdef GTK1_DIR & GTK2_DIR
855 SectionIn 1 2
856 !endif
857 SetOutPath $INSTDIR
858 File "..\..\mergecap.exe"
859 File "..\..\doc\mergecap.html"
860 SectionEnd
861
862 Section "Capinfos" SecCapinfos
863 ;-------------------------------------------
864 !ifdef GTK1_DIR & GTK2_DIR
865 SectionIn 1 2
866 !endif
867 SetOutPath $INSTDIR
868 File "..\..\capinfos.exe"
869 File "..\..\doc\capinfos.html"
870 SectionEnd
871
872 SectionGroupEnd ; "Tools"
873
874 !ifdef HHC_DIR
875 Section "User's Guide" SecUsersGuide
876 ;-------------------------------------------
877 !ifdef GTK1_DIR & GTK2_DIR
878 SectionIn 1 2
879 !endif
880 SetOutPath $INSTDIR
881 File "user-guide.chm"
882 SectionEnd
883 !endif
884
885 Section "Uninstall" un.SecUinstall
886 ;-------------------------------------------
887
888 ;
889 ; UnInstall for every user
890 ;
891 SectionIn 1 2
892 SetShellVarContext all
893
894 Delete "$INSTDIR\tshark.exe"
895 IfErrors 0 NoTSharkErrorMsg
896         MessageBox MB_OK "Please note: tshark.exe could not be removed, it's probably in use!" IDOK 0 ;skipped if tshark.exe removed
897         Abort "Please note: tshark.exe could not be removed, it's probably in use! Abort uninstall process!"
898 NoTSharkErrorMsg:
899
900 Delete "$INSTDIR\wireshark.exe"
901 IfErrors 0 NoWiresharkErrorMsg
902         MessageBox MB_OK "Please note: wireshark.exe could not be removed, it's probably in use!" IDOK 0 ;skipped if wireshark.exe removed
903         Abort "Please note: wireshark.exe could not be removed, it's probably in use! Abort uninstall process!"
904 NoWiresharkErrorMsg:
905
906 DeleteRegKey HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\Wireshark"
907 DeleteRegKey HKEY_LOCAL_MACHINE "Software\Wireshark"
908 DeleteRegKey HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\App Paths\wireshark.exe"
909
910 push $R0
911         StrCpy $R0 ".5vw"
912         Call un.unlink
913         StrCpy $R0 ".acp"
914         Call un.unlink
915         StrCpy $R0 ".apc"
916         Call un.unlink
917         StrCpy $R0 ".atc"
918         Call un.unlink
919         StrCpy $R0 ".bfr"
920         Call un.unlink
921         StrCpy $R0 ".cap"
922         Call un.unlink
923         StrCpy $R0 ".enc"
924         Call un.unlink
925         StrCpy $R0 ".erf"
926         Call un.unlink
927         StrCpy $R0 ".fdc"
928         Call un.unlink
929         StrCpy $R0 ".pcap"
930         Call un.unlink
931         StrCpy $R0 ".pkt"
932         Call un.unlink
933         StrCpy $R0 ".snoop"
934         Call un.unlink
935         StrCpy $R0 ".syc"
936         Call un.unlink
937         StrCpy $R0 ".tpc"
938         Call un.unlink
939         StrCpy $R0 ".tr1"
940         Call un.unlink
941         StrCpy $R0 ".trace"
942         Call un.unlink
943         StrCpy $R0 ".trc"
944         Call un.unlink
945         StrCpy $R0 ".wpc"
946         Call un.unlink
947         StrCpy $R0 ".wpz"
948         Call un.unlink
949         StrCpy $R0 ".rf5"
950         Call un.unlink
951 pop $R0
952
953 DeleteRegKey HKCR ${WIRESHARK_ASSOC}
954 DeleteRegKey HKCR "${WIRESHARK_ASSOC}\Shell\open\command"
955 DeleteRegKey HKCR "${WIRESHARK_ASSOC}\DefaultIcon"
956 !insertmacro UpdateIcons
957
958 ; regardless if we currently installed GTK1 or 2, try to uninstall GTK2 files too
959 Delete "$INSTDIR\etc\gtk-2.0\*.*"
960 Delete "$INSTDIR\etc\pango\*.*"
961 Delete "$INSTDIR\lib\gtk-2.0\2.2.0\engines\*.*"
962 Delete "$INSTDIR\lib\gtk-2.0\2.2.0\loaders\*.*"
963 Delete "$INSTDIR\lib\gtk-2.0\2.2.0\immodules\*.*"
964 Delete "$INSTDIR\lib\gtk-2.0\2.4.0\engines\*.*"
965 Delete "$INSTDIR\lib\gtk-2.0\2.4.0\loaders\*.*"
966 Delete "$INSTDIR\lib\gtk-2.0\2.4.0\immodules\*.*"
967 Delete "$INSTDIR\lib\gtk-2.0\2.10.0\engines\*.*"
968 Delete "$INSTDIR\lib\gtk-2.0\2.10.0\loaders\*.*"
969 Delete "$INSTDIR\lib\gtk-2.0\2.10.0\immodules\*.*"
970 Delete "$INSTDIR\lib\pango\1.2.0\modules\*.*"
971 Delete "$INSTDIR\lib\pango\1.4.0\modules\*.*"
972 Delete "$INSTDIR\lib\pango\1.5.0\modules\*.*"
973 Delete "$INSTDIR\share\themes\Default\gtk-2.0\*.*"
974 Delete "$INSTDIR\help\*.*"
975 Delete "$INSTDIR\diameter\*.*"
976 Delete "$INSTDIR\snmp\mibs\*.*"
977 Delete "$INSTDIR\snmp\*.*"
978 Delete "$INSTDIR\tpncp\*.*"
979 Delete "$INSTDIR\wimaxasncp\*.*"
980 Delete "$INSTDIR\*.exe"
981 Delete "$INSTDIR\*.dll"
982 Delete "$INSTDIR\*.html"
983 Delete "$INSTDIR\COPYING"
984 Delete "$INSTDIR\AUTHORS-SHORT"
985 ; previous versions installed these files
986 Delete "$INSTDIR\*.manifest"
987 ; previous versions installed this file
988 Delete "$INSTDIR\AUTHORS-SHORT-FORMAT"
989 Delete "$INSTDIR\README*"
990 Delete "$INSTDIR\FAQ"
991 Delete "$INSTDIR\NEWS.txt"
992 Delete "$INSTDIR\manuf"
993 Delete "$INSTDIR\services"
994 Delete "$INSTDIR\pcrepattern.3.txt"
995 Delete "$INSTDIR\user-guide.chm"
996 Delete "$INSTDIR\example_snmp_users_file"
997 Delete "$INSTDIR\radius\*.*"
998 Delete "$INSTDIR\dtds\*.*"
999 Delete "$SMPROGRAMS\Wireshark\*.*"
1000 Delete "$DESKTOP\Wireshark.lnk"
1001 Delete "$QUICKLAUNCH\Wireshark.lnk"
1002
1003 RMDir "$INSTDIR\etc\gtk-2.0"
1004 RMDir "$INSTDIR\etc\pango"
1005 RMDir "$INSTDIR\etc"
1006 RMDir "$INSTDIR\lib\gtk-2.0\2.2.0\engines"
1007 RMDir "$INSTDIR\lib\gtk-2.0\2.2.0\loaders"
1008 RMDir "$INSTDIR\lib\gtk-2.0\2.2.0\immodules"
1009 RMDir "$INSTDIR\lib\gtk-2.0\2.2.0"
1010 RMDir "$INSTDIR\lib\gtk-2.0\2.4.0\engines"
1011 RMDir "$INSTDIR\lib\gtk-2.0\2.4.0\loaders"
1012 RMDir "$INSTDIR\lib\gtk-2.0\2.4.0\immodules"
1013 RMDir "$INSTDIR\lib\gtk-2.0\2.4.0"
1014 RMDir "$INSTDIR\lib\gtk-2.0\2.10.0\engines"
1015 RMDir "$INSTDIR\lib\gtk-2.0\2.10.0\loaders"
1016 RMDir "$INSTDIR\lib\gtk-2.0\2.10.0\immodules"
1017 RMDir "$INSTDIR\lib\gtk-2.0\2.10.0"
1018 RMDir "$INSTDIR\lib\gtk-2.0"
1019 RMDir "$INSTDIR\lib\pango\1.2.0\modules"
1020 RMDir "$INSTDIR\lib\pango\1.2.0"
1021 RMDir "$INSTDIR\lib\pango\1.4.0\modules"
1022 RMDir "$INSTDIR\lib\pango\1.4.0"
1023 RMDir "$INSTDIR\lib\pango\1.5.0\modules"
1024 RMDir "$INSTDIR\lib\pango\1.5.0"
1025 RMDir "$INSTDIR\lib\pango"
1026 RMDir "$INSTDIR\lib"
1027 RMDir "$INSTDIR\share\themes\Default\gtk-2.0"
1028 RMDir "$INSTDIR\share\themes\Default"
1029 RMDir "$INSTDIR\share\themes"
1030 RMDir "$INSTDIR\share"
1031 RMDir "$SMPROGRAMS\Wireshark"
1032 RMDir "$INSTDIR\help"
1033 RMDir "$INSTDIR\diameter"
1034 RMDir "$INSTDIR\snmp\mibs"
1035 RMDir "$INSTDIR\snmp"
1036 RMDir "$INSTDIR\radius"
1037 RMDir "$INSTDIR\dtds"
1038 RMDir "$INSTDIR\tpncp"
1039 RMDir "$INSTDIR\wimaxasncp"
1040 RMDir "$INSTDIR"
1041
1042 SectionEnd ; "Uinstall"
1043
1044 Section "Un.Plugins" un.SecPlugins
1045 ;-------------------------------------------
1046 SectionIn 1 2
1047 ;Delete "$INSTDIR\plugins\${VERSION}\*.*"
1048 ;Delete "$INSTDIR\plugins\*.*"
1049 ;RMDir "$INSTDIR\plugins\${VERSION}"
1050 ;RMDir "$INSTDIR\plugins"
1051 RMDir /r "$INSTDIR\plugins"
1052 SectionEnd
1053
1054 Section "Un.Global Settings" un.SecGlobalSettings
1055 ;-------------------------------------------
1056 SectionIn 1 2
1057 Delete "$INSTDIR\cfilters"
1058 Delete "$INSTDIR\colorfilters"
1059 Delete "$INSTDIR\dfilters"
1060 Delete "$INSTDIR\init.lua"
1061 Delete "$INSTDIR\console.lua"
1062 Delete "$INSTDIR\dtd_gen.lua"
1063 Delete "$INSTDIR\smi_modules"
1064 RMDir "$INSTDIR"
1065 SectionEnd
1066
1067 Section /o "Un.Personal Settings" un.SecPersonalSettings
1068 ;-------------------------------------------
1069 SectionIn 2
1070 SetShellVarContext current
1071 Delete "$APPDATA\Wireshark\*.*"
1072 RMDir "$APPDATA\Wireshark"
1073 SectionEnd
1074
1075 ;VAR un.WINPCAP_UNINSTALL
1076
1077 Section /o "Un.WinPcap" un.SecWinPcap
1078 ;-------------------------------------------
1079 SectionIn 2
1080 ReadRegStr $1 HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\WinPcapInst" "UninstallString"
1081 ;IfErrors un.lbl_winpcap_notinstalled ;if RegKey is unavailable, WinPcap is not installed
1082 ;MessageBox MB_OK "WinPcap $1"
1083 ExecWait '$1' $0
1084 DetailPrint "WinPcap uninstaller returned $0"
1085 ;SetRebootFlag true
1086 ;un.lbl_winpcap_notinstalled:
1087 SectionEnd
1088
1089 Section "-Un.Finally"
1090 ;-------------------------------------------
1091 SectionIn 1 2
1092 ; this test must be done after all other things uninstalled (e.g. Global Settings)
1093 IfFileExists "$INSTDIR" 0 NoFinalErrorMsg
1094     MessageBox MB_OK "Please note: The directory $INSTDIR could not be removed!" IDOK 0 ; skipped if dir doesn't exist
1095 NoFinalErrorMsg:
1096 SectionEnd
1097
1098
1099 ; ============================================================================
1100 ; PLEASE MAKE SURE, THAT THE DESCRIPTIVE TEXT FITS INTO THE DESCRIPTION FIELD!
1101 ; ============================================================================
1102 !insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
1103   !insertmacro MUI_DESCRIPTION_TEXT ${SecWiresharkGroup} "${PROGRAM_NAME} is a GUI network protocol analyzer."
1104 !ifdef GTK1_DIR
1105   !insertmacro MUI_DESCRIPTION_TEXT ${SecWiresharkGTK1} "${PROGRAM_NAME} using the classical GTK1 user interface."
1106 !endif
1107 !ifdef GTK2_DIR
1108   !insertmacro MUI_DESCRIPTION_TEXT ${SecWiresharkGTK2} "${PROGRAM_NAME} using the modern GTK2 user interface."
1109 !ifdef GTK_WIMP_DIR
1110   !insertmacro MUI_DESCRIPTION_TEXT ${SecGTKWimp} "GTK MS Windows Engine - native Win32 look and feel, for Win2000 and up."
1111 !endif
1112 !endif
1113   !insertmacro MUI_DESCRIPTION_TEXT ${SecTShark} "TShark is a text based network protocol analyzer."
1114   !insertmacro MUI_DESCRIPTION_TEXT ${SecPluginsGroup} "Some plugins and extensions for both Wireshark and TShark."
1115   !insertmacro MUI_DESCRIPTION_TEXT ${SecPlugins} "Plugins with some extended dissections."
1116   !insertmacro MUI_DESCRIPTION_TEXT ${SecStatsTree} "Plugin for some extended statistics."
1117   !insertmacro MUI_DESCRIPTION_TEXT ${SecMate} "Plugin - Meta Analysis and Tracing Engine (Experimental)."
1118 !ifdef NET_SNMP_DIR
1119   !insertmacro MUI_DESCRIPTION_TEXT ${SecMIBs} "SNMP MIBs for better SNMP dissection."
1120 !endif
1121 !ifdef SMI_DIR
1122   !insertmacro MUI_DESCRIPTION_TEXT ${SecMIBs} "SNMP MIBs for better SNMP dissection."
1123 !endif
1124   !insertmacro MUI_DESCRIPTION_TEXT ${SecToolsGroup} "Additional command line based tools."
1125   !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."
1126   !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."
1127   !insertmacro MUI_DESCRIPTION_TEXT ${SecMergecap} "Mergecap is a program that combines multiple saved capture files into a single output file"
1128   !insertmacro MUI_DESCRIPTION_TEXT ${SecCapinfos} "Capinfos is a program that provides information on capture files."
1129 !ifdef HHC_DIR
1130   !insertmacro MUI_DESCRIPTION_TEXT ${SecUsersGuide} "Install the user's guide, so an internet connection is not required to read the help pages."
1131 !endif
1132 !insertmacro MUI_FUNCTION_DESCRIPTION_END
1133
1134 !insertmacro MUI_UNFUNCTION_DESCRIPTION_BEGIN
1135   !insertmacro MUI_DESCRIPTION_TEXT ${un.SecUinstall} "Uninstall all Wireshark components."
1136   !insertmacro MUI_DESCRIPTION_TEXT ${un.SecPlugins} "Uninstall all Plugins (even from previous Wireshark versions)."
1137   !insertmacro MUI_DESCRIPTION_TEXT ${un.SecGlobalSettings} "Uninstall global settings like: $INSTDIR\cfilters"
1138   !insertmacro MUI_DESCRIPTION_TEXT ${un.SecPersonalSettings} "Uninstall personal settings like your preferences file from your profile: $PROFILE."
1139   !insertmacro MUI_DESCRIPTION_TEXT ${un.SecWinPcap} "Call WinPcap's uninstall program."
1140 !insertmacro MUI_UNFUNCTION_DESCRIPTION_END
1141
1142 ; ============================================================================
1143 ; Callback functions
1144 ; ============================================================================
1145 !ifdef GTK1_DIR & GTK2_DIR
1146 ;Disable GTK-Wimp for GTK1
1147
1148 Function .onSelChange
1149         Push $0
1150         SectionGetFlags ${SecWiresharkGTK1} $0
1151         IntOp  $0 $0 & 1
1152         IntCmp $0 1 onSelChange.disableGTK2Sections
1153         ;enable GTK2Sections
1154         !insertmacro EnableSection ${SecGTKWimp}
1155         Goto onSelChange.end
1156 onSelChange.disableGTK2Sections:
1157         !insertmacro DisableSection ${SecGTKWimp}
1158         Goto onSelChange.end
1159 onSelChange.end:
1160         Pop $0
1161 FunctionEnd
1162
1163 !else
1164 !ifdef GTK1_DIR | GTK2_DIR
1165 ; Disable FileExtension if Wireshark isn't selected
1166 Function .onSelChange
1167         Push $0
1168 !ifdef GTK1_DIR
1169         SectionGetFlags ${SecWiresharkGTK1} $0
1170         IntOp  $0 $0 & 1
1171         IntCmp $0 0 onSelChange.unselect
1172         SectionGetFlags ${SecFileExtensions} $0
1173         IntOp  $0 $0 & 16
1174         IntCmp $0 16 onSelChange.unreadonly
1175         Goto onSelChange.end
1176 !else
1177         SectionGetFlags ${SecWiresharkGTK2} $0
1178         IntOp  $0 $0 & 1
1179         IntCmp $0 0 onSelChange.unselect
1180         SectionGetFlags ${SecFileExtensions} $0
1181         IntOp  $0 $0 & 16
1182         IntCmp $0 16 onSelChange.unreadonly
1183         Goto onSelChange.end
1184 !endif
1185 onSelChange.unselect:
1186         SectionGetFlags ${SecFileExtensions} $0
1187         IntOp $0 $0 & 0xFFFFFFFE
1188         IntOp $0 $0 | 0x10
1189         SectionSetFlags ${SecFileExtensions} $0
1190         Goto onSelChange.end
1191 onSelChange.unreadonly:
1192         SectionGetFlags ${SecFileExtensions} $0
1193         IntOp $0 $0 & 0xFFFFFFEF
1194         SectionSetFlags ${SecFileExtensions} $0
1195         Goto onSelChange.end
1196 onSelChange.end:
1197         Pop $0
1198 FunctionEnd
1199 !endif
1200 !endif
1201
1202
1203 !include "GetWindowsVersion.nsh"
1204 !include WinMessages.nsh
1205 !include "VersionCompare.nsh"
1206
1207 Var NPF_START ; NPF service registry key
1208 Var WINPCAP_NAME ; DisplayName from WinPcap installation
1209 Var WINPCAP_VERSION ; DisplayVersion from WinPcap installation
1210
1211 Function myShowCallback
1212
1213 ; Uinstall old Wireshark first
1214 ; XXX - doesn't work, but kept here for further experiments
1215 ;ReadRegStr $WIRESHARK_UNINSTALL HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Wireshark" "UninstallString"
1216 ;IfErrors lbl_wireshark_notinstalled ;if RegKey is unavailable, WinPcap is not installed
1217 ;MessageBox MB_YESNO|MB_ICONQUESTION "Uninstall the old Wireshark version first (recommended)?"
1218 ; Hide the installer while uninstalling
1219 ;GetDlgItem $0 $HWNDPARENT 1
1220 ;FindWindow $0 "#32770" "" $HWNDPARENT
1221 ;MessageBox MB_OK "Window $0"
1222 ;ShowWindow $0 ${SW_HIDE}
1223 ;HideWindow
1224 ;ExecWait '$WIRESHARK_UNINSTALL' $0
1225 ;DetailPrint "WinPcap uninstaller returned $0"
1226 ;GetDlgItem $0 $HWNDPARENT 1
1227 ;ShowWindow $0 ${SW_SHOW}
1228 ;MessageBox MB_OK "Uninstalled"
1229 ;lbl_wireshark_notinstalled:
1230
1231
1232         ; Get the Windows version
1233         Call GetWindowsVersion
1234         Pop $R0 ; Windows Version
1235
1236         ; Check if we're able to run with this version
1237         StrCmp $R0 '95' lbl_winversion_unsupported
1238         StrCmp $R0 '98' lbl_winversion_unsupported
1239         StrCmp $R0 'ME' lbl_winversion_unsupported
1240         StrCmp $R0 'NT 4.0' lbl_winversion_unsupported_nt4
1241         Goto lbl_winversion_supported
1242 lbl_winversion_unsupported:
1243         MessageBox MB_OK "Windows $R0 is no longer supported. The last known version working with 98/ME was Ethereal 0.99.0!"
1244         Quit
1245
1246 lbl_winversion_unsupported_nt4:
1247         MessageBox MB_OK "Windows $R0 is no longer supported. The last known version working with NT 4.0 was Wireshark 0.99.4!"
1248         Quit
1249
1250 lbl_winversion_supported:
1251 !ifdef GTK2_DIR
1252         ; Enable GTK-Wimp only for Windows 2000/XP/2003
1253         ; ...as Win9x/ME/NT known to have problems with it!
1254
1255         ;DetailPrint 'Windows Version: $R0'
1256         StrCmp $R0 '2000' lbl_select_wimp
1257         StrCmp $R0 'XP' lbl_select_wimp
1258         StrCmp $R0 '2003' lbl_select_wimp
1259         DetailPrint "Windows $R0 doesn't support the GTK MS Windows Engine!"
1260
1261         Goto lbl_ignore_wimp
1262 lbl_select_wimp:
1263         !insertmacro SelectSection ${SecGTKWimp}
1264
1265 lbl_ignore_wimp:
1266 !endif
1267
1268
1269         ; detect if WinPcap should be installed
1270         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 4" "Text" "Install WinPcap 4.0.2"
1271         ReadRegStr $WINPCAP_NAME HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\WinPcapInst" "DisplayName"
1272         IfErrors 0 lbl_winpcap_installed ;if RegKey is available, WinPcap is already installed
1273         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 2" "Text" "WinPcap is currently not installed"
1274         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 2" "Flags" "DISABLED"
1275         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 5" "Text" "(Use Add/Remove Programs first to uninstall any undetected old WinPcap versions)"
1276         Goto lbl_winpcap_done
1277
1278 lbl_winpcap_installed:
1279         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 2" "Text" "$WINPCAP_NAME"
1280         ; Compare the installed build against the one we have.
1281         ReadRegStr $WINPCAP_VERSION HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\WinPcapInst" "DisplayVersion"
1282         StrCmp $WINPCAP_VERSION "" lbl_winpcap_do_install ; WinPcap is really old(?) or installed improperly.
1283         ${VersionCompare} $WINPCAP_VERSION "4.0.0.1040" $1 ; WinPcap 4.0.2
1284         StrCmp $1 "2" lbl_winpcap_do_install
1285
1286 ;lbl_winpcap_dont_install:
1287         ; The installed version is >= to what we have, so don't install
1288         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 4" "State" "0"
1289         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 5" "Text" "If selected, the currently installed $WINPCAP_NAME will be uninstalled first."
1290         Goto lbl_winpcap_done
1291
1292 ;lbl_winpcap_dont_upgrade:
1293         ; force the user to upgrade by hand
1294         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 4" "State" "0"
1295         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 4" "Flags" "DISABLED"
1296         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 5" "Text" "If you wish to install WinPcap 4.0.2, please uninstall $WINPCAP_NAME manually first."
1297         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 5" "Flags" "DISABLED"
1298         Goto lbl_winpcap_done
1299
1300 lbl_winpcap_do_install:
1301         ; seems to be an old version, install newer one
1302         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 4" "State" "1"
1303         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 5" "Text" "The currently installed $WINPCAP_NAME will be uninstalled first."
1304
1305 lbl_winpcap_done:
1306
1307         ; Disable NPF service setting for Win OT
1308         StrCmp $R0 '95' lbl_npf_disable
1309         StrCmp $R0 '98' lbl_npf_disable
1310         StrCmp $R0 'ME' lbl_npf_disable
1311         ; Enable NPF by default under Vista.
1312         StrCmp $R0 'Vista' lbl_npf_enable
1313         ReadRegDWORD $NPF_START HKEY_LOCAL_MACHINE "SYSTEM\CurrentControlSet\Services\NPF" "Start"
1314         ; (Winpcap may not be installed already, so no regKey is no error here)
1315         IfErrors lbl_npf_done ;RegKey not available, so do not set it
1316         IntCmp $NPF_START 2 0 lbl_npf_done lbl_npf_done
1317 lbl_npf_enable:
1318         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 8" "State" "1"
1319         Goto lbl_npf_done
1320         ;disable
1321 lbl_npf_disable:
1322         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 8" "State" "0"
1323         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 8" "Flags" "DISABLED"
1324         WriteINIStr "$PLUGINSDIR\WinPcapPage.ini" "Field 9" "Flags" "DISABLED"
1325 lbl_npf_done:
1326
1327
1328         ; if Wireshark was previously installed, unselect previously not installed icons etc.
1329         ; detect if Wireshark is already installed ->
1330         ReadRegStr $0 HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Wireshark" "UninstallString"
1331         IfErrors lbl_wireshark_notinstalled ;if RegKey is unavailable, Wireshark is not installed
1332
1333         ; only select Start Menu Group, if previously installed
1334         ; (we use the "all users" start menu, so select it first)
1335         SetShellVarContext all
1336         IfFileExists "$SMPROGRAMS\Wireshark\Wireshark.lnk" lbl_have_startmenu
1337         WriteINIStr "$PLUGINSDIR\AdditionalTasksPage.ini" "Field 2" "State" "0"
1338 lbl_have_startmenu:
1339
1340         ; only select Desktop Icon, if previously installed
1341         IfFileExists "$DESKTOP\Wireshark.lnk" lbl_have_desktopicon
1342         WriteINIStr "$PLUGINSDIR\AdditionalTasksPage.ini" "Field 3" "State" "0"
1343 lbl_have_desktopicon:
1344
1345         ; only select Quick Launch Icon, if previously installed
1346         IfFileExists "$QUICKLAUNCH\Wireshark.lnk" lbl_have_quicklaunchicon
1347         WriteINIStr "$PLUGINSDIR\AdditionalTasksPage.ini" "Field 4" "State" "0"
1348 lbl_have_quicklaunchicon:
1349
1350 lbl_wireshark_notinstalled:
1351
1352
1353 FunctionEnd