how to manually stop aspnet_wp ??

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have the worker process holding onto a COM DLL, preventing me from
re-building it.

How should I be shutting down the worker process for debugging? Killing
the process seems heavy-handed.
 
I have the worker process holding onto a COM DLL, preventing me from
re-building it.

How should I be shutting down the worker process for debugging? Killing
the process seems heavy-handed.

a couple ways; mainly if you shut down the web server, it will bring down
aspnet_wp as well:

net stop w3svc
net start w3svc

-OR-

iisreset
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top