1. Shrink Mint´s partition if needed using GParted
http://www.youtube.com/user/ILO98120/vi ... ry=gparted2. Make a ntfs partition(s) for windows. One must be a primary partition.
3. Download SuperGrub2 CD and boot Mint using it after windows installation.
http://www.supergrubdisk.org/category/d ... kdownload/4. Install windows
5. Restore grub back to MBR (you need to boot Mint using SuperGrub2 or you can restore grub using liveCD also).
sudo grub-install /dev/sdx # where x=HD
sudo os-prober
sudo update-grubIf you restore grub via liveCD, it goes like this:
sudo blkid # tells the media
sudo mount /dev/sdxy /mnt # where x=HD and y=partition
sudo grub-install --boot-directory=/mnt/boot /sdx # where x=HDYou can install and update grub via chrooting also
sudo blkid # tells the media
sudo mount /dev/sdxy /mnt # where x=HD and y=partition
sudo mount --bind /dev /mnt/dev
sudo mount --bind /proc /mnt/proc
sudo mount --bind /sys /mnt/sys
sudo chroot /mnt
os-prober
update-grub
grub-install /dev/sdx # where x= HD
exit
sudo umount /mnt/sys
sudo umount /mnt/proc
sudo umount /mnt/dev
sudo umount /mnt