<p align="center" style="margin-top: 0; margin-bottom: 0">I use a program called
System ScreenSaver. This program that can execute a file at any given intervals. </p>
<p align="center" style="margin-top: 0; margin-bottom: 0">Every time the screen saver is activated on my Wizard it will backup all saved mats, and any other important information to my D drive (small hard drive installed in the wizard) and it can also be setup to back up to a secure file on my web server.</p>
<p align="center" style="margin-top: 0; margin-bottom: 0">The screen saver is set to execute a file called backup.bat.</p>
<p align="center" style="margin-top: 0; margin-bottom: 0">A bat or batch file can be setup to backup or copy almost anything or everything on the drive to any drive on the local network. I find it very useful when backing up the same files every day. My bat file looks like this:</p>
<div align="center">
<center>
<table border="1" width="697" id="table1" height="118" style="border-collapse: collapse" bordercolor="#111111" cellpadding="0" cellspacing="0">
<tr>
<td width="687">
<p style="margin-top: 0; margin-bottom: 0">This bat file backs up mats and shuts down windows.</td>
</tr>
<tr>
<td width="687">
<p style="margin-top: 0; margin-bottom: 0">xcopy C:\Wizard\Mats D:\Wizard\Mats /c /e /h /r /y /d /s
xcopy C:\Wizard\Mats \\Gallery\d\backup\MATS /c /e /h /r /y /d /s
TYPE NUL | CHOICE.COM /N /CY /TY,5 >NUL
start C:\WINDOWS\RUNDLL32.EXE user,exitwindows
exit
cls</td>
</tr>
<tr>
<td width="687">
<p style="margin-top: 0; margin-bottom: 0">This bat file backs up mats to two computers and resets the head of the Wizard</td>
</tr>
<tr>
<td width="687">
<p style="margin-top: 0; margin-bottom: 0">xcopy C:\Wizard\Mats D:\Wizard\Mats /c /e /h /r /y /d /s
xcopy C:\Wizard\Mats \\Gallery\d\backup\MATS /c /e /h /r /y /d /s
START "C:\batch\reset.lnk"
cls
</td>
</tr>
</table>
</center>
</div>
<p align="center" style="margin-top: 0; margin-bottom: 0">Before you try this I would recommend doing a little research on .bat and batch files. </p>
<p align="center" style="margin-top: 0; margin-bottom: 0"></p>
<p align="center" style="margin-top: 0; margin-bottom: 0">
<a href="http://www.computerhope.com/batch.htm">
http://www.computerhope.com/batch.htm</p></a>
<p align="center" style="margin-top: 0; margin-bottom: 0">
http://www.ahuka.com/backup/backup3.html</p>
<p align="center" style="margin-top: 0; margin-bottom: 0">
<a href="http://www.speedguide.net/read_articles.php?id=1547">
http://www.speedguide.net/read_articles.php?id=1547</p></a>
<p align="center" style="margin-top: 0; margin-bottom: 0">
</p>
<p align="center" style="margin-top: 0; margin-bottom: 0"></p>