2010年11月26日

after HDD clone, Windows 2008 0xc000000e error

After restore the Disk image, Windows 2008 couldn't boot and get " 0xc000000e " error.

1. Using SPFDISK tool to check each partition and active flag.
2. A small partition 102MB shows up, and need to hide it.
3. After save the changes in SPFDISK, then using 2008 boot CD to repair.

choose command line prompt.
and input:

bcdedit /v

------------------------------

C:\>bcdedit /v

Windows Boot Manager
--------------------
identifier                  {9dea862c-5cdd-4e70-acc1-f32b344d4795}
device                      unknown
description              Windows Boot Manager
locale                       en-US
inherit                       {7ea2e1ac-2e61-4728-aaa3-896d9d0a9f0e}
default                      {d4142011-74ac-11df-a44d-96c53239329a}
resumeobject          {d4142010-74ac-11df-a44d-96c53239329a}
displayorder            {d4142011-74ac-11df-a44d-96c53239329a}
toolsdisplayorder    {b2721d73-1db4-4c62-bf78-c548a880142d}
timeout                     30

Windows Boot Loader
-------------------
identifier                   {d4142011-74ac-11df-a44d-96c53239329a}
device                      unknown
path                           \Windows\system32\winload.exe
description               Windows Server 2008 R2
locale                        en-US
inherit                        {6efb52bf-1766-41db-a6b3-0ee5eff72bd7}
recoverysequence   {d4142012-74ac-11df-a44d-96c53239329a}
recoveryenabled      Yes
osdevice                   unknown
systemroot                \Windows
resumeobject           {d4142010-74ac-11df-a44d-96c53239329a}


----------------------------------------------------------------------------------------------------------
How to solve it?

Enter these commands below:

bcdedit /set {bootmgr} device partition=C:
bcdedit /set {default} device partition=C:
bcdedit /set {default} osdevice partition=C:


then reboot.