Difficulty: Medium
Correct Answer: /T
Explanation:
Introduction / Context:
MS-DOS and later Windows command interpreters share many switches, but some options were introduced after DOS 6.x. Identifying which switch belongs to later command processors (like Windows 95/98 or NT) prevents confusion when writing portable batch files for pure DOS environments.
Given Data / Assumptions:
Concept / Approach:
In MS-DOS 6.x: /P paginates one screen at a time; /W provides wide columns; /S recurses subdirectories. The /T switch, which selects which time field to display (creation, last access, last write), is a later addition primarily seen in Windows 95/98 DOS sessions and Windows NT/2000's CMD. Therefore, /T is the option not supported in classic DOS 6.x DIR.
Step-by-Step Solution:
Verification / Alternative check:
On a DOS 6.22 system, DIR /? will list supported switches and omit /T, while Windows 9x/NT command prompts document /T with sub-options (C, A, W).
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
/T.
Discussion & Comments