In order to backup MySQL database in windows, we need to make a batch file.  The contents of the batch file should be as follows:
o—–
@echo off
echo Running dump…
c:
cd \
cd “wampp2″
cd mysql
cd bin
mysqldump -u<user> -<pass> –all-databases –result-file=”c:\data\backup.%DATE:~0,3%.sql”
echo Done!
0—–
Okay now that our batch file is made we can run it and verify that it created an output […]