How to test Windows service

I have a Windows service written in vb.net to be sure of performance I want to check it before installing how can I do work in vs2010 is there any special tool in vs2010 or an extension

any idea?

Yours faithfully,

+4
source share
1 answer

I already told you in my answer to your other question - you can check out some β€œhybrid” approaches that will allow you to write your code first as a command-line application (which can be easily debugged), and once it works fine, you can install it as a service:

+4
source

All Articles