Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Server > Scripting > Re: batch to zip folder

Reply
Thread Tools Display Modes

Re: batch to zip folder

 
 
Bonno Bloksma
Guest
Posts: n/a

 
      07-05-2010
Hi,

>I have a logs folder.
> A software generates every day inside this folder a new folder with
> this syntax yearmonthday, (20100626).
> I would like, every first day of month, with a scheduled task, that
> all the folder of the previous month are zipped.
> Someone could suggest me a scrip ready to use?


Here some parts of my midnight script

rem creating date variabels
set dow=%date:~0,2%
set dd=%date:~3,2%
set mm=%date:~6,2%
set yy=%date:~11,2%
set year=%date:~9,4%

rem General Vars
SET LogDir=\Beheer\Logs
SET LogTo=%LogDir%\Midnight.log
SET ZIPLOG="%LogDir%\Logs %year%-%mm%.ZIP"
SET W3Log=%WinDir%\System32\LogFiles\w3SVC1\ex%yy%%mm% %dd%.log

[....]
ZIP -m9 -j %ZipLog% %W3Log% etc. etc.
IF ErrorLevel 1 Echo %Date% %Time% Error ZIPping logfiles >> %LogTo%

The ZIP command comes in my case from the UnxUtils but there are probably better/newer tools today.
It's just that this one does what I need it to do so never changed it.

Bonno Bloksma


 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
IMAP Deleted and Sent items - some answers decomplexity Windows Live Mail 7 06-15-2010 11:06 PM
HELP! Contacts missing Tom Brown Windows Live Mail 19 04-30-2010 04:23 PM
Folders & Emails Missing from WM Elliott Windows Live Mail 10 04-30-2010 02:45 PM
My favorite links are gone... Raphi14 Windows Vista File Management 14 03-24-2010 02:38 PM
Folder Redirection - Documents, Pictures not working in Vista/7 travbrack Windows Server 0 01-14-2010 06:22 PM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59