1.4 - Done Flashcards

1
Q

In reference to command lines, what would we type if we wanted to access files and directories?

A

dir

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

In reference to command lines, what would we type if we wanted to move between directories?

A

cd

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

In reference to command lines, what would we type if we wanted to access the folder above the current folder we’re at?

A

. .

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

In reference to command lines, what would we type if we wanted to shutdown the computer?

A

shutdown

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

In reference to command lines, what would we type if we wanted to shutdown the computer, but only after 60 seconds?

A

shutdown /s /t 60

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

In reference to command lines, what would we type if we wanted to shutdown the computer, but then restart after shutdown?

A

shutdown /r /t nn

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

In reference to command lines, what would we type if we wanted to abort a computer’s shutdown?

A

shutdown /a

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

In reference to command lines, what would we type if we wanted to make changes or view the WIM files?

A

dism

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

When would you use the dism command?

A

If you wanted to make changes to your image. For example, get information about an image, update applications, manage drivers, manage updates, mount an image, etc.

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

In reference to command lines, what would we type if we wanted to scan the integrity of all protected system files?

A

sfc (system file checker)

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

In reference to command lines, what would we type if we wanted to check our disk for errors?

A

chkdsk

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

What two types of chkdsk commands are there? What are the differences?

A

chkdsk /f and chkdsk /r

F = Fixes logical file system errors

R = Does “F” then locates bad sectors and if any are found it will recover readable information

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

True or False: You can’t run a chkdsk on the same drive you are currently using.

A

True, you must run the chkdsk either on a different drive or have the computer run the check after the system restarts.

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

In reference to command lines, what would we type if we wanted to manage disk configuration?

A

diskpart

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

In reference to command lines, what would we type if we wanted to manage tasks from the command line?

A

tasklist

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

In reference to command lines, what would we type if we wanted to terminate a task through the command line?

A

taskkill

17
Q

In reference to command lines, what would we type if we wanted a Group Policy to update to a specific computer?

A

gpupdate /target:{computer|user} /force

gpupdate /target:professor /force

18
Q

In reference to command lines, what would we type if we wanted to look at the group policy settings for a specific computer or user?

A

gpresult /r

gpresult /user sgc/professor /v

19
Q

In reference to command lines, what would we type if we wanted to write a file system to a partition?

A

format

20
Q

In reference to command lines, what two options could we use if we wanted to copy one file of a directory? What is the difference between the two?

A

copy /v = verifies that new files are written correctly

copy /y = suppresses prompting to confirm you want to overwrite an existing destination file

21
Q

In reference to command lines, what would we type if we wanted to copy multiple files from multiple directory trees at the same time?

A

xcopy

22
Q

In reference to command lines, what would we type if we wanted to use a better version of xcopy? What makes it better?

A

robocopy

It has the ability to resume a file transfer if interrupted in the middle of it

23
Q

In reference to command lines, what would we type if we wanted to gather more information about a specific command?

A

[command name] /?

24
Q

In reference to command lines, what would we type if we wanted to determine the route a packet takes to a destination?

A

tracert (trace route)

25
Q

In reference to command lines, what would we type if we wanted to determine what type of network connections are occurring inbound and outbound from my computer?

A

netstat

26
Q

In reference to command lines, what would we type if we wanted to show all active connections inbound and outbound from my local computer?

A

netstat -a

27
Q

In reference to command lines, what would we type if we wanted to see what binaries in Windows may be sending or receiving information?

What is required to run this command line?

A

netstat -b

Must be in “Administrator Mode”

28
Q

In reference to command lines, what would we type if we wanted to include IP addresses when looking at network connections?

A

netstat -n

29
Q

In reference to command lines, what would we type if we wanted to lookup information from DNS servers?

A

nslookup

30
Q

In reference to command lines, what would we type if we wanted to view user account information and reset passwords?

A

net user * /domain