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.

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.

Files are listed by file size, followed by the file name (i. e, “countdown. txt”). Directories and folders will have the tag “

” 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.

Files are listed by file size, followed by the file name (i. e, “countdown. txt”). Directories and folders will have the tag “

” 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.

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:>. "

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:>. "

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:>. "

You can also format, and partition a drive using the DOS or the Command Prompt.

You can also format, and partition a drive using the DOS or the Command Prompt.

You can also format, and partition a drive using the DOS or the Command Prompt.

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] X Research source 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.

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] X Research source 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.

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”.

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”.

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.

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.

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.

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] X Research source

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] X Research source

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. "

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.

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.

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.

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.