Command Prompt - Advanced Commands for System Information & Managing Active Tasks For Windows 7
Here are just a few easy commands to remember
How to View Your System Information;
Command Prompt allows you to view system information by using a simple command called
systeminfo. Type it and see what happens. a complete list of information about your operating system and computer components will be displayed. There are details like the version of the operating system, status of your memory or processor type, and some network information is available like IP or MAC addresses.
Display the List of Currently Running Processes;
To view the list of currently running processes, you have to use the
tasklist command. Type tasklist and press Enter.
Stop a Process Using Taskkill;
To kill or stop a running process, you need to use the taskkill command. Let's assume that you want to stop the application
SnspShot that is running on your computer, Its process is called
Snapshot.exe. type the command
taskkill /im snapshot.exe. The
/im parameter is used to stop a process by typing process name.
To kill any running process, you need to have administrative permissions and run the Command Prompt as administrator.
How to Use Help in Command Prompt;
In Command Prompt you just have to type the
help command and then press Enter. A list of all available commands will be displayed.
If a certain command interests you type
help followed by the
name of the command. Another way to do the same thing is to type
command_name followed by the
/? parameter.
Testing the Connection to a Website or Network/Internet Location;
To test your connection to a certain website or another network or Internet location, you can use the ping network command followed by a web-address or IP address. For example, if you want to check the connectivity to our website, without opening a web browser, type
ping www.w7forums.com and then press Enter.
Check Network Connections and Display Port Information;
With the
netstat command you will be able to see active network connections between your system and any other systems on your network or the Internet.
The /a parameter shows all connections and listening ports.
For many more commands visit Here
Hope you found this useful