Create and Manage ADUC Flashcards

1
Q

What are the different methods to create AD Users and computers?

A

Through ADUC, the AD Admin Center, or through PowerShell.

*Note: Cannot copy accounts within AD Admin Center

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

How do you configure AD templates?

A
  1. Within ADUC, navigate to the corresponding OU where a template is needed and right click in that OU and select New > Template.
  2. Once a template has been created, right click on the template and select Copy to create a new account from that template.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How do you automate the creation of Active Directory accounts?

A

Automation is done through PowerShell using the Get, Set, New, and Remove cmdlets tied in with ADUser or ADComputer.

Within the PowerShell ISE, contains different parameter sets to pre-stage before running the command.

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

What PowerShell command is used to disable accounts in AD?

A

Disable-ADAccount -Identity

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

What PowerShell command is used to enable accounts in AD?

A

Enable-ADAccount -Identity

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

What PowerShell command is used to unlock accounts in AD?

A

Unlock-ADAccount -Identity

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

What PowerShell command is used to automate password resets?

A

Set-ADAccountPassword -Identity -Reset -NewPassword (ConvertTo-SecureString -AsPlainText -Force)

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

What PowerShell cmdlet is used to search the AD Database for filters such as inactive, disabled, or expiring accounts?

A

Search-ADAccount

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

What are two old school command-line utilities that can be used to export/import data from AD DS using the .csv format?

A

CSVDE and LDIFDE.

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

What PowerShell cmdlet is used to import AD DS data from a .csv file?

A

Import-Csv

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

How do you implement an offline domain join?

A

By utilizing the command-line utility djoin:

On DC, djoin /provision /domain /machine /savefile

On server to be joined, djoin /requestodj /loadfile /windowspath %systemroot% /localos

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