Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

wireshark

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 ?

like image 351
iRunner Avatar asked Apr 21 '14 01:04

iRunner


1 Answers

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.

like image 134
manjesh23 Avatar answered Jan 03 '23 18:01

manjesh23