change c# console/GUI app to w2k services

  • Thread starter Thread starter Mullin Yu
  • Start date Start date
M

Mullin Yu

as subject? how can i do so? i want it to be started automatically when the
machine has been rebooted.

thanks!
 
Hello Mullin,

1- To start, you may choose the Windows Service template from the list of
project types in VS.NET.
2- Every Windows Service class must be inherted from
System.ServiceProcess.ServiceBase
3- Also every Windows Service must have an installer class to install it
using the Instalutil.exe that comes with .NET Framework
4- You can find a good tutorial on how to build Windows Services in MSDN

Hope this usefull. If you like you can also email me for help.

Regards,
 
Back
Top