Remote debugger service

S

Smokey Grindel

Does anyone know if I run the Visual Studio Remote Debugger service on my
development server will it slow down the system? Never used the service
before... use to just launch the remote debugging app to do it in the past..
thanks!
 
P

Peter Bromberg [C# MVP]

Every service that you allow to run on a Windows OS takes up additional
memory and resources. By default, a new installation of a Windows OS runs
services that may not be needed for a particular environment. Often these
un-needed services can be set to "disabled" in order to free up memory and
take up less resources.
An easy way to gauge what effect this service has on your OS is to set it up
and start it, and look at the working set (VM in Task Manager is a pretty
good indicator, though far from exact). Then you can be the judge. Some
services do not start anyway unless they are required to be used.
-- Peter
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
MetaFinder: http://www.blogmetafinder.com
 
B

Bela Istok

Run the Debug only to test problems, not run the service all the time, I
have the Remote Debugger installed in some servers to test the execution in
pre production (and some rare times in production). If you don't have any
debugger attached to the process the same will run without a problem (no
performance loss).

Regards,

Bela Istok
 

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

Top