Windows Command Line

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/10

flashcard set

Earn XP

Description and Tags

Learn the essential Windows commands.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

11 Terms

1
New cards

ver

command to determine the operating system (OS) version.

2
New cards

systeminfo

command to list various information about the system such as OS information, system details, processor and memory.

3
New cards

more

Command to use with other commands to view results in a page format. Navigate pages by pressing the space bar button.

ie. systeminfor | more

4
New cards

ipconfig

Command to check your network information. The terminal output below shows our IP address, subnet mask, and default gateway.

/all for more information about your network configuration.

5
New cards

ping

checking if the machine can access a particular server on the Internet and how quickly you get a response.

6
New cards

tracert

Stands for trace route. Command traces the network route traversed to reach the target.

7
New cards

nslookup

Command looks up a host or domain and returns its IP address.

8
New cards

netstat

Command displays current network connections and listening ports.

9
New cards

Working With Directories

cd - Change directory

dir - View the child directories. /a to view all files, /s to display all child directories.

tree - Visually represent the child directories and subdirectories.

mkdir - To create a directory.

rmdir - To delete a directory.

copy - Allows you to copy files from one location to another.

move - Move files.

del - Delete a file.

type - This command will dump the contents of the text file on the screen. Best used with more .

10
New cards

tasklist

Command lists the running processes.

11
New cards

taskkill /PID target_pid

Command to terminate a task using PID.