I would like to create a Visual Studio deployment project that creates some scheduled tasks in a domain environment

I want to create a Visual Studio 2008 deployment project that has set some scheduled tasks in the commit phase. I work in a domain environment, and I would also like the scheduled tasks to run regardless of whether the user was logged on or not registered. Therefore, a task schedule requires a password for the domain user. In addition, the application is installed using RDP, so asking the current user in the log is a problem. Any ideas on how to do this are very welcome.

Thanks,

Valeriu

+3
source share
2 answers
0
source

Is this a centralized task scheduler or something that you want each user machine to work on?

For a centralized scheduler, I would recommend, according to Beria, using the Windows service. You can configure the scheduler as a simple Windows service method or make a reference to your own class and call the method from it.

WCF Windows WCF . WCF , . . .

0

Source: https://habr.com/ru/post/1722550/


All Articles