I would just use mysqldump and save the output to a file. drop that file onto your windows machine (doesn't matter where). In the windows machine create the database simply using
Code:
CREATE DATABASE databasenameyouwant
then call the mysqldump file into the database on that machine from your command prompt or even using RUN.
Code:
/pathtomysql/mysql -uUSERNAME -pPASSWORD databasenameyouwant < '/pathtomysqldumpfile/dumpfile.txt'
and that will recreate the database for you.