Difficulty: Medium
Correct Answer: Start the computer by using the Recovery Console and modify the Partition parameter in the operating system path in C:\Boot.ini
Explanation:
Introduction / Context:
After resizing or adding partitions with a third-party tool, Windows 2000 may fail to boot with an ntoskrnl.exe error. Frequently, the kernel file is intact; the real problem is that the ARC path in Boot.ini points to the wrong partition, so NTLDR looks in the wrong place for the Windows folder.
Given Data / Assumptions:
Concept / Approach:
Boot.ini uses an ARC path like multi(0)disk(0)rdisk(0)partition(n)\WINNT. Adding a partition can increment the partition index for the Windows volume. Correcting the partition(n) value in Boot.ini restores the loader's ability to find ntoskrnl.exe.
Step-by-Step Solution:
Verification / Alternative check:
From Recovery Console, list directories on candidate partitions (dir c:\, dir d:\winnt, etc.) to confirm where \WINNT resides before editing Boot.ini.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing drive letters with ARC partition numbers; drive letters in Recovery Console may differ from those in Windows. Always confirm the actual Windows directory before editing.
Final Answer:
Start the computer by using the Recovery Console and modify the Partition parameter in the operating system path in C:\Boot.ini
Discussion & Comments