Windows 7 64-bit System Repair Loop
up vote
2
down vote
favorite
My system is stuck on System Repair Loop. The Windows System Repair fails to repair with error "Missing OSLoader"
I tried to fix with a solution suggested in a Windows forum: Automated Startup Repair fails. Cannot find OS Loader, but the command
bootrec /rebuildbcd
returns
Total identified windows installations:0
Any ideas how to fix the bootloader?
windows-7 windows boot
add a comment |
up vote
2
down vote
favorite
My system is stuck on System Repair Loop. The Windows System Repair fails to repair with error "Missing OSLoader"
I tried to fix with a solution suggested in a Windows forum: Automated Startup Repair fails. Cannot find OS Loader, but the command
bootrec /rebuildbcd
returns
Total identified windows installations:0
Any ideas how to fix the bootloader?
windows-7 windows boot
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
My system is stuck on System Repair Loop. The Windows System Repair fails to repair with error "Missing OSLoader"
I tried to fix with a solution suggested in a Windows forum: Automated Startup Repair fails. Cannot find OS Loader, but the command
bootrec /rebuildbcd
returns
Total identified windows installations:0
Any ideas how to fix the bootloader?
windows-7 windows boot
My system is stuck on System Repair Loop. The Windows System Repair fails to repair with error "Missing OSLoader"
I tried to fix with a solution suggested in a Windows forum: Automated Startup Repair fails. Cannot find OS Loader, but the command
bootrec /rebuildbcd
returns
Total identified windows installations:0
Any ideas how to fix the bootloader?
windows-7 windows boot
windows-7 windows boot
edited May 4 '15 at 22:46
Thomas Dickey
5,96321125
5,96321125
asked May 4 '15 at 20:29
iamIcarus
11116
11116
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
0
down vote
This is what worked for me: Perform bootrec.exe /fixmbr
bootrec.exe /fixboot
and bootrec.exe /rebuildbcd
in that order from a windows 7 DVD or USB. Is a guide to help you make a USB windows 7 iso. http://www.techverse.net/how-to-create-a-bootable-usb-pen-drive-for-windows-7/
hey , unfortunately i already tried this with the last command to be bootrec /rebuildbcd but its not fixing the bootloader and i get "Total identified windows installations:0" on bootrec /rebuildbcd
– iamIcarus
May 5 '15 at 6:47
You did this from a dvd or usb with windows on it and not the recovery partition?
– hyperj123
May 5 '15 at 7:00
I did this from the Windows 7 DVD with the Windows HDD on. I originally have dual boot with Linux on another HDD (primary boot-loader was Windows) but i removed the other HDD After the recovery loop issue. So right now the PC only contains the windows HDD
– iamIcarus
May 5 '15 at 7:10
Is your HDD connected via USB? If so can you confirm that it is not being connected to a SS port (USB 3.0)?
– hyperj123
May 5 '15 at 7:27
HDD is connected on SATA port. Its my primary OS Hard Disk Drive. I can browse and see all data of the disk fine using a Linux Live CD
– iamIcarus
May 5 '15 at 7:29
add a comment |
up vote
0
down vote
I found these instructions on the Microsoft forum, which were posted by Vijay B. I've formatted them in a way that makes more sense to me. Since you've already partially completed these steps, you'll want to start at step 5.
First Start System Recovery Options. To start system recovery options.
a) Boot from the disk, Once you get the welcome screen of installation with the option “Install now”
- Click on Repair your computer
- On the next page click on Advanced Options
- Now click on Troubleshoot
- Lastly click on Command prompt and follow the on screen instructions
At the prompt, type the bootrec command as shown below and then press Enter:
bootrec /rebuildbcd
The bootrec command will search for Windows installations not included in the Boot Configuration Data and then ask you if you'd like to add one or more to it.
If you see the following message, proceed to step 10.
Scanning all disks for Windows installations.
Please wait, since this may take a while...
Successfully scanned Windows installations.
Total identified Windows installations: 1
[1] D:Windows
Add installation to boot list? Yes<Y>/No<N>/All<A>:
If you see the following message, proceed.
Scanning all disks for Windows installations.
Please wait, since thismay take a while...
Successfully scanned Windows installations.
Total identified Windows installations: 0
The operation completed successfully.
Since the BCD store exists but does not list a Windows installation, you'll first have to remove it manually and then try to rebuild it again.
At the prompt, execute the bcdedit command as shown and then press Enter:
bcdedit /export c:bcdbackup
The bcdedit command is used here to export the BCD store as a file: bcdbackup. There's no need to specify a file extension.
The command should return the following on screen:
The operation completed successfully.
Meaning the BCD export worked as expected.
- At this point, you need to adjust several file attributes for the BCD store so you can manipulate it.
At the prompt, execute the attrib command exactly like this:
attrib c:bootbcd -h -r -s
This removes the hidden, read-only, and system attributes from the bcd file. Those attributes will restrict the actions you can take on the file. Now that they're gone, you can rename it.
To rename the BCD store, execute the ren command as shown:
ren c:bootbcd bcd.old
Now that the BCD store is renamed, you should now be able to successfully rebuild it, as you tried to do in Step 2.
Note: You could delete the BCD file entirely since you're about to
create a new one. However, renaming the existing BCD accomplishes the
same thing since it's now unavailable to Windows, plus provides you
yet another layer of backup, in addition to the export you did in Step
5, if you decide to undo your actions.
Try rebuilding the BCD again by executing the following, followed by the
Enter
key:
bootrec /rebuildbcd
which should produce this in the Command Prompt window:
Scanning all disks for Windows installations.
Please wait, since this may take a while...
Successfully scanned Windows installations.
Total identified Windows installations: 1
[1] D:Windows
Add installation to boot list? Yes<Y>/No<N>/All<A>:
meaning that the BCD store rebuild is progressing as expected.
- At the
Add installation to boot list?
question, typeY
orYes
, followed by theEnter
key.
You should see:
The operation completed successfully.
meaning that the BCD rebuild is complete.
- Restart your computer.
Important: Depending on how you started System Recovery Options, you may need to remove a disc or flash drive before restarting.
Thanks , i tried that one too and i still get "Total identified Windows installations: 0" on step 8
– iamIcarus
May 5 '15 at 7:37
Ok, maybe try some of the other suggestions in that forum thread.
– EternalHour
May 5 '15 at 8:25
the situation doesn't look very good , does it? :)
– iamIcarus
May 5 '15 at 9:08
Rather than waste anymore time on it, you may be better off just copying the data you need and reinstalling.
– EternalHour
May 5 '15 at 9:16
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
This is what worked for me: Perform bootrec.exe /fixmbr
bootrec.exe /fixboot
and bootrec.exe /rebuildbcd
in that order from a windows 7 DVD or USB. Is a guide to help you make a USB windows 7 iso. http://www.techverse.net/how-to-create-a-bootable-usb-pen-drive-for-windows-7/
hey , unfortunately i already tried this with the last command to be bootrec /rebuildbcd but its not fixing the bootloader and i get "Total identified windows installations:0" on bootrec /rebuildbcd
– iamIcarus
May 5 '15 at 6:47
You did this from a dvd or usb with windows on it and not the recovery partition?
– hyperj123
May 5 '15 at 7:00
I did this from the Windows 7 DVD with the Windows HDD on. I originally have dual boot with Linux on another HDD (primary boot-loader was Windows) but i removed the other HDD After the recovery loop issue. So right now the PC only contains the windows HDD
– iamIcarus
May 5 '15 at 7:10
Is your HDD connected via USB? If so can you confirm that it is not being connected to a SS port (USB 3.0)?
– hyperj123
May 5 '15 at 7:27
HDD is connected on SATA port. Its my primary OS Hard Disk Drive. I can browse and see all data of the disk fine using a Linux Live CD
– iamIcarus
May 5 '15 at 7:29
add a comment |
up vote
0
down vote
This is what worked for me: Perform bootrec.exe /fixmbr
bootrec.exe /fixboot
and bootrec.exe /rebuildbcd
in that order from a windows 7 DVD or USB. Is a guide to help you make a USB windows 7 iso. http://www.techverse.net/how-to-create-a-bootable-usb-pen-drive-for-windows-7/
hey , unfortunately i already tried this with the last command to be bootrec /rebuildbcd but its not fixing the bootloader and i get "Total identified windows installations:0" on bootrec /rebuildbcd
– iamIcarus
May 5 '15 at 6:47
You did this from a dvd or usb with windows on it and not the recovery partition?
– hyperj123
May 5 '15 at 7:00
I did this from the Windows 7 DVD with the Windows HDD on. I originally have dual boot with Linux on another HDD (primary boot-loader was Windows) but i removed the other HDD After the recovery loop issue. So right now the PC only contains the windows HDD
– iamIcarus
May 5 '15 at 7:10
Is your HDD connected via USB? If so can you confirm that it is not being connected to a SS port (USB 3.0)?
– hyperj123
May 5 '15 at 7:27
HDD is connected on SATA port. Its my primary OS Hard Disk Drive. I can browse and see all data of the disk fine using a Linux Live CD
– iamIcarus
May 5 '15 at 7:29
add a comment |
up vote
0
down vote
up vote
0
down vote
This is what worked for me: Perform bootrec.exe /fixmbr
bootrec.exe /fixboot
and bootrec.exe /rebuildbcd
in that order from a windows 7 DVD or USB. Is a guide to help you make a USB windows 7 iso. http://www.techverse.net/how-to-create-a-bootable-usb-pen-drive-for-windows-7/
This is what worked for me: Perform bootrec.exe /fixmbr
bootrec.exe /fixboot
and bootrec.exe /rebuildbcd
in that order from a windows 7 DVD or USB. Is a guide to help you make a USB windows 7 iso. http://www.techverse.net/how-to-create-a-bootable-usb-pen-drive-for-windows-7/
answered May 5 '15 at 6:21
hyperj123
667
667
hey , unfortunately i already tried this with the last command to be bootrec /rebuildbcd but its not fixing the bootloader and i get "Total identified windows installations:0" on bootrec /rebuildbcd
– iamIcarus
May 5 '15 at 6:47
You did this from a dvd or usb with windows on it and not the recovery partition?
– hyperj123
May 5 '15 at 7:00
I did this from the Windows 7 DVD with the Windows HDD on. I originally have dual boot with Linux on another HDD (primary boot-loader was Windows) but i removed the other HDD After the recovery loop issue. So right now the PC only contains the windows HDD
– iamIcarus
May 5 '15 at 7:10
Is your HDD connected via USB? If so can you confirm that it is not being connected to a SS port (USB 3.0)?
– hyperj123
May 5 '15 at 7:27
HDD is connected on SATA port. Its my primary OS Hard Disk Drive. I can browse and see all data of the disk fine using a Linux Live CD
– iamIcarus
May 5 '15 at 7:29
add a comment |
hey , unfortunately i already tried this with the last command to be bootrec /rebuildbcd but its not fixing the bootloader and i get "Total identified windows installations:0" on bootrec /rebuildbcd
– iamIcarus
May 5 '15 at 6:47
You did this from a dvd or usb with windows on it and not the recovery partition?
– hyperj123
May 5 '15 at 7:00
I did this from the Windows 7 DVD with the Windows HDD on. I originally have dual boot with Linux on another HDD (primary boot-loader was Windows) but i removed the other HDD After the recovery loop issue. So right now the PC only contains the windows HDD
– iamIcarus
May 5 '15 at 7:10
Is your HDD connected via USB? If so can you confirm that it is not being connected to a SS port (USB 3.0)?
– hyperj123
May 5 '15 at 7:27
HDD is connected on SATA port. Its my primary OS Hard Disk Drive. I can browse and see all data of the disk fine using a Linux Live CD
– iamIcarus
May 5 '15 at 7:29
hey , unfortunately i already tried this with the last command to be bootrec /rebuildbcd but its not fixing the bootloader and i get "Total identified windows installations:0" on bootrec /rebuildbcd
– iamIcarus
May 5 '15 at 6:47
hey , unfortunately i already tried this with the last command to be bootrec /rebuildbcd but its not fixing the bootloader and i get "Total identified windows installations:0" on bootrec /rebuildbcd
– iamIcarus
May 5 '15 at 6:47
You did this from a dvd or usb with windows on it and not the recovery partition?
– hyperj123
May 5 '15 at 7:00
You did this from a dvd or usb with windows on it and not the recovery partition?
– hyperj123
May 5 '15 at 7:00
I did this from the Windows 7 DVD with the Windows HDD on. I originally have dual boot with Linux on another HDD (primary boot-loader was Windows) but i removed the other HDD After the recovery loop issue. So right now the PC only contains the windows HDD
– iamIcarus
May 5 '15 at 7:10
I did this from the Windows 7 DVD with the Windows HDD on. I originally have dual boot with Linux on another HDD (primary boot-loader was Windows) but i removed the other HDD After the recovery loop issue. So right now the PC only contains the windows HDD
– iamIcarus
May 5 '15 at 7:10
Is your HDD connected via USB? If so can you confirm that it is not being connected to a SS port (USB 3.0)?
– hyperj123
May 5 '15 at 7:27
Is your HDD connected via USB? If so can you confirm that it is not being connected to a SS port (USB 3.0)?
– hyperj123
May 5 '15 at 7:27
HDD is connected on SATA port. Its my primary OS Hard Disk Drive. I can browse and see all data of the disk fine using a Linux Live CD
– iamIcarus
May 5 '15 at 7:29
HDD is connected on SATA port. Its my primary OS Hard Disk Drive. I can browse and see all data of the disk fine using a Linux Live CD
– iamIcarus
May 5 '15 at 7:29
add a comment |
up vote
0
down vote
I found these instructions on the Microsoft forum, which were posted by Vijay B. I've formatted them in a way that makes more sense to me. Since you've already partially completed these steps, you'll want to start at step 5.
First Start System Recovery Options. To start system recovery options.
a) Boot from the disk, Once you get the welcome screen of installation with the option “Install now”
- Click on Repair your computer
- On the next page click on Advanced Options
- Now click on Troubleshoot
- Lastly click on Command prompt and follow the on screen instructions
At the prompt, type the bootrec command as shown below and then press Enter:
bootrec /rebuildbcd
The bootrec command will search for Windows installations not included in the Boot Configuration Data and then ask you if you'd like to add one or more to it.
If you see the following message, proceed to step 10.
Scanning all disks for Windows installations.
Please wait, since this may take a while...
Successfully scanned Windows installations.
Total identified Windows installations: 1
[1] D:Windows
Add installation to boot list? Yes<Y>/No<N>/All<A>:
If you see the following message, proceed.
Scanning all disks for Windows installations.
Please wait, since thismay take a while...
Successfully scanned Windows installations.
Total identified Windows installations: 0
The operation completed successfully.
Since the BCD store exists but does not list a Windows installation, you'll first have to remove it manually and then try to rebuild it again.
At the prompt, execute the bcdedit command as shown and then press Enter:
bcdedit /export c:bcdbackup
The bcdedit command is used here to export the BCD store as a file: bcdbackup. There's no need to specify a file extension.
The command should return the following on screen:
The operation completed successfully.
Meaning the BCD export worked as expected.
- At this point, you need to adjust several file attributes for the BCD store so you can manipulate it.
At the prompt, execute the attrib command exactly like this:
attrib c:bootbcd -h -r -s
This removes the hidden, read-only, and system attributes from the bcd file. Those attributes will restrict the actions you can take on the file. Now that they're gone, you can rename it.
To rename the BCD store, execute the ren command as shown:
ren c:bootbcd bcd.old
Now that the BCD store is renamed, you should now be able to successfully rebuild it, as you tried to do in Step 2.
Note: You could delete the BCD file entirely since you're about to
create a new one. However, renaming the existing BCD accomplishes the
same thing since it's now unavailable to Windows, plus provides you
yet another layer of backup, in addition to the export you did in Step
5, if you decide to undo your actions.
Try rebuilding the BCD again by executing the following, followed by the
Enter
key:
bootrec /rebuildbcd
which should produce this in the Command Prompt window:
Scanning all disks for Windows installations.
Please wait, since this may take a while...
Successfully scanned Windows installations.
Total identified Windows installations: 1
[1] D:Windows
Add installation to boot list? Yes<Y>/No<N>/All<A>:
meaning that the BCD store rebuild is progressing as expected.
- At the
Add installation to boot list?
question, typeY
orYes
, followed by theEnter
key.
You should see:
The operation completed successfully.
meaning that the BCD rebuild is complete.
- Restart your computer.
Important: Depending on how you started System Recovery Options, you may need to remove a disc or flash drive before restarting.
Thanks , i tried that one too and i still get "Total identified Windows installations: 0" on step 8
– iamIcarus
May 5 '15 at 7:37
Ok, maybe try some of the other suggestions in that forum thread.
– EternalHour
May 5 '15 at 8:25
the situation doesn't look very good , does it? :)
– iamIcarus
May 5 '15 at 9:08
Rather than waste anymore time on it, you may be better off just copying the data you need and reinstalling.
– EternalHour
May 5 '15 at 9:16
add a comment |
up vote
0
down vote
I found these instructions on the Microsoft forum, which were posted by Vijay B. I've formatted them in a way that makes more sense to me. Since you've already partially completed these steps, you'll want to start at step 5.
First Start System Recovery Options. To start system recovery options.
a) Boot from the disk, Once you get the welcome screen of installation with the option “Install now”
- Click on Repair your computer
- On the next page click on Advanced Options
- Now click on Troubleshoot
- Lastly click on Command prompt and follow the on screen instructions
At the prompt, type the bootrec command as shown below and then press Enter:
bootrec /rebuildbcd
The bootrec command will search for Windows installations not included in the Boot Configuration Data and then ask you if you'd like to add one or more to it.
If you see the following message, proceed to step 10.
Scanning all disks for Windows installations.
Please wait, since this may take a while...
Successfully scanned Windows installations.
Total identified Windows installations: 1
[1] D:Windows
Add installation to boot list? Yes<Y>/No<N>/All<A>:
If you see the following message, proceed.
Scanning all disks for Windows installations.
Please wait, since thismay take a while...
Successfully scanned Windows installations.
Total identified Windows installations: 0
The operation completed successfully.
Since the BCD store exists but does not list a Windows installation, you'll first have to remove it manually and then try to rebuild it again.
At the prompt, execute the bcdedit command as shown and then press Enter:
bcdedit /export c:bcdbackup
The bcdedit command is used here to export the BCD store as a file: bcdbackup. There's no need to specify a file extension.
The command should return the following on screen:
The operation completed successfully.
Meaning the BCD export worked as expected.
- At this point, you need to adjust several file attributes for the BCD store so you can manipulate it.
At the prompt, execute the attrib command exactly like this:
attrib c:bootbcd -h -r -s
This removes the hidden, read-only, and system attributes from the bcd file. Those attributes will restrict the actions you can take on the file. Now that they're gone, you can rename it.
To rename the BCD store, execute the ren command as shown:
ren c:bootbcd bcd.old
Now that the BCD store is renamed, you should now be able to successfully rebuild it, as you tried to do in Step 2.
Note: You could delete the BCD file entirely since you're about to
create a new one. However, renaming the existing BCD accomplishes the
same thing since it's now unavailable to Windows, plus provides you
yet another layer of backup, in addition to the export you did in Step
5, if you decide to undo your actions.
Try rebuilding the BCD again by executing the following, followed by the
Enter
key:
bootrec /rebuildbcd
which should produce this in the Command Prompt window:
Scanning all disks for Windows installations.
Please wait, since this may take a while...
Successfully scanned Windows installations.
Total identified Windows installations: 1
[1] D:Windows
Add installation to boot list? Yes<Y>/No<N>/All<A>:
meaning that the BCD store rebuild is progressing as expected.
- At the
Add installation to boot list?
question, typeY
orYes
, followed by theEnter
key.
You should see:
The operation completed successfully.
meaning that the BCD rebuild is complete.
- Restart your computer.
Important: Depending on how you started System Recovery Options, you may need to remove a disc or flash drive before restarting.
Thanks , i tried that one too and i still get "Total identified Windows installations: 0" on step 8
– iamIcarus
May 5 '15 at 7:37
Ok, maybe try some of the other suggestions in that forum thread.
– EternalHour
May 5 '15 at 8:25
the situation doesn't look very good , does it? :)
– iamIcarus
May 5 '15 at 9:08
Rather than waste anymore time on it, you may be better off just copying the data you need and reinstalling.
– EternalHour
May 5 '15 at 9:16
add a comment |
up vote
0
down vote
up vote
0
down vote
I found these instructions on the Microsoft forum, which were posted by Vijay B. I've formatted them in a way that makes more sense to me. Since you've already partially completed these steps, you'll want to start at step 5.
First Start System Recovery Options. To start system recovery options.
a) Boot from the disk, Once you get the welcome screen of installation with the option “Install now”
- Click on Repair your computer
- On the next page click on Advanced Options
- Now click on Troubleshoot
- Lastly click on Command prompt and follow the on screen instructions
At the prompt, type the bootrec command as shown below and then press Enter:
bootrec /rebuildbcd
The bootrec command will search for Windows installations not included in the Boot Configuration Data and then ask you if you'd like to add one or more to it.
If you see the following message, proceed to step 10.
Scanning all disks for Windows installations.
Please wait, since this may take a while...
Successfully scanned Windows installations.
Total identified Windows installations: 1
[1] D:Windows
Add installation to boot list? Yes<Y>/No<N>/All<A>:
If you see the following message, proceed.
Scanning all disks for Windows installations.
Please wait, since thismay take a while...
Successfully scanned Windows installations.
Total identified Windows installations: 0
The operation completed successfully.
Since the BCD store exists but does not list a Windows installation, you'll first have to remove it manually and then try to rebuild it again.
At the prompt, execute the bcdedit command as shown and then press Enter:
bcdedit /export c:bcdbackup
The bcdedit command is used here to export the BCD store as a file: bcdbackup. There's no need to specify a file extension.
The command should return the following on screen:
The operation completed successfully.
Meaning the BCD export worked as expected.
- At this point, you need to adjust several file attributes for the BCD store so you can manipulate it.
At the prompt, execute the attrib command exactly like this:
attrib c:bootbcd -h -r -s
This removes the hidden, read-only, and system attributes from the bcd file. Those attributes will restrict the actions you can take on the file. Now that they're gone, you can rename it.
To rename the BCD store, execute the ren command as shown:
ren c:bootbcd bcd.old
Now that the BCD store is renamed, you should now be able to successfully rebuild it, as you tried to do in Step 2.
Note: You could delete the BCD file entirely since you're about to
create a new one. However, renaming the existing BCD accomplishes the
same thing since it's now unavailable to Windows, plus provides you
yet another layer of backup, in addition to the export you did in Step
5, if you decide to undo your actions.
Try rebuilding the BCD again by executing the following, followed by the
Enter
key:
bootrec /rebuildbcd
which should produce this in the Command Prompt window:
Scanning all disks for Windows installations.
Please wait, since this may take a while...
Successfully scanned Windows installations.
Total identified Windows installations: 1
[1] D:Windows
Add installation to boot list? Yes<Y>/No<N>/All<A>:
meaning that the BCD store rebuild is progressing as expected.
- At the
Add installation to boot list?
question, typeY
orYes
, followed by theEnter
key.
You should see:
The operation completed successfully.
meaning that the BCD rebuild is complete.
- Restart your computer.
Important: Depending on how you started System Recovery Options, you may need to remove a disc or flash drive before restarting.
I found these instructions on the Microsoft forum, which were posted by Vijay B. I've formatted them in a way that makes more sense to me. Since you've already partially completed these steps, you'll want to start at step 5.
First Start System Recovery Options. To start system recovery options.
a) Boot from the disk, Once you get the welcome screen of installation with the option “Install now”
- Click on Repair your computer
- On the next page click on Advanced Options
- Now click on Troubleshoot
- Lastly click on Command prompt and follow the on screen instructions
At the prompt, type the bootrec command as shown below and then press Enter:
bootrec /rebuildbcd
The bootrec command will search for Windows installations not included in the Boot Configuration Data and then ask you if you'd like to add one or more to it.
If you see the following message, proceed to step 10.
Scanning all disks for Windows installations.
Please wait, since this may take a while...
Successfully scanned Windows installations.
Total identified Windows installations: 1
[1] D:Windows
Add installation to boot list? Yes<Y>/No<N>/All<A>:
If you see the following message, proceed.
Scanning all disks for Windows installations.
Please wait, since thismay take a while...
Successfully scanned Windows installations.
Total identified Windows installations: 0
The operation completed successfully.
Since the BCD store exists but does not list a Windows installation, you'll first have to remove it manually and then try to rebuild it again.
At the prompt, execute the bcdedit command as shown and then press Enter:
bcdedit /export c:bcdbackup
The bcdedit command is used here to export the BCD store as a file: bcdbackup. There's no need to specify a file extension.
The command should return the following on screen:
The operation completed successfully.
Meaning the BCD export worked as expected.
- At this point, you need to adjust several file attributes for the BCD store so you can manipulate it.
At the prompt, execute the attrib command exactly like this:
attrib c:bootbcd -h -r -s
This removes the hidden, read-only, and system attributes from the bcd file. Those attributes will restrict the actions you can take on the file. Now that they're gone, you can rename it.
To rename the BCD store, execute the ren command as shown:
ren c:bootbcd bcd.old
Now that the BCD store is renamed, you should now be able to successfully rebuild it, as you tried to do in Step 2.
Note: You could delete the BCD file entirely since you're about to
create a new one. However, renaming the existing BCD accomplishes the
same thing since it's now unavailable to Windows, plus provides you
yet another layer of backup, in addition to the export you did in Step
5, if you decide to undo your actions.
Try rebuilding the BCD again by executing the following, followed by the
Enter
key:
bootrec /rebuildbcd
which should produce this in the Command Prompt window:
Scanning all disks for Windows installations.
Please wait, since this may take a while...
Successfully scanned Windows installations.
Total identified Windows installations: 1
[1] D:Windows
Add installation to boot list? Yes<Y>/No<N>/All<A>:
meaning that the BCD store rebuild is progressing as expected.
- At the
Add installation to boot list?
question, typeY
orYes
, followed by theEnter
key.
You should see:
The operation completed successfully.
meaning that the BCD rebuild is complete.
- Restart your computer.
Important: Depending on how you started System Recovery Options, you may need to remove a disc or flash drive before restarting.
answered May 5 '15 at 7:32
EternalHour
370110
370110
Thanks , i tried that one too and i still get "Total identified Windows installations: 0" on step 8
– iamIcarus
May 5 '15 at 7:37
Ok, maybe try some of the other suggestions in that forum thread.
– EternalHour
May 5 '15 at 8:25
the situation doesn't look very good , does it? :)
– iamIcarus
May 5 '15 at 9:08
Rather than waste anymore time on it, you may be better off just copying the data you need and reinstalling.
– EternalHour
May 5 '15 at 9:16
add a comment |
Thanks , i tried that one too and i still get "Total identified Windows installations: 0" on step 8
– iamIcarus
May 5 '15 at 7:37
Ok, maybe try some of the other suggestions in that forum thread.
– EternalHour
May 5 '15 at 8:25
the situation doesn't look very good , does it? :)
– iamIcarus
May 5 '15 at 9:08
Rather than waste anymore time on it, you may be better off just copying the data you need and reinstalling.
– EternalHour
May 5 '15 at 9:16
Thanks , i tried that one too and i still get "Total identified Windows installations: 0" on step 8
– iamIcarus
May 5 '15 at 7:37
Thanks , i tried that one too and i still get "Total identified Windows installations: 0" on step 8
– iamIcarus
May 5 '15 at 7:37
Ok, maybe try some of the other suggestions in that forum thread.
– EternalHour
May 5 '15 at 8:25
Ok, maybe try some of the other suggestions in that forum thread.
– EternalHour
May 5 '15 at 8:25
the situation doesn't look very good , does it? :)
– iamIcarus
May 5 '15 at 9:08
the situation doesn't look very good , does it? :)
– iamIcarus
May 5 '15 at 9:08
Rather than waste anymore time on it, you may be better off just copying the data you need and reinstalling.
– EternalHour
May 5 '15 at 9:16
Rather than waste anymore time on it, you may be better off just copying the data you need and reinstalling.
– EternalHour
May 5 '15 at 9:16
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f909738%2fwindows-7-64-bit-system-repair-loop%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown