operating systems deck 2 Flashcards

1
Q

You need to make sure that old application data is not still located on a Windows 10 computer. Which hidden folder in Windows 10 stores this data?

A

The %systemdrive%\Users\user_name\AppData folder stores user application data and is a hidden folder in Windows 10 and higher.

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

You want to copy the entire file and folder structure from HDD1 to HDD2 in the most efficient manner.

A

Xcopy.exe

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

/s

A

Copies directories and subdirectories, unless they are empty.

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

/E

A

Copies all directories and subdirectories, even if they are empty.

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

/V

A

Verifies each file.

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

/C

A

Continues copying even if errors occur.

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

/F

A

Displays full file names while copying.

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

/H

A

Copies hidden and system files in addition to the others.

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

/v

A

Verifies that new files are correctly written.

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

/Y

A

Stops prompting for overwriting files.

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

/-Y

A

Enables prompting for overwriting files.

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

move.exe

A

Move.exe is used to move one or more files and folders from one location to another. When you use the move.exe command, the files and folders are copied from the source folder to the destination folder. However, when the copy process completes, the files and folders are deleted from the source folder.

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

ROBOCOPY source destination [file [file]] [options

A

This is a command provided in Windows 10 and higher that copies files and folders of any size, including all NTFS ACL information, even over network connections

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

parameters for ROBOCOPY

A

/S – Copies subdirectories, except empty ones.
/E – Copies subdirectories, including empty ones.
/COPY – Indicates which file ACL parameters (attributes, timestamps, owner, security information) should be copied with the files.
/SEC – Copies ALL ACL parameters, including attributes, timestamps, owner information, and ACL security information

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