On Windows 10, Task Manager
separates running processes into 3 different categories: Apps, Background Processes and Windows Processes. When I compile and run my C# executable, it's located under Apps
section in the Task Manager. However, I want to run it under Background Processes
section.
I tried to use this.ShowInTaskbar = false;
but it's not working on Windows 10.