Reputation: 1553
how can stops WebDev.WebServer.exe process without kill it??
I can do this:
taskkill /F /IM WebDev.WebServer.exe -works on Windows XP- but another solution without kill the proccess ???
Upvotes: 3
Views: 6372
Reputation: 378
Yeap, you are right, it will kill all process & ASP.NET service The problem, actually, is how to kill WebDev.WebServer40.EXE, which was run with specified port. f.e. I have: WebDev.WebServer40.exe /port:10254 /path:"D:...\Web1" WebDev.WebServer40.exe /port:10512 /path:"D:...\Web2"
and taskkill /F /IM WebDev.WebServer40.exe will close all my sites, when I want only one of them
p.s. The Author means stop process == kill process, don't mind
Upvotes: 3
Reputation: 10402
Webdev.WebServer.exe is the development web server used by Visual Studio to allow quick debugging of ASP.NET applications.
Visual studio will stop it for you when it is not needed. What exact problem are you having that you want to stop it explicitly?
Upvotes: 0