I had Win 7 already installed, made a second partition and installed Win XP on it.
After reboot none of the operationg systems booted. Error no operating system found.
Solution:
Booted from the Win 7 DVD->Repair system-> CMD
Code: Select all
bootrec.exe /FixMbr
bootrec.exe /FixBoot
To add XP to the boot menu open CMD as Admin and type the following lines
Code: Select all
C:\Windows\System32\bcdedit /create {ntldr} /d "Your description here"
C:\Windows\System32\bcdedit /set {ntldr} device partition=E:
C:\Windows\System32\bcdedit /set {ntldr} path \ntldr
C:\Windows\System32\bcdedit /displayorder {ntldr} /addlast
Booted from the XP CD -> "R" for Repair
I found the ntldr and boot.ini file on a different partition C: in my case.
I copied the files in DOS to the Partition where the Win XP Folder (here E:) was:
Code: Select all
E:\copy C:\ntldr E:
E:\copy C:\boot.ini E:
So that worked for me.