@terdog1
My hard drive is divided into 5 partitions as follows:C: with XP, D:Data E:PC LinuxOS F:Linux Swap H:Win 7 C:, E: and H: are primary partitions.
It appears bcdedit is changing a sector that GRUB can't/didn't access. Will attempt to point GRUB to the Win 7 partition (not sure what sda it is) and rerun redo mbr.
At the moment I am just guessing - since you didn't describe what you did with the options presented to you from redo mbr application - that you ought to have installed grub to /dev/sda
Even if grub didn't pick up either of the windows installations that can easily be rectified once you are back in PCLinuxOS.
It would be helpful though before commencing any more operations to post the contents of these command from your live-cd session.
Please post the command you used as well as the output. Copy and paste from the terminal into your post.
Do as root from terminal. if you are in the live-cd you already know the password is root
fdisk -l [that is a lowercase l and not the figure 1]
example
[root@localhost ~]# fdisk -l
Disk /dev/sda: 1000.2 GB, 1000204886016 bytes
255 heads, 63 sectors/track, 121601 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x18000000
Device Boot Start End Blocks Id System
/dev/sda1 1 10 80293+ 6 FAT16
/dev/sda2 * 11 1504 11999232 7 HPFS/NTFS
/dev/sda3 1504 62441 489476096 7 HPFS/NTFS
/dev/sda4 62441 84698 178779447 5 Extended
/dev/sda5 62441 62705 2117632 82 Linux swap / Solaris
/dev/sda6 62705 74433 94206976 83 Linux
/dev/sda7 74434 84698 82453581 83 Linux
Disk /dev/sdb: 1000.2 GB, 1000204886016 bytes
255 heads, 63 sectors/track, 121601 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0xa7d43d72
Device Boot Start End Blocks Id System
/dev/sdb1 * 1 121602 976761824+ 7 HPFS/NTFS
next command
blkidexample
[root@localhost ~]# blkid
/dev/sda1: SEC_TYPE="msdos" LABEL="DellUtility" UUID="07DA-091B" TYPE="vfat"
/dev/sda5: LABEL="swap2000" UUID="82cf8c0e-bd15-4c00-8fa4-e8e24112483d" TYPE="swap"
/dev/sda6: LABEL="pclos2010" UUID="d374aa3e-6da1-436a-ba54-045f0ee5850c" TYPE="ext4"
/dev/sda2: UUID="92DC677ADC67578D" LABEL="RECOVERY" TYPE="ntfs"
/dev/sda3: UUID="28206A162069EAF0" LABEL="OS" TYPE="ntfs"
/dev/sda7: LABEL="minime2010" UUID="ef338c13-e42f-4d9f-832f-eaa86577ab21" TYPE="ext4"
/dev/sdb1: UUID="10991830680120AB" LABEL="usb-primus" TYPE="ntfs"
That will give a better idea of how things look through *nix eyes.
It'll give you something to do that will be non-destructive (but no fun!) in the meantime,
Hugh