-1

i have developed an application in C# and it works well. But my customer want it to start with the OS (in startup time). so pleas advise me how can i do that.

FahmiMater
  • 17
  • 3

1 Answers1

0

Deploy your application as window service. This service can be configured to start with OS boot.

Rahul Garg
  • 4,069
  • 1
  • 34
  • 31
  • thank u @Rahul Garg but how can i do that . Is there a code for example? – FahmiMater Nov 26 '17 at 15:36
  • You can use window service template in visual studio. For reference, follow the link: https://learn.microsoft.com/en-us/dotnet/framework/windows-services/walkthrough-creating-a-windows-service-application-in-the-component-designer – Rahul Garg Nov 26 '17 at 16:22