🖥 Introduction
In the last part, we learned how to copy, move, rename, and delete files. Now, let’s shift gears. Before you manage files or run programs, sometimes you need to know what your system is doing. How much memory is free? What’s the computer’s date and time? Which version of DOS is running?
That’s where system information commands come in. These commands give you insights about your computer’s hardware, memory, and settings. Think of them as the dashboard gauges of your car — they don’t drive the car, but they show you what’s happening under the hood.
🔹 1. VER – Display Version
Purpose: Shows the version of DOS you’re running.
Syntax:
Example:
🔹 2. VOL – Display Disk Volume Label and Serial Number
Purpose: Displays the disk’s label (name) and serial number.
Syntax:
Examples:
Shows volume info for the current drive.
Shows volume info for drive D.
🔹 3. DATE – Display or Change Date
Purpose: Displays the system date and lets you set a new one.
Syntax:
Examples:
Displays current date and asks for a new one. Press Enter to keep the same.
Displays the current date only (no prompt).
🔹 4. TIME – Display or Change Time
Purpose: Displays the system time and lets you set a new one.
Syntax:
Examples:
Displays current time and asks for a new one.
Displays time only (no prompt).
🔹 5. CHKDSK – Check Disk
Purpose: Checks the status of a disk and displays a report on file system errors and disk space.
Syntax:
Options:
-
/F
→ Fixes errors on the disk -
/V
→ Displays all file names during check
Example:
Checks the C drive and fixes errors automatically.
🔹 6. MEM – Display Memory Usage
Purpose: Shows how system memory is being used (conventional, extended, and expanded memory).
Syntax:
Examples:
Displays memory usage summary.
Shows memory details by program.
Displays free memory details.
🔹 7. MODE – Configure System Devices
Purpose: Configures system devices like COM ports, printers, and display settings.
Syntax:
Examples:
Displays current system settings.
Configures COM1 port with baud rate 9600, no parity, 8 data bits, 1 stop bit.
🔹 8. SYSTEMINFO (Windows CMD only)
Purpose: While not a true MS-DOS command, in modern Windows CMD you can use systeminfo
to display full system details like OS version, manufacturer, processor, and memory.
Syntax:
Example:
Displays system details in a detailed list.
(Not available in pure DOS, but useful for learners practicing in CMD today.)
🧰 Bonus Tips
-
Use
VER
first to check your DOS version before testing advanced commands. -
CHKDSK
andMEM
are especially useful for troubleshooting. -
On modern Windows,
systeminfo
is a great extension of the old DOS philosophy.
✅ Conclusion
System information commands are like your computer’s health report. They tell you what version of DOS you’re using, how much memory is free, and whether your disk is healthy. These commands don’t change your system directly, but they give you the knowledge to act smarter.
👉 Coming next: Part 5 – Disk & Storage Commands where we’ll dive into FORMAT
, DISKCOPY
, LABEL
, and more.
No comments:
Post a Comment