What's the best way to set a windows service description in .net -


I have created a C # service using the VS 2005 template. It works fine but the description of the service is empty in the Windows service control applet.

create a service installer and set details

  private systems. service of process. Service Installer Service Installer = New System. service of process. Service Installer (); This.serviceInstaller.Description = "The service handles content";  

Comments