.bat in scheduled tasks

  • Thread starter Thread starter Spiike
  • Start date Start date
S

Spiike

Hi, help, I've set the app below to delete files in a
folder but it does not run automatically, can anyone
advise me on this.

@echo off
del /q c:\folder\*.doc

I would appreciate any help.

thanks Spiike
 
You won't need the @echo off as this is going to run in the background
anyway.
Check the credentials for that scheduled task. Don't know if it makes any
difference, but I usually do del <path>\*.whatever /q ....
 
Thanks, ok now, appreciate your reply

Spiike
-----Original Message-----
You won't need the @echo off as this is going to run in the background
anyway.
Check the credentials for that scheduled task. Don't know if it makes any
difference, but I usually do del <path>\*.whatever /q ....



.
 
Back
Top