Difficulty: Easy
Correct Answer: Defragment the disk that contains the shared folders
Explanation:
Introduction / Context:
On Windows 2000 Server, file servers running for months on FAT32 volumes commonly encounter fragmentation. Even when the number of users, access frequency, and average file sizes remain constant, daily file creates, deletes, and edits fragment files and directories, increasing disk seeks and reducing throughput. This question asks for the best first remedial action that restores performance without redesigning storage or altering client behavior.
Given Data / Assumptions:
Concept / Approach:
File fragmentation spreads a file’s clusters across the disk surface, causing extra head movement. On FAT32, directory structures and free-space maps also become fragmented. The lowest-risk, high-impact step is to defragment the affected volume. Defragmentation consolidates files and free space, reducing seeks and improving read performance. Converting to NTFS can help long-term with better metadata handling and reliability, but conversion is not required to resolve the immediate symptom and introduces change risk. Dynamic disks alter partitioning/management but do not directly improve read performance. Moving the paging file onto the same busy partition can worsen contention.
Step-by-Step Solution:
1) Confirm the slowdown is general file access degradation, not network or memory pressure.2) Measure fragmentation using the built-in Disk Defragmenter analysis.3) Schedule and run defragmentation during low usage windows.4) Re-measure performance and fragmentation; optionally defragment again if necessary.5) Plan periodic defragmentation as preventive maintenance.
Verification / Alternative check:
Post-defrag, average disk queue length and average disk sec/read should decrease. User feedback and server counters will reflect shorter file open times. Compare before/after with Performance Monitor logs to verify improvement.
Why Other Options Are Wrong:
Common Pitfalls:
Blaming the network stack for local disk fragmentation; migrating to NTFS prematurely without backups; defragmenting during peak hours causing additional contention.
Final Answer:
Defragment the disk that contains the shared folders
Discussion & Comments