Alhambra Eidos
Alhambra Eidos

Reputation: 1553

How stops webdev.webserver.exe

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

Answers (3)

EvgeniyK
EvgeniyK

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

Marek
Marek

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

Oded
Oded

Reputation: 499382

Stopping a process is killing it.

Why do you need to "stop" the process without killing it? What do you mean by "stopping" the process?

You can use this tool to pause and resume processes.

Upvotes: 0

Related Questions