Configure and Manage Active Directory Flashcards

1
Q

What are the requirements for creating a Group Managed Service Account (gMSA)?

A
  • At least one Windows Server 2012 Domain Controller
  • A Windows Server 2012 or Windows 8 machine with the ActiveDirectory PowerShell module, to create/manage the gMSA
  • A Windows Server 2012 or Windows 8 domain member to run/use the gMSA
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is a SPN (Service Principal Name)?

A

a unique identifier of a service instance. SPNs are used by Kerberos authentication to associate a service instance with a service logon account. This allows a client application to request that the service authenticate an account even if the client does not have the account name.

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

What is a Connection Point object?

A

Simple definition: an associated computer object for the computer on which the service is running

Complex: represents one or more instances of a service that is available in a network.

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

You have active directory recycle bin enabled.

You have 50 user accounts that were deleted last night. Theses users are scheduled to start today. How would you restore the accounts?

Both via PowerShell and GUI

A
  • PS - Restore-ADObject
  • Use Active Directory Administrative Center (ADAC)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are the different ways you can back up and restore Active Directory?

A
  • Entire Server
  • Selected Files
  • System State Data
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What does System State Back up?

A

includes all the files that are required to recover AD DS. System state includes at least the following data, plus additional data, depending on the server roles that are installed

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

What does Citrical Volumes backup?

A

includes all volumes that contain system state files

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

System State Backup

Can be used to recover from registry or directory service configuration errors (recover AD DS)

A

Yes

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

System State Backup

Can be used for full server (bare-metal) recovery with Windows Recovery Environment (Windows RE)

A

No

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

System State Backup

Can be used to recover from unbootable conditions

A

No

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

System State Backup

Can be used to recover specific files and folders

A

No

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

System State Backup

Can be created by using Windows Server Backup snap-in (GUI)

A

No

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

System State Backup

Can be created by using Wbadmin.exe command line tool

A

Yes

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

System State Backup

Has incremental backup support

A

No*

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

System State Backup

Can be stored on a DVD or on a network share if the backup is performed manually (is not a scheduled backup)

A

No

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

System State Backup

Can use any of the volumes that are included in the backup as the target volume

A

Yes***

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

System State Backup

Can be scheduled by using the Windows Server Backup snap-in

A

No

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

Critical Volumes Backup

Can be used to recover from registry or directory service configuration errors (recover AD DS)

A

Yes

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

Critical Volumes Backup

Can be used for full server (bare-metal) recovery with Windows Recovery Environment (Windows RE)

A

Yes

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

Critical Volumes Backup

Can be used to recover from unbootable conditions

A

Yes

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

Critical Volumes Backup

Can be used to recover specific files and folders

A

Yes

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

Critical Volumes Backup

Can be created by using Windows Server Backup snap-in (GUI)

A

Yes

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

Critical Volumes Backup

Can be created by using Wbadmin.exe command line tool

A

Yes

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

Critical Volumes Backup

Has incremental backup support

A

Yes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
# Critical Volumes Backup Can be stored on a DVD or on a network share if the backup is performed manually (is not a scheduled backup)
Yes
26
# Critical Volumes Backup Can use any of the volumes that are included in the backup as the target volume
No
27
# Critical Volumes Backup Can be scheduled by using the Windows Server Backup snap-in
Yes
28
# Full Server Backup Can be used to recover from registry or directory service configuration errors (recover AD DS)
Yes
29
# Full Server Backup Can be used for full server (bare-metal) recovery with Windows Recovery Environment (Windows RE)
Yes
30
# Full Server Backup Can be used to recover from unbootable conditions
Yes
31
# Full Server Backup Can be used to recover specific files and folders
Yes
32
# Full Server Backup Can be created by using Windows Server Backup snap-in (GUI)
Yes
33
# Full Server Backup Can be created by using Wbadmin.exe command line tool
Yes
34
# Full Server Backup Has incremental backup support
?
35
# Full Server Backup Can be stored on a DVD or on a network share if the backup is performed manually (is not a scheduled backup)
Yes\*\*
36
# Full Server Backup Can use any of the volumes that are included in the backup as the target volume
No
37
# Full Server Backup Can be scheduled by using the Windows Server Backup snap-in
Yes
38
How do you do a bare metal back up using PowerShell?
1. $policy = New-WBpolicy 2. Add-WBBareMetalRecovery $policy 3. $BackupLocation = New-WBBackupTarget –VolumePath E: 4. Add-WBBackupTarget –Policy $Policy –Target $BackupLocation 5. Start-WBBackup –Policy $policy
39
What does the cmd Repadmin /rodcpwrepl do?
Repadmin = lets you view and manage active directory replication /rodcpwrepl = is used to view RODC Password Replication
40
# What does the following PowerShell CmdLet Do? Add-WBBackupTarget
Adds a backup target to a backup policy.
41
# What does the following PowerShell CmdLet Do? Add-WBBareMetalRecovery
Adds items to a backup policy so that backups that use the policy can perform bare metal recoveries.
42
# What does the following PowerShell CmdLet Do? Add-WBFileSpec
Adds a backup file specification to a backup policy.
43
# What does the following PowerShell CmdLet Do? Add-WBSystemState
Adds the system state components to the backup policy.
44
# What does the following PowerShell CmdLet Do? Add-WBVirtualMachine
Adds a list of virtual machines to the backup policy.
45
# What does the following PowerShell CmdLet Do? Add-WBVolume
Adds the list of source volumes to the backup policy.
46
# What does the following PowerShell CmdLet Do? Get-WBBackupSet
Gets backups for a server from a location that you specify.
47
# What does the following PowerShell CmdLet Do? Get-WBBackupTarget
Gets backup storage locations that you specified as part of a backup policy.
48
# What does the following PowerShell CmdLet Do? Get-WBBackupVolumeBrowsePath
Mounts a volume inside a backup so that you can browse the files on the volume.
49
# What does the following PowerShell CmdLet Do? Get-WBBareMetalRecovery
Indicates whether or not a backup policy can perform bare metal recoveries from backups.
50
# What does the following PowerShell CmdLet Do? Get-WBDisk
Gets a list of internal and external disks that are online for the local computer.
51
# What does the following PowerShell CmdLet Do? Get-WBFileSpec
Gets the list of backup file specifications associated with a backup policy.
52
# What does the following PowerShell CmdLet Do? Get-WBJob
Gets the current backup operation.
53
# What does the following PowerShell CmdLet Do? Get-WBPerformanceConfiguration
Retrieves the current volume backup performance settings.
54
# What does the following PowerShell CmdLet Do? Get-WBPolicy
Retrieves the current backup policy for the computer.
55
# What does the following PowerShell CmdLet Do? Get-WBSchedule
Retrieves the current schedule for backups.
56
# What does the following PowerShell CmdLet Do? Get-WBSummary
Retrieves the history of backup operations on the computer.
57
# What does the following PowerShell CmdLet Do? Get-WBSystemState
Gets a Boolean value that indicates whether system state recovery was added to the backup policy.
58
# What does the following PowerShell CmdLet Do? Get-WBVirtualMachine
Gets all virtual machines and components from the backup policy.
59
# What does the following PowerShell CmdLet Do? Get-WBVolume
Retrieves a list of volumes.
60
# What does the following PowerShell CmdLet Do? Get-WBVssBackupOption
Retrieves a Volume Shadow Copy Service setting from the backup policy.
61
# What does the following PowerShell CmdLet Do? New-WBBackupTarget
Creates a backup target object.
62
# What does the following PowerShell CmdLet Do? New-WBFileSpec
Creates a backup file specification.
63
# What does the following PowerShell CmdLet Do? New-WBPolicy
Creates a backup policy object.
64
# What does the following PowerShell CmdLet Do? Remove-WBBackupSet
Deletes backups from a target catalog, a system catalog, or both.
65
# What does the following PowerShell CmdLet Do? Remove-WBBackupTarget
Removes backup storage locations from a backup policy.
66
# What does the following PowerShell CmdLet Do? Remove-WBBareMetalRecovery
Removes a request to include items that implement bare metal recovery from the current backup policy.
67
# What does the following PowerShell CmdLet Do? Remove-WBCatalog
Removes the backup catalog from the local computer.
68
# What does the following PowerShell CmdLet Do? Remove-WBFileSpec
Removes a backup file specification from a backup policy.
69
# What does the following PowerShell CmdLet Do? Remove-WBPolicy
Removes the backup policy.
70
# What does the following PowerShell CmdLet Do? Remove-WBSystemState
Removes the system state components from the backup policy.
71
# What does the following PowerShell CmdLet Do? Remove-WBVirtualMachine
Removes the list of virtual machines from the backup policy.
72
# What does the following PowerShell CmdLet Do? Remove-WBVolume
Removes the volume from the backup policy.
73
# What does the following PowerShell CmdLet Do? Restore-WBCatalog
Recovers a backup catalog for the local computer from a storage location.
74
# What does the following PowerShell CmdLet Do? Resume-WBBackup
Resumes a backup operation to a removable device after you add media to the device.
75
# What does the following PowerShell CmdLet Do? Resume-WBVolumeRecovery
Resumes a volume recovery operation from a removable device and specific media.
76
# What does the following PowerShell CmdLet Do? Set-WBPerformanceConfiguration
Sets the current volume backup performance settings.
77
# What does the following PowerShell CmdLet Do? Set-WBPolicy
Sets the backup policy for scheduled backups.
78
# What does the following PowerShell CmdLet Do? Set-WBSchedule
Sets the current schedule for backups.
79
# What does the following PowerShell CmdLet Do? Set-WBVssBackupOption
Sets a value that determines the VSS setting in the backup policy.
80
# What does the following PowerShell CmdLet Do? Start-WBApplicationRecovery
Starts an application recovery operation.
81
# What does the following PowerShell CmdLet Do? Start-WBBackup
Starts a one-time backup operation.
82
# What does the following PowerShell CmdLet Do? Start-WBFileRecovery
Starts a file recovery operation.
83
# What does the following PowerShell CmdLet Do? Start-WBHyperVRecovery
Starts recovery of a hv\_win8\_2 virtual machine.
84
# What does the following PowerShell CmdLet Do? Start-WBSystemStateRecovery
Starts a system state recovery operation.
85
# What does the following PowerShell CmdLet Do? Start-WBVolumeRecovery
Starts a volume recovery operation.
86
# What does the following PowerShell CmdLet Do? Stop-WBJob
Stops the current backup or recovery job.
87
What does the cmd Dsmove do?
Moves objects between locations in an AD domain or renames exisiting objects