Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to run a console application on system Startup , without appearing it on display(background process)?

I want to run a console application on system start up without appearing it on display screen means i want to run a application as a background process.How to do this?

like image 576
Praveen Kumar Avatar asked Feb 18 '23 23:02

Praveen Kumar


1 Answers

In short: The simplest way might be to schedule task to be started from your operating system. This might be the way easiest thing to set.

You may easily run it in the background with the scheduler - How to run a .Net Console App in the background

like image 192
Yusubov Avatar answered Feb 20 '23 19:02

Yusubov