does that just run as a batch file? what do i need to modify to make it work?
thanks, jim ----- Original Message ----- From: "Len Conrad" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, April 27, 2002 11:53 AM Subject: RE: [IMail Forum] automate backup > > >We use a CMD file as a scheduled task. > >On our system the command file lives in d:\IMRegBack > >You should modify this code to fit your needs. > > > >del d:\IMRegBack\imail.reg.10 > >rename d:\IMRegBack\imail_reg.9 imail_reg.10 > >rename d:\IMRegBack\imail_reg.8 imail_reg.9 > >rename d:\IMRegBack\imail_reg.7 imail_reg.8 > >rename d:\IMRegBack\imail_reg.6 imail_reg.7 > >rename d:\IMRegBack\imail_reg.5 imail_reg.6 > >rename d:\IMRegBack\imail_reg.4 imail_reg.5 > >rename d:\IMRegBack\imail_reg.3 imail_reg.4 > >rename d:\IMRegBack\imail_reg.2 imail_reg.3 > >rename d:\IMRegBack\imail_reg.1 imail_reg.2 > >rename d:\IMRegBack\imail_reg.0 imail_reg.1 > >regedit /e d:\IMRegBack\imail_reg HKEY_LOCAL_MACHINE\SOFTWARE\IPSWITCH\ > >rename d:\IMRegBack\imail_reg imail_reg.0 > > How about this pseudo code? > > for n from i to max > > move /Y path/file.(n).zip path/file.(n+1).zip > > regedit /e d:\IMRegBack\imail_reg HKEY_LOCAL_MACHINE\SOFTWARE\IPSWITCH\ > > path/file.0 > > pkzip path/file.0 > > Len > > > > Please visit http://www.ipswitch.com/support/mailing-lists.html > to be removed from this list. > > An Archive of this list is available at: > http://www.mail-archive.com/imail_forum%40list.ipswitch.com/ > > Please visit the Knowledge Base for answers to frequently asked > questions: http://www.ipswitch.com/support/IMail/ > Please visit http://www.ipswitch.com/support/mailing-lists.html to be removed from this list. An Archive of this list is available at: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/ Please visit the Knowledge Base for answers to frequently asked questions: http://www.ipswitch.com/support/IMail/
