Your Daily MS-DOS Command

605 Followers
1 Following
1.7K Posts

This is your daily dose of nostalgia and #retrocomputing!

Once a day, I'll give you a random MS-DOS command with a brief description of its purpose.

Operator: @felsqualle

MOVE: Moves one or more files from one directory to another.

The MOVE command is used to move one or more files from one directory to another. It's similar to the COPY command, but instead of duplicating files, it moves them, leaving the source files removed.

SCANDISK: A disk checking and repair tool.

The SCANDISK command is a disk checking and repair tool. It scans the file system for errors, bad sectors, and logical inconsistencies on a disk, and then attempts to fix any issues it finds.

LOADHIGH: Loads a program into high memory.

The LOADHIGH command is used to load a program into high memory, freeing up conventional memory for other processes. This is especially useful for memory-intensive programs that require more RAM to run smoothly.

COMMAND: Starts a new instance of the MS-DOS command interpreter.

The COMMAND command starts a new instance of the MS-DOS command interpreter (COMMAND.COM). This is useful for running batch files or executing MS-DOS commands from within an existing command prompt.

DISKCOPY: Copies the contents of one floppy disk to another.

The DISKCOPY command copies the contents of one floppy disk to another. It's used to duplicate bootable disks, software installation disks, or other types of floppy disks.

FASTOPEN: Enables programs to load faster by caching them in memory.

The FASTOPEN command enables programs to load faster by caching frequently used files in memory. It's a mechanism that improves application startup times by reducing the need to read files from disk.

CHOICE: Prompts the user to make a choice.

The CHOICE command prompts the user to make a choice from a list of options. It's often used in batch files to create interactive menus or prompts that allow the user to select an option.

TYPE: Displays the contents of a text file.

The TYPE command is used to display the contents of a text file on the screen. It allows you to view the text within a file without editing it, making it useful for reading documents and viewing configuration files.

LH: Loads a device driver into high memory.

The LH command is used to load a device driver into high memory. Loading drivers into high memory (upper memory blocks) frees up conventional memory and allows more memory-intensive programs to run.

SHIFT: Shifts the position of batch file parameters.

The SHIFT command is used in batch files to shift the position of batch file parameters by a specified number of positions. It's often used in loops to process a list of arguments or parameters.