aboutsummaryrefslogtreecommitdiffstats
path: root/packaging
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2002-09-30 14:43:18 +0000
committerGerald Combs <gerald@wireshark.org>2002-09-30 14:43:18 +0000
commitbc73763541c1020f4b882dbe3e1de0824ec98365 (patch)
treea0797db22d1f9f3261e134a80845d6884eb6bad5 /packaging
parentefd65d42bf1c566fb55b61a1926d8522d7c90c55 (diff)
Be more heavy-handed about deleting things during the uninstall process.
svn path=/trunk/; revision=6361
Diffstat (limited to 'packaging')
-rw-r--r--packaging/nsis/ethereal.nsi23
1 files changed, 6 insertions, 17 deletions
diff --git a/packaging/nsis/ethereal.nsi b/packaging/nsis/ethereal.nsi
index 3e77520559..8bf7fe9772 100644
--- a/packaging/nsis/ethereal.nsi
+++ b/packaging/nsis/ethereal.nsi
@@ -1,7 +1,7 @@
;
; ethereal.nsi
;
-; $Id: ethereal.nsi,v 1.6 2002/09/29 18:16:42 gerald Exp $
+; $Id: ethereal.nsi,v 1.7 2002/09/30 14:43:18 gerald Exp $
; ============================================================================
; Header configuration
@@ -170,28 +170,17 @@ Section "Uninstall"
DeleteRegKey HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\Ethereal"
DeleteRegKey HKEY_LOCAL_MACHINE SOFTWARE\Ethereal
-Delete "$INSTDIR\FAQ"
-Delete "$INSTDIR\README*"
-Delete "$INSTDIR\manuf"
-Delete "$INSTDIR\dictionary.dtd"
-Delete "$INSTDIR\dictionary.xml"
-Delete "$INSTDIR\mobileipv4.xml"
-Delete "$INSTDIR\nasreq.xml"
-Delete "$INSTDIR\sunping.xml"
-Delete "$INSTDIR\*.exe"
-Delete "$INSTDIR\*.html"
-Delete "$INSTDIR\*.dll"
-Delete "$INSTDIR\plugins\${VERSION}\coseventcomm.dll"
-Delete "$INSTDIR\plugins\${VERSION}\cosnaming.dll"
-Delete "$INSTDIR\plugins\${VERSION}\docsis.dll"
-Delete "$INSTDIR\plugins\${VERSION}\gryphon.dll"
-Delete "$INSTDIR\plugins\${VERSION}\mgcp.dll"
+Delete "$INSTDIR\plugins\${VERSION}\*.*"
+Delete "$INSTDIR\plugins\*.*"
+Delete "$INSTDIR\diameter\*.*"
+Delete "$INSTDIR\*.*"
Delete "$SMPROGRAMS\Ethereal\*.*"
Delete "$DESKTOP\Ethereal.lnk"
RMDir "$SMPROGRAMS\Ethereal"
RMDir "$INSTDIR\plugins\${VERSION}"
RMDir "$INSTDIR\plugins"
+RMDir "$INSTDIR\diameter"
RMDir "$INSTDIR"
SectionEnd