70-742 Exam QuestionsBrowse all questions from this exam

70-742 Exam - Question 57


Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.

After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.

Your network contains an Active Directory domain named contoso.com. You have an organizational unit (OU) named LondonUsers that contains 10,000 users.

You need to modify the Office attribute of all the users in the LondonUsers OU.

Solution: You create a CSV file. You run csvde.exe and specify the `"i and `"f parameters.

Does this meet the goal?

Show Answer
Correct Answer: B

CSVDE is a command-line utility that allows for the import and export of Active Directory objects to and from a CSV file. However, CSVDE cannot be used to modify or delete existing objects; it is primarily used for bulk importing and exporting data. To modify existing attributes of users in Active Directory, such as the Office attribute of all the users in the LondonUsers OU, you would typically use LDIFDE or another method like PowerShell. Therefore, the solution specified does not meet the goal.

Discussion

6 comments
Sign in to comment
khalid86
May 15, 2020

Answer is correct. CSVDE can be used to export and import (add) object data only, LDIFDE can be used to modify and delete AD objects and supports populating passwords which CSVDE doesn't (amongst other things). LDIFDE is not really a superset of CSVDE, it's a different approach with a lot more power and complexity. CSVDE is handy because it is generally much easier to manipulate the raw CSV format data but it is a lot more limited. If all you want to do is add a bunch of users into an OU then CSVDE will do the trick but if you want to modify a bunch of properties for collection of objects then LDIFDE is the way to go. https://serverfault.com/questions/115239/difference-between-ldifde-exe-and-csvde-exe

rohw
May 19, 2020

B is correct. CSVDE is used to import/export objects. LDIFDE can make changes to existing objects.

Anonymous
Jun 27, 2020

CSVDE -i -f filename.csv is command to import a csv file. Answer is correct No

panda
Nov 11, 2019

I think the given answer B is correct. Because csvde.exe can perform the modify operation which ldifde can perform.

iemsabi
Apr 11, 2020

I believe it should be A csvde.exe is used for import/export Active Directory data. csvde -i -f <fileName> (-i is for import)

Timock
Jun 24, 2020

The solution states that you need to modify the office attribute for 10,000 users in the LondonUsers OU. CSVDE is used to import/export objects. LDIFDE can make changes to existing objects. These are existing objects so the answer is wrong. Answer should be A (True)