Run" option.Run" will pop up. In the input box type "command" and press enter.

command" for Step 3, you should type "cmd". Otherwise you'll get a slowly emulated DOS box rather than a native console window.Run", you can simply hold down the Windows key on your keyboard (the one with a little flying window on it) and press the letter "R". That will pop up the "Run" window.C:\WINDOWS\Desktop>dir [enter]dir /p [enter]dir /w [enter]dir /w/p [enter]cd" which means "change directory" (dur). This of course changes what the current working directory is. When you first open up the console, it usually starts in "C:\WINDOWS\Desktop". Let's change that to just "C:\WINDOWS":cd \WINDOWS [enter]C:". That's because you can't change the drive you're using with the "cd" command. To change to a different drive, simply type it's letter followed by a colon. So, if we wanted to change to drive "D:":D: [enter]C:\WINDOWS". Let's go back into the "Desktop" directory:cd Desktop [enter]C:\WINDOWS), we don't have to type out the full path. The following would have been just as effective, but it's more typing (and oh, our poor wrists!):cd \WINDOWS\Desktop [enter]Desktop" is "WINDOWS"), you can just use two dots. So if we're in "C:\WINDOWS\Desktop" and we want to be in "C:\WINDOWS", we can simply type:cd .. [enter].." simply means "parent directory". You can use it more than once too, when seperated by backslashes. So we could go all the way up to "C:\" from "C:\WINDOWS\Desktop" by typing:cd ..\..\ [enter]C:\>cd \WINDOWS" and then "Desktop" to start from the root and work your way down:cd \WINDOWS\Desktop