0

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).

dervel
  • 78
  • 3
  • You may want to create system tray application. http://stackoverflow.com/questions/995195/writing-a-windows-system-tray-application-with-net – Adam May 14 '12 at 13:19

2 Answers2

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