Task scheduler
Anonymous user
-
Anonymous user -
Anonymous user -
Hello,
I have a problem as I need to launch a batch application every time my PC starts in administrator mode.
So I used the Task Scheduler but it doesn't work :'(
Oh, and for those who want to help, I want to say that I need a batch command line
because I will give it to my friends and it's a matter of an installer (the installer works very well but there is a problem with the Task Scheduler).
I have a problem as I need to launch a batch application every time my PC starts in administrator mode.
So I used the Task Scheduler but it doesn't work :'(
Oh, and for those who want to help, I want to say that I need a batch command line
because I will give it to my friends and it's a matter of an installer (the installer works very well but there is a problem with the Task Scheduler).
2 answers
```plaintext
@echo off
sca /a c /r c: /t p /log c:\logs.ini
sca /a r /t p /log c:\logs.ini
sca /a d /u alls /t p /log c:\logs.ini
sca /a l /u alls /t p /log c:\logs.ini
echo end clean / ubdate
pause
[----------------------------------------------------------------------]
for more transparency this is the code ```
sca /a c /r c: /t p /log c:\logs.ini
sca /a r /t p /log c:\logs.ini
sca /a d /u alls /t p /log c:\logs.ini
sca /a l /u alls /t p /log c:\logs.ini
echo end clean / ubdate
pause
[----------------------------------------------------------------------]
for more transparency this is the code ```