I used WinDiskImager to begin with, then for some reason it wouldn't write an image to a flash drive, so I tried DD for windows :
http://uranus.chrysocome.net/linux/rawwrite/
Edit - a more appropriate link for Win DD is here :
http://www.chrysocome.net/dd
plus it includes docs on usage //Edit
I've found this works a treat. But, and this is a *big but*, there is no hand holding. If you get the hard disk number wrong, you better have a recent image of your hard drive.
For example, what I do is put dd.exe in the same folder as the image to be written. I usually rename the image to be written to something easier to type on the command line.
First thing is to find out the path to the hard drive you want to write to. So enter :
dd --list
then from the results of this, identify the path to the device you want to write to. For the first additional drive, this might be :
\\?\Device\Harddisk1\Partition0
Note, I have found that your PC's main hard drive, if you have just a single hard drive in the PC you are using, will usually be :
\\?\Device\Harddisk0\Partition0
*Make sure you don't write to this one !*
OK, now we know where the image is going, time to get writing. So something like this should do the trick :
dd bs=10M if=u11-10.img of=\\?\Device\Harddisk1\Partition0 --progress
Few points on the above :
* I have used block size of 10M (10 Meg) as it takes a *lot* longer using the default block size of 512K
* --progress is added so you can see how much of the image has been written
When you press enter on the dd command there is no "Are you sure you want to do this" or "Do you realise your about to write to the system hard drive and will really regret doing that". Nope, in true old world UNIX style, it just goes ahead and does it.
When the image is written, if you try to eject/remove the USB hard drive in the safe way, I have found windows will complain. So, I just pull the USB plug out.
Yesterday, I set up a Xubuntu on a hard drive and installed quite a few apps on there. I'm going to have a go with transferring this to a USB flash drive with clonezilla and will see how that goes.
Hope you find this useful. And if you have any further experience or alternatives at writing Joggler images to hard drives, would be good to post it here.