Config ?
Enter F1 at the command prompt.
Write short note for Ms-DOS operating system?
MS-DOS (short for MicroSoft Disk Operating System) is an operating system for x86-based personal computers, which was purchased by Microsoft. It was the most commonly used member of the DOS family of operating systems, and was the main operating system for personal computers during the 1980s up to mid 1990s. It was preceded by M-DOS (also called MIDAS), designed and copyrighted by Microsoft in 1979. MSDOS was written for the Intel 8086 family of microprocessors, particularly the IBM PC and compatibles. It was gradually replaced on consumer desktop computers by operating systems offering a graphical user interface (GUI), in particular by various generations of the Microsoft Windows operating system. MS-DOS developed out of QDOS (Quick and Dirty Operating System), also known as 86-DOS.
MS-DOS development originally started in 1981, and was first released in 1982 as MS-DOS 1.0. Several versions were released under different names for different hardware. MS-DOS had eight major versions released before Microsoft stopped development in 2000. It was the key product in Microsoft's growth from a programming languages company to a diverse software development firm, providing the company with essential revenue and marketing resources. It was also the underlying basic operating system on which early versions of Windows ran as a GUI.
What three keys can you press to perform a soft boot when using DOS?
I'm not sure if its a soft boot but Ctrl+Alt+Del will reboot the machine when using DOS. It probably is a soft boot.
What is the dos command to check registry?
Click Start -> Hit All Programs -> Accessories -> Select Command Prompt. Type CD\ and press enter. Then type the following. C:\>start regedit press enter. Cheer up...Hope this will help. Smarty.....
Why are hidden files on a DOS disk?
Hidden files are files stored on the disk, but which do not show up when you list a directory of the disk.
In DOS, you normally type the command DIR to view the files on a disk. If you would like to see hidden file names, use the command DIR /AH (A=Attribute; H=Hidden).
What is the file extension for MS-DOS?
There is no specific file extension for MS-DOS. Files can have any 3 character extension in MS-DOS.
Depending on the school it can be student run, taught by a sponsor, or a director.
No Dos is still used in many things today. Many programs are Windows Only due to them using Dos Files.
Have you ever seen the movie, The Matrix? Well the oracle in ms dos is no different.
What is use of echo command in dos?
The echo command is used to print a statement by default to the screen.
example:
echo Good Morning
output:
Good Morning
note: quotes are not used and will be displayed in the output if used
other examples:
echo off/on - turns echo on or off, otherwise commands are visible
on the screen. Useful for bat files.
@echo off - the @ hides the line it precedes so use this for the first line.
echo. - displays a blank line
echo text > myfile.txt - writes to target location (myfile.txt), overwiting it if it exists.
echo text >> myfile.txt - appends to the target (myfile.txt)
How would you send the contents of a file to your printer using the type command?
It wouldn't be formatted for your particular printer or page size, but you can pipe the output to PRN:
TYPE FILENAME.TXT > PRN
Which WildCard character represents one or more file names?
A: an ****** or a ?????? Is usually accepted
What is the command to navigate to a directory?
The command is CD (Change Directory).* You use it like this:
cd C:\Whatever\WhateverElse
Unlike many other commands, you don't have to put quotes around the directory path:
cd C:\Whatever\Whatever Else
is identical to
cd "C:\Whatever\Whatever Else
Also, you don't have to use the full path. If you don't specify the full path, the command works relative to the current directory. Here's an example:
If you're in C:\Users\John, then you can use either of these commands to
get to the desktop:
cd C:\Users\John\Desktop
cd Desktop
Finally, CD is not case sensitive, so
cd Desktop
is the same as
cd desktop
*You can also use CHDIR; they're identical.
In windows you can access DOS mode by clicking "run" in the start menu and typing "command" into the blank.
DOS mode can also be accessed via the boot menu (accessed by pressing F8 during startup) and choosing command-line.