Download ArticleDownload Article

Have you ever wondered what computers were like in the old days? Do you have an old computer that runs on MS-DOS? Perhaps you are having trouble using the Windows Command Prompt? MS-DOS was a command-based operating system from Microsoft prior to Windows. Even though most PCs now run Windows without DOS, you can still use DOS commands in the Windows Command Prompt to interact with your PC's operating system. This How.com.vn article teaches you how to use MS-DOS or the Windows Command Prompt.

Things You Should Know

  • DOS is an old operating system that was used by PCs before Windows.
  • DOS is a text-based operating system that does not have a graphical interface.
  • The Windows Command Prompt still uses DOS commands, but it is not DOS
  1. How.com.vn English: Step 1 Open the Command Prompt (Windows only).
    If you're on a computer with DOS as the operating system, the command prompt should appear automatically when you boot up the computer. If you're using a Windows computer, you'll need to start the Windows Command Prompt. To do so, click the Windows Start button and type cmd. Then click Command Prompt.
    • You should see a window with "C:\>", "C:\DOCUMENTS AND SETTINGS\[your name]>", or something similar. This is called the "command prompt."
      • The letter at the beginning of the command prompt (i.e. "C:\") tells you what drive letter you are in.
      • The text after the drive letter tells you what directory or folder you are in.
    • For access to more commands, hidden files, the ability to add and delete users, change user passwords, and more administrative abilities, you'll need to run the Command Prompt as an administrator.
    • If you are having technical issues with Windows, you can boot your computer into the Command Prompt. This allows you to run your computer just using a command line, which is more efficient than the Windows graphical user interface. You can run programs more quickly and efficiently, as well as delete programs infected with viruses and malware.
  2. How.com.vn English: Step 2 List the contents of a directory or folder.
    To do so, type dir and press Enter. This lists the contents of the directory or folder you are in. The most important thing you should be able to do is to list the contents of directories and navigate them.
    • Files are listed by file size, followed by the file name (i.e, "countdown.txt"). Directories and folders will have the tag "<DIR>" in front of them followed by the directory name.
    • Type dir followed by the name or path to a directory and press Enter to view the contents of that directory instead of the current directory you are in. For example, type dir c:\documents and press Enter to view the contents of your Documents directory from within any directory.
    • If the list of contents in a directory is particularly long, add /p to the end of the directory command (i.e, dir documents /p. The list will stop and wait for you to press a key every time the text reaches the end of the screen. This can also be used in most other DOS commands that print text on the screen.
    Advertisement
  3. How.com.vn English: Step 3 Navigate to another directory.
    To do so, type cd followed by a directory name and press Enter. For example, if you wanted to change to the "Games" directory, you would type cd games and press Enter
    • If the directory is in another directory, you would separate each subdirectory name with a "\". For example, if you want to navigate to a folder called "Mortar" within the "Games" directory, you would type cd games\mortar and press Enter. You can also specify the full path of the directory you want to navigate to (i.e, cd c:\games\mortar.
    • If the directory has spaces in the title, you need to put the name of the directory in quotation marks. For example cd "mortar mayhem".
    • To go back to the previous directory. type cd.. and press Enter.
    • To return to the root of your hard drive, simply type cd\ and press Enter. This will return you to "C:\>."
  4. How.com.vn English: Step 4 Change to a different drive letter.
    If you want to want to change to another drive, such as a D: drive, a CD/DVD ROM, a flash drive, or another external device, simply type the drive letter followed by a colon (":") and press Enter. For example, type D: and press Enter to change to the D: drive. You can do this from within any directory.
  5. How.com.vn English: Step 5 Type the name of a program or file name to run the program or file.
    Executing programs is exactly like commands. For example, if you wanted to start the game Mortar Mayhem, you would navigate to the directory it's in, type mortar.exe, and press Enter.
    • You can do the same thing using batch files and other scripts.
    • If the file name or program has spaces in the title, you need to put the file name in quotation marks.
    • Running programs from within DOS or the Command Prompt allows you to use switches and flags that allow you to do specific things with a program, rather than just running an executable file.
      • For example, if you design a level for the original DOOM 2 (a ".wad" file), you would navigate to the folder that contains your WAD file and the DOOM2.exe file. Then you would type doom2.exe -file filename.wad and press Enter to launch DOOM 2 with your custom level.[1]
    • If you want to be able to run a program from any folder or directory within the Command Prompt, you need to add the program to your PATH environment variable.
  6. How.com.vn English: Step 6 Create a new directory or folder.
    To do so, navigate to the directory or folder you want to create the new directory in, and type mkdir or md followed by the name of the directory and press Enter. For example,mkdir new_directory[2]
    • You can create multiple directories using this command. Simply separate each directory name with a space. For example, md user1 user2 user3.
    • If you want the new directory name to have spaces, you need to put the directory name in quotation marks. For example, mkdir "My New Directory".
  7. How.com.vn English: Step 7 Rename a file.
    To do so, navigate to the directory or folder with the file you want to rename Then type ren followed by the name of the file you want to rename, followed by the file name you want to rename it to. For example, type ren count.txt coundown.txt to rename a file called "count.txt" to "countdown.txt."[3]
    • If you are not currently in the directory with the file you want to rename, you will need to specify the path to that file. For example, type ren c:\documents to specify that the "count.txt" file is in the "documents" directory.
  8. How.com.vn English: Step 8 Delete a file.
    To do so, navigate to the folder with the file you want to delete, and type del followed by a filename and press Enter. For example, type del countdown.txt to delete a file called "countdown.txt."
    • If you want to delete all files within your current directory, type del *.* and press Enter.
    • Be careful when using the "del" command. Once a file is deleted in DOS, you cannot get it back.
  9. How.com.vn English: Step 9 Copy a file to another folder.
    To do so, navigate to the folder with the file you want to copy. Then type copy followed by the file you want to copy. Then enter the full path you want to copy the file to and press Enter. For example, type copy countdown.txt c:\games\grape to move the "countdown.txt" file to the "grape" folder within the "games directory.
    • If you want to copy an entire directory along with all the subdirectories contained within, type robocopy followed by the path to the directory name, followed by the path you want to copy it to, and press Enter. For example, you could type robocopy c:\games\grape c:\documents to copy the "grape" folder to the "documents" folder.[4]
  10. How.com.vn English: Step 10 Move a file to another folder.
    To do so, navigate to the file you want to move. Then type move followed by the file you want to move, and then the full path or the directory you want to move it to. For example, type move countdown.txt c:\games\grape to move "countdown.txt" to the "grape" directory within the "games" directory.
    • If you are not currently in the same directory as the file you want to move, you will need to specify the path to the file in the command. For example, type c:\documents\countdown.txt c:\games\grape to move the "countdown.txt" file from the "documents" folder to the "grape" directory within "games."
  11. How.com.vn English: Step 11 Delete a directory.
    If you want to remove an entire directory, type rmdir followed by the directory name and press Enter.
    • Be careful when using this command, this will delete an entire directory and all its contents. Once it is deleted, there is no way to get it back.
  12. How.com.vn English: Step 12 View a complete list of commands.
    If you want to view a complete list of commands, simply type help and press Enter. This will display all the commands you can use in DOS.
    • If you are uncertain what a command does, simply type the command followed by "/?." This will give you information about the command, and how to use it.
  13. Advertisement

Community Q&A

Search
Add New Question
  • Question
    My computer is not starting and says there is no operating system. How I can reinstall Windows 7 with my CD?
    How.com.vn English: Community Answer
    Community Answer
    Get into your PC'c BIOS by hitting DEL or F12 or F11 or F2. While the computer is booting up, then either select the CD drive, or go to boot order, and set your PC to boot from the drive. Usually it will tell you what key to press when it shows your PC's manufacturer while booting up.
  • Question
    How do I rename a file with this?
    How.com.vn English: Community Answer
    Community Answer
    Open the Command Prompt (DOS) and type in "RENAME [drive:][path]filename". Replace "[drive:]" with the drive the file is located in, such as the "C" drive. Replace "[path]" with the directory the file is located in. It should look something like "[drive:]WINDOWS\Users\user\Documents". Replace "filename" with the file you would like to rename.
  • Question
    How can I recover data that was permanently deleted from my computer?
    How.com.vn English: Community Answer
    Community Answer
    If it was permanently deleted, you can't recover it unless you backed up the files somewhere else.
See more answers
Ask a Question
200 characters left
Include your email address to get a message when this question is answered.
Submit
      Advertisement

      Video

      Tips

      Submit a Tip
      All tip submissions are carefully reviewed before being published
      Thanks for submitting a tip for review!
      Advertisement

      Warnings

      • DOS doesn't restrict your access to system files like windows does, so it's easier to mess things up.


      Advertisement

      About This Article

      How.com.vn English: Travis Boylls
      Written by:
      How.com.vn Technology Writer
      This article was co-authored by How.com.vn staff writer, Travis Boylls. Travis Boylls is a Technology Writer and Editor for How.com.vn. Travis has experience writing technology-related articles, providing software customer service, and in graphic design. He specializes in Windows, macOS, Android, iOS, and Linux platforms. He studied graphic design at Pikes Peak Community College. This article has been viewed 344,643 times.
      How helpful is this?
      Co-authors: 31
      Updated: September 27, 2023
      Views: 344,643
      Categories: Operating Systems
      Thanks to all authors for creating a page that has been read 344,643 times.

      Reader Success Stories

      • How.com.vn English: Q. G.

        Q. G.

        Jun 18, 2017

        "This article is worth reading for beginners."
      Share your story

      Is this article up to date?

      ⚠️ Disclaimer:

      Content from Wiki How English language website. Text is available under the Creative Commons Attribution-Share Alike License; additional terms may apply.
      Wiki How does not encourage the violation of any laws, and cannot be responsible for any violations of such laws, should you link to this domain, or use, reproduce, or republish the information contained herein.

      Notices:
      • - A few of these subjects are frequently censored by educational, governmental, corporate, parental and other filtering schemes.
      • - Some articles may contain names, images, artworks or descriptions of events that some cultures restrict access to
      • - Please note: Wiki How does not give you opinion about the law, or advice about medical. If you need specific advice (for example, medical, legal, financial or risk management), please seek a professional who is licensed or knowledgeable in that area.
      • - Readers should not judge the importance of topics based on their coverage on Wiki How, nor think a topic is important just because it is the subject of a Wiki article.

      Advertisement