When I am running my application, It opens many instance of cassini. How can i stop all or some of the cassini instances quickly.
I know to kill all the processes from task manager. Can it be done in some better and faster way?
When I am running my application, It opens many instance of cassini. How can i stop all or some of the cassini instances quickly.
I know to kill all the processes from task manager. Can it be done in some better and faster way?
The process name has changed on this version its now:
taskkill /IM WebDev.WebServer40.exe /F
When that doesn't work, check the tasklist for a similar name.
This Visual Studio extension provides a quick way to kill all instances of Cassini (via a shortcut key)
EDIT :
If you want to do it via command line only, then you can use the taskkill
command. An example:
taskkill /IM WebDev.WebServer /F
See this page for more examples, and an explination of the command. You may need to specify WebDev.WebServer40 for the .Net 4 web server
© 2022 - 2024 — McMap. All rights reserved.