views:

211

answers:

1

I'm trying to attach to a windows service I am running to debug it however the "Available Processes" list under "Attach to Process" it shows as disabled and won't allow me to attach. What am I missing?

+1  A: 

http://bytes.com/topic/visual-basic-net/answers/620660-trouble-attaching-windows-service-process

Apparently the dialog doesn't display all services running by default and there is an instance of [MyServiceName].vshost.exe running that had me confused. Simply clicking the filter to display all services revealed my "hidden" service.

Achilles