Wireshark or one associated with it is already running [closed]
Asked Answered
B

2

9

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 ?

Battement answered 21/4, 2014 at 1:49 Comment(0)
S
8

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...

Stefan answered 21/4, 2014 at 2:8 Comment(2)
Dumpcap process was running. Thanks saved my lots of time.Battement
In my case it seemed to have been "USBPcapCMD.exe".Blunderbuss
B
14

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.

Bryozoan answered 15/5, 2017 at 14:16 Comment(0)
S
8

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...

Stefan answered 21/4, 2014 at 2:8 Comment(2)
Dumpcap process was running. Thanks saved my lots of time.Battement
In my case it seemed to have been "USBPcapCMD.exe".Blunderbuss

© 2022 - 2024 — McMap. All rights reserved.