View Single Post
Old 02-12-2006, 09:28 AM   #6 (permalink)
asshopo
Insane
 
Location: Michigan
Don't know of any off the top of my head, but you could write a batch/VBS file to basicly do:

REGEDIT.EXE [ /L:system ¦ /R:user ] /E exportfile "registry_key"

On the exportfile, append the date, run it once a day via the scheduler. Then have a cleanup VBS script to prune files older than x days/weeks/months.

I do some stuff like this on my Windows server that has mysql. I do mysql-dump and append the date. Use the DelOldFiles.VBS script to prune anything older than 7 days.

I can post example VBS scripts if anyone wants them, but I will not be liable if something goes wrong . I know they work, I use them in production environments, but if someone makes a mistake setting it, it's not my fault, ya know?
__________________
Patterns have a habit of repeating themselves.
asshopo is offline  
 

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 60 61 62 63 64 65 66 67 68 69 70 71 72 73