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