yes reconfigure or simply replace the mbr.. and also yes perhaps edit the menu.lst to disable the security.
after running grub in the boot cd, the command seems to be just something like this:
Code:
root (hd0,X)
find /boot/grub/stage1_5
setup (hd0)
where X is the partition number of your boot partition.
That's what I do most of the time when some OS replaces my boot records.
Here btw I don't know the purpose of 'find /boot/grub/stage1_5'.
It seems to be of no use.. perhaps just to put the file locations in the buffer for use with the setup command.. although obviously it's to show the user where the files are.. showing what to add as a parameter to another command but setup doesn't seem to need any parameter either.
hmmmmm.. maybe the sequence of the command is:
Code:
root (hd0)
find /boot/grub/stage1_5
# now you know where the boot files are
root (hd0,X)
setup (hd0)
perhaps we'll need a grub expert for this
btw i use these command sequence instead of grub-install because sometimes grub-install doesn't work the way it should.