<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-1054551765324124869</id><updated>2011-11-27T17:27:34.565-08:00</updated><title type='text'>How to Use MS-DOS</title><subtitle type='html'>Microsoft DOS Command Prompt Shell Window Explained</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://how-to-use-dos.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1054551765324124869/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://how-to-use-dos.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>cuscom</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>6</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-1054551765324124869.post-8927116598690239687</id><published>2008-07-01T15:20:00.000-07:00</published><updated>2008-07-01T17:02:40.098-07:00</updated><title type='text'>DOS Commands :: dir</title><content type='html'>&lt;h1&gt;DOS Commands :: dir&lt;/h1&gt;&lt;font color="red"&gt;dir&lt;/font&gt;&lt;br /&gt;Use the &lt;font color="red"&gt;dir&lt;/font&gt; command to output a listing of the contents of the current directory. Information about the files and subdirectories of the current directory will be displayed.&lt;br /&gt;&lt;br /&gt;&lt;font color="red"&gt;dir&lt;/font&gt; &lt;font color="green"&gt;&lt;i&gt;directory&lt;/i&gt;&lt;/font&gt;&lt;br /&gt;By specifying a &lt;font color="green"&gt;&lt;i&gt;directory&lt;/i&gt;&lt;/font&gt;, the contents of that directory is displayed. For example, &lt;nobr&gt;&lt;font color="red"&gt;dir \mystuff&lt;/font&gt;&lt;/nobr&gt; will display the contents of the \mystuff directory. Note: If &lt;font color="green"&gt;&lt;i&gt;directory&lt;/i&gt;&lt;/font&gt; contains a space, then type quotation marks around the directory name; for example, &lt;nobr&gt;&lt;font color="red"&gt;dir "c:\program files"&lt;/font&gt;&lt;/nobr&gt;&lt;br /&gt;&lt;br /&gt;&lt;font color="red"&gt;dir *.txt&lt;/font&gt;&lt;br /&gt;Displays a listing of all the .txt files located in the current (or specified) directory.&lt;br /&gt;&lt;br /&gt;&lt;font color="red"&gt;dir my*&lt;/font&gt;&lt;br /&gt;Displays a listing of all files that start with the pattern you specify; in this example, "my".&lt;br /&gt;&lt;br /&gt;There are a few options you can use with the &lt;font color="red"&gt;dir&lt;/font&gt; command. See &lt;nobr&gt;&lt;font color="red"&gt;dir /?&lt;/font&gt;&lt;/nobr&gt; or &lt;nobr&gt;&lt;font color="red"&gt;help dir&lt;/font&gt;&lt;/nobr&gt; for the complete list. Note: If you specify a &lt;font color="green"&gt;&lt;i&gt;directory&lt;/i&gt;&lt;/font&gt; as part of the command, options can be specified before or after the &lt;font color="green"&gt;&lt;i&gt;directory&lt;/i&gt;&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;The following examples demonstrate some of the more useful options:&lt;br /&gt;&lt;br /&gt;&lt;font color="red"&gt;dir /p&lt;/font&gt;&lt;br /&gt;Pause the directory listing after every screenful. To continue the listing, press any key (e.g.: spacebar or Enter key).&lt;br /&gt;&lt;br /&gt;&lt;font color="red"&gt;dir /w&lt;/font&gt;&lt;br /&gt;Wide directory listing.&lt;br /&gt;&lt;br /&gt;&lt;font color="red"&gt;dir /b&lt;/font&gt;&lt;br /&gt;Displays a directory listing showing just the filenames without header information or file size/date. This bare format is useful when you just want the actual filenames and you're going to do some sort of further processing. For example &lt;nobr&gt;&lt;font color="red"&gt;dir /b \mystuff &gt; files.txt&lt;/font&gt;&lt;/nobr&gt; would create a file named files.txt that contains just the filenames of files located in the \mystuff directory.&lt;br /&gt;&lt;br /&gt;&lt;font color="red"&gt;dir /o:gne&lt;/font&gt;&lt;br /&gt;Displays a directory listing that is sorted. You specify the sort order by one or more letter after the &lt;font color="red"&gt;/o:&lt;/font&gt; part. The most useful sort order is &lt;font color="red"&gt;gne&lt;/font&gt; which puts all the subdirectories before files (g), and sorts by name (n), and then by filename ending (e). Tip: You can set the sort order (lasts until you close the DOS window) by typing a &lt;font color="red"&gt;set&lt;/font&gt; command: &lt;nobr&gt;&lt;font color="red"&gt;set dircmd=/o:gne&lt;/font&gt;&lt;/nobr&gt;&lt;br /&gt;&lt;br /&gt;&lt;font color="red"&gt;dir /o:s&lt;/font&gt;&lt;br /&gt;Displays a directory listing that is sorted by size (smallest to largest). To reverse the sort order (largest size to smallest size), instead use: &lt;nobr&gt;&lt;font color="red"&gt;dir /o:-s&lt;/font&gt;&lt;/nobr&gt;&lt;br /&gt;&lt;br /&gt;&lt;font color="red"&gt;dir /s&lt;/font&gt;&lt;br /&gt;Displays the contents of the current directory (or specified directory) as well as the contents of all subdirectories and their subdirectories too. Since the output can be very long, especially if you have subdirectories inside subdirectories, you probably should also use the &lt;font color="red"&gt;/p&lt;/font&gt; option to pause output. If you forget to do, you'll probably see the output zipping by on your screen; in that case, press &lt;nobr&gt;Ctrl-C&lt;/nobr&gt; to stop the command. Or you might want to save the output to a text file, for example: &lt;nobr&gt;&lt;font color="red"&gt;dir /s &gt; myfiles.txt&lt;/font&gt;&lt;/nobr&gt; will output a list of all files contained in the current directory and all subdirectories to the file myfiles.txt&lt;br /&gt;&lt;br /&gt;&lt;font color="red"&gt;dir /s *.txt&lt;/font&gt;&lt;br /&gt;Displays a listing of all .txt files located in the current directory and in all subdirectories.&lt;br /&gt;&lt;br /&gt;&lt;font color="red"&gt;dir /s mystuff.txt&lt;/font&gt;&lt;br /&gt;Displays a listing of all instances of a file named mystuff.txt located in the current directory and in all subdirectories. Useful when you know the name of a file but don't recall which subdirectory it is located in. You can think of this command as the equivalent of the Windows Search Companion (accessible by pressing F3 when viewing a Windows folder).&lt;br /&gt;&lt;br /&gt;&lt;font color="red"&gt;dir /ah&lt;/font&gt;&lt;br /&gt;Displays a listing of hidden files (if any) that are located in the directory. Tip: Use the &lt;font color="red"&gt;attrib&lt;/font&gt; command to change the &lt;i&gt;hidden&lt;/i&gt; attribute of a file.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Note:&lt;/b&gt; You can type more then one option at the same time. For example, &lt;nobr&gt;&lt;font color="red"&gt;dir /p/w \mystuff&lt;/font&gt;&lt;/nobr&gt; would display a wide listing of the \mystuff directory and pause after each screenful.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1054551765324124869-8927116598690239687?l=how-to-use-dos.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://how-to-use-dos.blogspot.com/feeds/8927116598690239687/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1054551765324124869&amp;postID=8927116598690239687' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1054551765324124869/posts/default/8927116598690239687'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1054551765324124869/posts/default/8927116598690239687'/><link rel='alternate' type='text/html' href='http://how-to-use-dos.blogspot.com/2008/07/dos-commands-dir.html' title='DOS Commands :: dir'/><author><name>cuscom</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1054551765324124869.post-7245548049127012238</id><published>2008-06-30T23:53:00.001-07:00</published><updated>2008-07-01T00:12:50.502-07:00</updated><title type='text'>DOS Commands :: notepad</title><content type='html'>&lt;h1&gt;DOS Commands :: notepad&lt;/h1&gt;Although &lt;font color="red"&gt;notepad&lt;/font&gt; is not a part of DOS, it is a useful command that you can use from a DOS command prompt window.&lt;br /&gt;&lt;br /&gt;&lt;font color="red"&gt;notepad&lt;/font&gt;&lt;br /&gt;This command will cause the Windows Notepad text editor program to be run. This program is the same Windows Notepad program that is accessible in Windows via: Start &gt; Programs &gt; Accessories &gt; Notepad&lt;br /&gt;&lt;br /&gt;&lt;font color="red"&gt;notepad&lt;/font&gt; &lt;font color="green"&gt;&lt;i&gt;filename&lt;/i&gt;&lt;/font&gt;&lt;br /&gt;This command will cause the file named &lt;font color="green"&gt;&lt;i&gt;filename&lt;/i&gt;&lt;/font&gt; to be opened by the Notepad text editor. For example, &lt;font color="red"&gt;notepad mylist.txt&lt;/font&gt; would open the mylist.txt file. If the file &lt;font color="green"&gt;&lt;i&gt;filename&lt;/i&gt;&lt;/font&gt; does not exist, Notepad will ask you if you want to create a new file with that name.&lt;br /&gt;&lt;br /&gt;If you want to edit a file that is in a directory other than the current directory, then use the "&lt;font color="red"&gt;cd&lt;/font&gt; &lt;font color="green"&gt;&lt;i&gt;directory&lt;/i&gt;&lt;/font&gt;" command first or specify the directory name as part of the filename, such as: "&lt;font color="red"&gt;notepad \mystuff\ebooks\list.txt&lt;/font&gt;".&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1054551765324124869-7245548049127012238?l=how-to-use-dos.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://how-to-use-dos.blogspot.com/feeds/7245548049127012238/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1054551765324124869&amp;postID=7245548049127012238' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1054551765324124869/posts/default/7245548049127012238'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1054551765324124869/posts/default/7245548049127012238'/><link rel='alternate' type='text/html' href='http://how-to-use-dos.blogspot.com/2008/06/dos-commands-notepad.html' title='DOS Commands :: notepad'/><author><name>cuscom</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1054551765324124869.post-8116146620595532250</id><published>2008-06-30T23:00:00.000-07:00</published><updated>2008-06-30T23:52:00.786-07:00</updated><title type='text'>DOS Commands :: cd (change directory)</title><content type='html'>&lt;h1&gt;DOS Commands :: cd (change directory)&lt;/h1&gt;When you are using a Microsoft DOS command window, MS-DOS works on one directory at a time. The "current" directory is indicated as part of the command prompt.&lt;br /&gt;&lt;br /&gt;For example, the command prompt "&lt;font color="purple"&gt;C:\mystuff\ebooks&amp;gt;&lt;/font&gt;" means that the current directory is the "ebooks" directory which is located inside the "mystuff" directory on the c: drive.&lt;br /&gt;&lt;br /&gt;Use the &lt;font color="red"&gt;cd&lt;/font&gt; command to make a different directory the "current" directory ("&lt;font color="red"&gt;cd&lt;/font&gt;" is short for "change directory").&lt;br /&gt;&lt;br /&gt;The command can be typed as either:&lt;br /&gt;&lt;br /&gt;&lt;font color="red"&gt;cd&lt;/font&gt; &lt;font color="green"&gt;directory&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;or&lt;br /&gt;&lt;br /&gt;&lt;font color="red"&gt;cd&lt;/font&gt; &lt;font color="green"&gt;drive&lt;/font&gt;:&lt;font color="green"&gt;directory&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;For example, "&lt;font color="red"&gt;cd \mystuff&lt;/font&gt;" will make "\mystuff" the current directory. To get to the "root" (top level directory) of your c: drive, type &lt;font color="red"&gt;cd \&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;Note: To see what directories are available for you to &lt;font color="red"&gt;cd&lt;/font&gt; into, use the &lt;font color="red"&gt;dir&lt;/font&gt; command. And to make a new directory, use the &lt;font color="red"&gt;md&lt;/font&gt; (or &lt;font color="red"&gt;mkdir&lt;/font&gt;) command.&lt;br /&gt;&lt;br /&gt;You can also type &lt;font color="red"&gt;cd ..&lt;/font&gt; (the two dots are required) to back out one level out of the current directory. For example, if the current directory is "&lt;font color="purple"&gt;C:\mystuff\ebooks&amp;gt;&lt;/font&gt;" then typing &lt;font color="red"&gt;cd ..&lt;/font&gt; will change the current directory to "&lt;font color="purple"&gt;C:\mystuff&amp;gt;&lt;/font&gt;"&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1054551765324124869-8116146620595532250?l=how-to-use-dos.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://how-to-use-dos.blogspot.com/feeds/8116146620595532250/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1054551765324124869&amp;postID=8116146620595532250' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1054551765324124869/posts/default/8116146620595532250'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1054551765324124869/posts/default/8116146620595532250'/><link rel='alternate' type='text/html' href='http://how-to-use-dos.blogspot.com/2008/06/dos-commands-cd-change-directory.html' title='DOS Commands :: cd (change directory)'/><author><name>cuscom</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1054551765324124869.post-4089143624562149421</id><published>2008-06-30T21:57:00.000-07:00</published><updated>2008-06-30T22:56:40.395-07:00</updated><title type='text'>DOS Commands :: cls</title><content type='html'>&lt;h1&gt;DOS Commands :: cls&lt;/h1&gt;When you are using a Microsoft DOS command prompt shell window, you can type &lt;font color="red"&gt;cls&lt;/font&gt; to clear the window and move the command prompt to the top of the window. No files are changed by the &lt;font color="red"&gt;cls&lt;/font&gt; command. The window display is merely cleared.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1054551765324124869-4089143624562149421?l=how-to-use-dos.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://how-to-use-dos.blogspot.com/feeds/4089143624562149421/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1054551765324124869&amp;postID=4089143624562149421' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1054551765324124869/posts/default/4089143624562149421'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1054551765324124869/posts/default/4089143624562149421'/><link rel='alternate' type='text/html' href='http://how-to-use-dos.blogspot.com/2008/06/dos-commands-cls.html' title='DOS Commands :: cls'/><author><name>cuscom</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1054551765324124869.post-5640042234207461988</id><published>2008-06-30T21:18:00.000-07:00</published><updated>2008-06-30T21:54:10.003-07:00</updated><title type='text'>DOS Command :: Help</title><content type='html'>&lt;h1&gt;DOS Command :: Help&lt;/h1&gt;Open a Microsoft DOS command prompt shell window and type &lt;font color="red"&gt;help&lt;/font&gt; and you will see a list of available commands with a brief description of each command.&lt;br /&gt;&lt;br /&gt;To display detailed help information about command &lt;font color="green"&gt;&lt;i&gt;command&lt;/i&gt;&lt;/font&gt;, you can type either of the following help commands:&lt;br /&gt;&lt;br /&gt;&lt;font color="red"&gt;help&lt;/font&gt; &lt;font color="green"&gt;&lt;i&gt;command&lt;/i&gt;&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;or&lt;br /&gt;&lt;br /&gt;&lt;font color="green"&gt;&lt;i&gt;command&lt;/i&gt;&lt;/font&gt; &lt;font color="red"&gt;/?&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;For example, &lt;font color="red"&gt;help dir&lt;/font&gt; and &lt;font color="red"&gt;dir /?&lt;/font&gt; displays help information about the &lt;font color="red"&gt;dir&lt;/font&gt; command.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1054551765324124869-5640042234207461988?l=how-to-use-dos.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://how-to-use-dos.blogspot.com/feeds/5640042234207461988/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1054551765324124869&amp;postID=5640042234207461988' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1054551765324124869/posts/default/5640042234207461988'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1054551765324124869/posts/default/5640042234207461988'/><link rel='alternate' type='text/html' href='http://how-to-use-dos.blogspot.com/2008/06/dos-command-help.html' title='DOS Command :: Help'/><author><name>cuscom</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1054551765324124869.post-6759636386118671779</id><published>2008-06-30T18:01:00.000-07:00</published><updated>2008-06-30T21:53:37.006-07:00</updated><title type='text'>How to Open Command Prompt</title><content type='html'>&lt;h1&gt;How to Open Command Prompt&lt;/h1&gt;To open a Microsoft DOS command prompt shell window, first click the Start menu at the lower-left of your computer's desktop and select "Run...".&lt;br /&gt;&lt;br /&gt;Then if you are using Windows XP or Vista, type "&lt;font color="red"&gt;cmd&lt;/font&gt;" (without the quotation marks) into the Run box and click "OK".&lt;br /&gt;&lt;br /&gt;Otherwise, type "&lt;font color="red"&gt;command&lt;/font&gt;" (without the quotation marks) into the Run box and click "OK".&lt;br /&gt;&lt;br /&gt;&lt;a href="http://2.bp.blogspot.com/_lLGVwIFIQBw/SGmK4GTqTQI/AAAAAAAAAA0/0NnvwbgA8iY/s1600-h/run-xp.gif"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://2.bp.blogspot.com/_lLGVwIFIQBw/SGmK4GTqTQI/AAAAAAAAAA0/0NnvwbgA8iY/s400/run-xp.gif" border="0" alt=""id="BLOGGER_PHOTO_ID_5217854339655814402" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/_lLGVwIFIQBw/SGmLL2FNEqI/AAAAAAAAAA8/mnU7HjEHeio/s1600-h/run-98.gif"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_lLGVwIFIQBw/SGmLL2FNEqI/AAAAAAAAAA8/mnU7HjEHeio/s400/run-98.gif" border="0" alt=""id="BLOGGER_PHOTO_ID_5217854678897595042" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;After you click "OK", a DOS command prompt window will appear. Depending upon which version of Windows you are using, the DOS command window will look similar to these images:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/_lLGVwIFIQBw/SGmNSMR8iBI/AAAAAAAAABE/h-J1QbeJ0HI/s1600-h/cmd-xp.gif"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_lLGVwIFIQBw/SGmNSMR8iBI/AAAAAAAAABE/h-J1QbeJ0HI/s400/cmd-xp.gif" border="0" alt=""id="BLOGGER_PHOTO_ID_5217856986959087634" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://1.bp.blogspot.com/_lLGVwIFIQBw/SGmNfPPpZzI/AAAAAAAAABM/UJ-BJsWKXLY/s1600-h/command-98.gif"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_lLGVwIFIQBw/SGmNfPPpZzI/AAAAAAAAABM/UJ-BJsWKXLY/s400/command-98.gif" border="0" alt=""id="BLOGGER_PHOTO_ID_5217857211093051186" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;See other postings here for a description of the commands that you can type into the DOS command prompt window.&lt;br /&gt;&lt;br /&gt;To close the window, either type "&lt;font color="red"&gt;exit&lt;/font&gt;" (without quotations marks) and press Enter, or click the &lt;font color="red"&gt;X&lt;/font&gt; button in the top-right of the window frame.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1054551765324124869-6759636386118671779?l=how-to-use-dos.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://how-to-use-dos.blogspot.com/feeds/6759636386118671779/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1054551765324124869&amp;postID=6759636386118671779' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1054551765324124869/posts/default/6759636386118671779'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1054551765324124869/posts/default/6759636386118671779'/><link rel='alternate' type='text/html' href='http://how-to-use-dos.blogspot.com/2008/06/how-to-open-command-prompt.html' title='How to Open Command Prompt'/><author><name>cuscom</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_lLGVwIFIQBw/SGmK4GTqTQI/AAAAAAAAAA0/0NnvwbgA8iY/s72-c/run-xp.gif' height='72' width='72'/><thr:total>0</thr:total></entry></feed>
