That would be the simplest route, a Ubuntu liveCD. If it gives you errors, you can always force mount it. To do that:
This will tell you where your Windows partition is.
Code:
sudo mkdir /media/windows
sudo mount /dev/(yourdevice) /media/windows -o force
This makes a directory then mounts Windows to that directory. [Replace (yourdevice) with the partition fdisk told you, so if it comes back with sda1, put that in.]
This is assuming it won't mount by default, and it will force it to work. If it doesn't, report back and we can try something else. Keep in mind fdisk will report the extensions of your hard drive.. meaning NTFS is the Windows one, no doubt! (Linux uses different file types, like EXT2/3/4 etc.)