how to prepare intaller of windows service

  • Thread starter Thread starter TulasiKumar
  • Start date Start date
T

TulasiKumar

hi all,
i have prepared one windows service in c#.net.This is about TcpIp packets
checking.so,my problem is how can i insatll this windows service.please tell
me any one.

thanks in advance
regards tulasi
 
Hi Tulasi

1.Add an Installer class to your Service project. You don't need to change
anything in the Installer class.
2.Create a Setup project and add the Service project (Primary output) to the
setup (Application Folder)

The result of Bulding the Setup project is an Installer (Projectname.msi).
Running this installer will install the service.

Hope it helps

Boaz Ben-Porat
Milestone Systems
 
Back
Top