Difficulty: Easy
Correct Answer: MSCDEX.EXE
Explanation:
Introduction / Context:
On classic MS-DOS systems, optical drives did not work out of the box. Accessing a CD-ROM required a two-layer driver model: a low-level hardware driver and a high-level redirector that exposed the disc as a DOS drive letter (for example, D:). Knowing which utility performs this role is essential for configuring legacy PCs and understanding boot disks used by technicians and retro-computing enthusiasts.
Given Data / Assumptions:
Concept / Approach:
The standard stack is: load a device-specific CD driver (e.g., OAKCDROM.SYS) in CONFIG.SYS, then load Microsoft CD-ROM Extensions in AUTOEXEC.BAT. The latter, named MSCDEX.EXE, is a redirector that interfaces with the device driver and integrates the CD file system into DOS, assigning a letter and enabling directory/file access. Other executables listed in the options serve unrelated purposes: VLM.EXE is a NetWare client component, CDDEX.EXE is not the Microsoft utility, and DOSKEY.EXE provides command history and macros only.
Step-by-Step Solution:
Verification / Alternative check:
Typical AUTOEXEC.BAT lines include: MSCDEX /D:MSCD001 /L:D which confirms the required component and its parameters (/D device name, /L drive letter).
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
MSCDEX.EXE.
Discussion & Comments