installing windows service

A

Ankit Aneja

I am able to make a windows service in C#.NET
and also tested it on my own system by installing it this way(installutil
servicename.exe) and is running fine
now when I want to test it on other system
which files do i need to copy
or how can I make a project installer which can install it on other system.I
am using visual studio.net 2003
 
L

Luke Zhang [MSFT]

Hello,

Does the service start successfully on the target server? Also, is there
any useful information in the system event log, for example, the service
failed to start up?

It is better to add some debug code to your windows service, for example,
write some log to a text file or system event log, to record if it start
sccuessfully or if it recieve client's request. These all can help to
trouble shoot the problem.

Luke Zhang
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
 
A

Ankit Aneja

yes its working fine,I just want a tutorial which can teach me how can i
make a setup which itself register comdll(which my service is using) on
server on which i run setup
 
A

Ankit Aneja

problem solved
thanks
Ankit Aneja said:
yes its working fine,I just want a tutorial which can teach me how can i
make a setup which itself register comdll(which my service is using) on
server on which i run setup
 

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