Microsoft Windows command line tools Flashcards

1
Q

This is the command you should used for if you are not sure.

A

help or [command] /?

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

This is the command when you want to close the command prompt

A

exit

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

This is the command that you use to list files and directories

A

dir

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

This is the command that you use to change working directories

A

cd

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

This is the command that you use to make directories

A

md

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

This is the command that you use to go to the folder above.

A

..

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

This command is used to shut down you computer

A

shutdown /s /t (nn)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

This is the command that you use to restart your computer

A

shutdown /r /t (nn)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

This is the command that you use to abort the shutdown or restart

A

shutdown /a

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

This command allows to make changes to your image, updates application, manage drivers, and manage updates

A

dism

Deployment Image Servicing and Management tool

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

This command allows you to check your system files

A

sfc

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

This command allows you to check your files and fix them while on your way. Also its to fix any corrupted files if malware got in your computer.

A

sac /scannow

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

This command fixes logical file system errors on the disk

A

chkdsk /f

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

This command locates bad sectors and recovers readable information

A

chkdsk /r

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

This command manages disk configurations

A

diskpart

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

This command manages task from the command line, No task manager required

A

tasklist and taskkill

17
Q

This command displays a list of currently running processes it will also show you the PID number

A

tasklist

18
Q

This command terminate task buy process id (PID) or image name

A

taskkill

example: taskkill /PID 1234 /t

19
Q

This command manages computers in an active directory domain

A

gpupdate and gpresult

20
Q

this command forces a group policy update

A

gpupdate

example: gpupdate /target: {computer|user} /force

21
Q

this command verify policy settings for a computer or user

A

gpresult /r

22
Q

this command format disk for use with windows

A

format {name of disk}

23
Q

this command copies files from one location to another

A

copy

24
Q

this command verifies that new files are written correctly

A

copy /v

25
Q

This command surpasses promoting to confirm you want to overwrite an existing destination file.

A

copy /v /y

26
Q

This command copies files and directory trees

A

xcopy

example: xcopy /s Documents m:\backups

27
Q

this is a command that is a better version of xcopy and is included in windows 7, 8, and 10

A

robocopy