G Guest May 10, 2006 #1 Can someone tell me how I can schedule the system to remove a certain log files per a week? Thank you.
Can someone tell me how I can schedule the system to remove a certain log files per a week? Thank you.
P Pegasus \(MVP\) May 11, 2006 #2 Mking said: Can someone tell me how I can schedule the system to remove a certain log files per a week? Thank you. Click to expand... 1. Create a batch file c:\WinNT\DelLogs.bat 2. Place these lines inside: @echo off del "c:\Some Folder\Some Files.log" 3. Use the Task Scheduler via the Control Panel to schedule c:\WinNT\DelLogs.bat to run once every week at the preferred time.
Mking said: Can someone tell me how I can schedule the system to remove a certain log files per a week? Thank you. Click to expand... 1. Create a batch file c:\WinNT\DelLogs.bat 2. Place these lines inside: @echo off del "c:\Some Folder\Some Files.log" 3. Use the Task Scheduler via the Control Panel to schedule c:\WinNT\DelLogs.bat to run once every week at the preferred time.