Anyone knows a way to run a c# application without a window popping up(either form or dos window) or having it at the task bar as an application . I want it to be seen at processes tab at task manager or at the system icons(at the right of the task bar).
Asked
Active
Viewed 755 times
2 Answers
3
then you need to create a Windows Service.
Visual Studio => New Project => Windows => Windows Service
Here is some more information:

hwcverwe
- 5,287
- 7
- 35
- 63
0
In windows app setting you can for a form set
ShowinTaskbar = false;

Nikhil Agrawal
- 47,018
- 22
- 121
- 208