(adsbygoogle = window.adsbygoogle || []).push({});
Amazing Useful CMD tricks!
Here is a guide to show you several Command Prompt tricks to allow you to many things with CMD than you thought you could :p
Command as an Editor!
Mainly for people who are writing Batch CMDS, from scratch. This will help you to write them.
1. Bring up CMD prompt. ( Start>Run>CMD )
2. In CMD type:
EDIT Example.TXT
You can fill in Example with any other file, you can edit almost any file on your Computer!
3. Edit away, as this is very useful for you to edit and create!
You must login or register to view this content.
Simple but useful tricks
1. Pressing arrow up selects a previous command from your command history; similarly, arrow down selects the next command.
2. Pressing F7 pops up your command history list.
3. You can drag n' drop files or folders from an explorer window into a command prompt; this inserts the quoted path as if you had manually pasted it.
4. Tab completion is fully supported; type edit *.ini then hit TAB to iterate through all matches. Use SHIFT+TAB to move to the previous match. This works for partial filenames as you would expect, and in all commands.
5. Tired of the typical "c:\windows\system32\cmd.exe" window title? Change it using the TITLE command.
6. ALT+ENTER takes your command prompt to fullscreen mode and back again
Finding your OWN IP
1. Simply bring up CMD.
2. Type this in CM
ipconfig
3. Under the "Wireless LAN adapter Wireless Network connection 2"
You will see IPv4
4. IPv4 is your routers IP address, and can be used for many things

!
Installed Driver information!
Having teouble with some drivers to some devices on your computer?
1. On CMD line you type:
driverquery
2. All your Computers Kernel information, and Filesystem information about Drivers will be displayed !
3. You can use this information very well with the proper knowledge
Find who's using your Internet!!
Okay this one was a request to me, and I thought I would add it in
1. On CMD line type:
netstat -a 30
2. This will display all the TCP/IP ( Transmission Control Protocol )
that are trafficing through your Internet!
Fix Corrupted File!
This one is a loved one by several users, as you can save as much information from a corrupt file as you can.
1. Simple type: ( Replace "filename" with any file that is corrupted and you want to fix.
recover filename.ext
2. simply watch as the computer fixes the curropted file
Get ALL system information!
With this command, you can retrieve the following information:
Host Name
OS Name
OS Version
OS Manufacturer
OS Configuration
OS Build Type
Registered Owner
Registered Organization
Product ID
Original Install Date
System Up Time
System Manufacturer
System Model
System type
Processor(s)
BIOS Version
Wndows Directory
System Directory
Boot Device
System Locale
Input Locale
Time Zone
Total Physical Memory
Available Physical Memory
Virtual Memory Max Size
Virtual Memory Available
Virtual Memory In Use
Page File Location(s)
Domain
Logon Server
Hotfix(s)
NetWork Card(s)
1. On CMD line type:
systeminfo
this will show you all the detailed system info that is envolved in your computer, this is very useful if your trying to find specs.
Well that's it for now!
I might keep updating this Thread with other options such as defragmenting

and other stuff !
Peace all