No worries, glad it worked
Tim
"Jan Krumsiek" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> In article <(E-Mail Removed)>,
> (E-Mail Removed) says...
> > for /f "tokens=2-4 delims=/ " %%a in ('DATE/T') do set cdate=%%c-%%b-%%a
> >
> > it will set the variable cdate to a YYYY-MM-DD format for me (being in
> > Australia and having DD-MM-YYYY format dates) you could try that see
what it
> > gives you then tinker with the %%a %%b and %%c till you get the correct
> > format your after based on your date format.
> >
> > then you can use soemthing like
> > "C:\Programme\WinZip\WZZIP.EXE" -a -P -r f:\backup%cdate%.zip
"d:\Database\"
>
> Thank you very much!
> Worked great for me!
>
> Jan