Various system issues can prevent a system from booting properly and can be fixed through an offline file system check and an integrity check/repair of critical operating system files. To perform this check, it is necessary to access the recovery console from the Windows installation media. I will demonstrate this using the Windows 7 ISO,
First, boot the system from the Windows installation disk,

Then click on "Repair Your Computer"

Select the installation of Windows that you want to mount

Open the command prompt

First, lets use the command line to identify all drives attached to the system and their current mount point in Windows PE. This is done with the diskpart utility and the list volumes subcommand. C:\ is the boot volume (labeled "System Reserved") and D:\ is the system volume (where the operating system and user data are stored)

We will start with a chkdsk, this will verify/repair the filesystem and mark any bad sectors on the disk so that they are not used again.

Next, we will perform a sfc /scannow using the offline settings for the boot directory and windows directory. If you use the incorrect options, two errors are common,
"Windows Resource Protection could not start the Repair service."
"There is a system repair pending which requires reboot to complete. Restart Windows and run sfc again."
The first error indicates an invalid boot or system partition path. The second indicates that incorrect arguments wre given, or there is a file that needs to be removed or renamed in the \Windows\winsxs\pending.xml path. For this installation, this is D:\Windows\winsxs\pending.xml.
For this particular system, this is the correct command to run based on the output of diskpart above
sfc /SCANNOW /OFFBOOTDIR=c:\ /OFFWINDIR=d:\Windows

With any luck the system will boot correctly after this point and repair operations can continue. If the system is still unbootable, it may be necessary to perform an in place upgrade or rescue the files and reformat the system.
See Also,
Windows Blue Screen Crash Dump Analysis
Troubleshooting Memory Errors
How To Detect a Failing Hard Drive
Accessing Safe Mode in Windows
How to Edit the Registry of an Offline Windows System
Any source
No comments:
Post a Comment