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.
Asked
Active
Viewed 196 times
-1
-
1Which OS does this relate to? There's more than one OS where the C# language is used. – TidyDev Nov 26 '17 at 14:50
1 Answers
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