Windows Server 2008 R2 Stuck in Recovery Loop? Here’s the Fix | Lazy Admin Blog

Posted on Updated on

A sudden power failure is the ultimate “stress test” for a server, and sometimes the OS fails that test, landing you in an endless loop of Startup Repair. If F8 > Last Known Good Configuration didn’t save your skin, it’s time to break out the installation media.

The Prerequisites

Before you start, ensure you have your Windows Server 2008 R2 Installation Disc (or a bootable USB) ready.

  1. Boot from the media.
  2. Select your language/input settings and click Next.
  3. Select Repair your computer.
  4. Choose the OS you want to fix and click Next.
  5. Select Command Prompt from the System Recovery Options.

Method 1: The System File Checker (SFC)

If the power cut corrupted a core system file, SFC is your first line of defense. It compares your system files against the “known good” versions on the disc.

  • In the Command Prompt, type: sfc /scannow
  • Wait: This can take a while. If it finds and fixes errors, reboot and see if the loop is broken.

Method 2: Rebuilding the BCD

Sometimes the boot configuration data gets scrambled. This command scans for Windows installations and lets you add them back to the boot list.

  • In the Command Prompt, type: Bootrec /RebuildBcd
  • If it finds a Windows installation, press Y to add it to the boot list.

Method 3: The “Nuclear” Boot Repair

If the Master Boot Record (MBR) or the boot sector itself is toast, you need to rewrite them entirely. This is the heavy-duty fix for when the BIOS simply can’t find where Windows starts.

Run these three commands in order:

  1. Fix the MBR: BOOTREC /FIXMBR
  2. Fix the Boot Sector: BOOTREC /FIXBOOT
  3. Force the Update: D:\boot\Bootsect.exe /NT60 All (Note: Replace D: with the actual drive letter of your installation disc).

5 thoughts on “Windows Server 2008 R2 Stuck in Recovery Loop? Here’s the Fix | Lazy Admin Blog

    asil said:
    November 9, 2015 at 4:32 PM

    i have inserted the disc but it does not give me any option for booting from the disc rather directlty again starts on recovery mode. please help

      Ashish Kumar Singh responded:
      November 10, 2015 at 7:20 AM

      Hi Asil,

      Please go to the BIOS and set the Boot from CD/DVD as the 1st boot option.

        Asil said:
        November 10, 2015 at 8:46 AM

        I have already done in the bios and all de 3 above steps and restarted several times and it gives me the same window of recovery mode and options

    Ashish Kumar Singh responded:
    November 10, 2015 at 3:51 PM

    Then I advice you to try with a different DVD or different ISO image, looks like the media is not a bootable one.

      asil said:
      November 11, 2015 at 10:13 PM

      I have tried all the 3 methods and still I get the same recovery mode

Leave a Reply to Ashish Kumar SinghCancel reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.