I am trying to uninstall Wireshark. I closed all wireshark instances. but still it is giving error as Wireshark or one associated with it is already running. How to uninstall it ?

有帮助吗?

解决方案 2

It's hard to say without knowing which OS you're running, but generally you should open up your task manager and see if there are any Wireshark or Tshark or Dumpcap processes still running that would cause this. Optionally also try rebooting...

其他提示

Alternatively you can also use the Windows cmd command

tasklist | findstr -i "cap"

And then check for any of the wireshark related component, something like usbcap, dumpcap and if you find one, use the below command to kill it.

taskkill -f /PID xxxx

Where xxxx is the process ID of the output of the first command.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top