Hi, Is there any way to have an install package for WireShark that don't deploy the WinCap (without the option to install WinCap?) I will not give the option to capture the traffic since I will provide the traffic packages to my team. I will not relly then to uninstall the WinCap after deploy the WireShark. Is that possible? To remove WinCap option from the install package? asked 01 Mar '13, 04:03 Bonacordi |
2 Answers:
As @Jaap says, you can make your own installer. However, I don't really see the point. I see two possible install scenario's
How do you see the use case for an installer without WinPcap included? answered 01 Mar '13, 09:18 SYN-bit ♦♦ |
In order to do so you'll have to roll your own installer. answered 01 Mar '13, 05:36 Jaap ♦ Any hint or tutorial about how to do that? (01 Mar '13, 08:00) Bonacordi |
as part of an analysis system/package (together with other software) where Wireshark is only used to look at capture files and there is no need to capture traffic. If you want to roll out that package automatically, you would need a way to prevent the installation of Winpcap. But then, the OP could just use the portable version of Wireshark, extract it, remove WinPcap from the package and repackage it.
Oh, I do understand the use-case for not having WinPcap installed, but I think the current installer has hooks to not install WinPcap in an automated environment:
From packaging/nsis/wireshark.nsi:
And from http://nsis.sourceforge.net/Docs/Chapter4.html#4.12:
There are several methods to make an installer or an uninstaller silent:
So starting the installer with /S should do the trick :-)
there you have it. Problem solved! :-)
Thanks Guys... It was exaclty what I was looking for.
(I converted your "answer" to a "comment", that's the way this site works best, please see the FAQ)