Click here to Skip to main content
15,885,943 members
Articles / General Programming / File
Tip/Trick

ZIP or Archive and Delete Old Log Files using Windows Task Scheduler in Winrar

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
7 Mar 2014CPOL1 min read 10.8K   1  
Zip or Archive and delete old log files using Windows Task Scheduler in Winrar

Introduction

Sometimes, we need to delete temporary files or old log files or text files using some service of Windows Task Scheduler. Today, I am going to discuss how to create Task Scheduler in Windows and archive old log files.

Background

In your computer, Winrar software should be installed. We only need to create a batch file and execute some command in the batch file.

Using the Code

Set Windows Environmental variable to point to installed Winrar application

  • Right click on My Computer to open popup
  • Click Properties to open the dialog box
  • Click on Advance system settings to open System properties dialog box
  • Click on Advance tab, click on Environmental variables button to open a dialog box
  • Select “Path” variable from the below pane and click Edit button to open a dialog box
  • Append the following at the end of the text box:

    ;C:\Program Files\WinRAR (included semicolon also) – This is the path where your actual Winrar application is installed

  • Click OK, Click OK, Click OK

Now open Notepad and add the following contents in that

WinRAR a -r YOURTARGETZIPFILENAME SOURCEFILETOZIP (This is for zipping)

Eg. WinRAR a -r C:\Test.zip C:\Test.txt

cd DIRNAME (directory from where you will delete log files)

del /Q /F /S YOURFILENAME

Now, save the file as “Test.bat

Now let's configure Windows Task Scheduler.

Configure Task Scheduler

  • Click Start menu
  • Find Task Scheduler, click to open to Task Scheduler Window
  • Click Create Basic Task to open a dialog box
  • Type TestScheduler in text box. Click Next button
  • Select “Daily” radio button
  • Click Next
  • Set Start time of the task to start
  • Click Next
  • Select “Start a program” radio button
  • Click Next
  • Click Browse and select Test.bat
  • Click Next, Click Finish

Now you are ready to go. Happy coding!!!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Asia/Pacific Region Asia/Pacific Region
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --