Configure Service Authentication and Account Policies Flashcards

1
Q

Which built-in Service Accounts have the most permissions?

A

Local System > Local Service > Network Service

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

How do you create a service account (unmanaged)?

A
  1. Create a new user account

2. Within a service’s properties, on the Log on As tab, specify the user account to be used as a service account.

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

What PowerShell command can be used to create a new service?

A

New-Service -Name -BinaryPathName

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

What PowerShell command can be used to create a Managed Service Account?

A
  1. New-ADServiceAccount -Name -RestrictSingleComputer
  2. Add-ADComputerServiceAccount -Identity -ServiceAccount
  3. Install-ADServiceAccount -Identity
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What PowerShell command can be used to test if service account is functional?

A

Test-ADServiceAccount -Identity

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

How do you create a Group Managed Service Account?

A
  1. Create a key distribution center root key by typing:
    Add-KDSRootKey -EffectiveImmediately
    (10 hours to complete)
  2. Create the gMSA by typing:
    New-ADServiceAccount -Name -DNSHostName -PrincipalsAllowedToRetrieveManagedPassword “Domain Computers” or specified OU
  3. Remotely Push “RSAT AD PowerShell” to machines that will utilized the gMSA by typing:
    Invoke-Command -ComputerName -ScriptBlock { Install-WindowsFeature RSAT-AD-PowerShell }
  4. Log into server utilizing gMSA and install service account by typing:
    Install-ADServiceAccount
  5. (Optional) Test gMSA by typing:
    Test-ADServiceAccount -Identity
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is Kerberos Constrained Delegation?

A

The use of user account credentials to access requested services on a server

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

How do you configure Kerberos Constrained Delegation?

A
  1. Navigate to ADUC > Server Properties > Delegation tab
  2. Select “Trust this computer for delegation to specified services only”
  3. Specify the server and service to be used
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How do you view Service Principal Names?

A

ADUC > View > Advanced Features > Properties > Attribute Editor tab

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

What command-line utility can be used to manage Service Principal Names?

A

Setspn

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

Using the setspn utility, how do you view Service Principal Names?

A

setspn -l

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

Using the setspn utility, how do you create a new Service Principal Name?

A

setspn -s / \

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

How do you configure a virtual service account?

A

Service’s Properties > Log on As tab

For account, specify NT SERVICE\

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

In the Run dialog box, what brings up the Security Settings section of Group Policy?

A

Run > secpol.msc

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

Where do you configure domain and local user password policy settings?

A

Group Policy Management Editor > Default Domain Policy > Computer Configuration > Policies > Windows Settings > Security Settings > Account Policies

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

Where do you configure account lockout policy settings?

A

Group Policy Management Editor > Default Domain Policy > Computer Configuration > Policies > Windows Settings > Security Settings > Account Policies

17
Q

Where do you configure Kerberos policy settings within Group Policy, configure Authentication Policies and Authentication Policy Silos?

A

Group Policy Management Editor > Default Domain Policy > Computer Configuration > Policies > Windows Settings > Security Settings > Account Policies

18
Q

Where do you create PSOs?

A

AD Admin Center

19
Q

How do you create PSOs?

A
  1. Within AD Admin Center, open a password settings container by navigating to Server (Local) > Add Navigation Nodes > System > Password Settings Container
  2. New > Password Settings > Configure Settings > Apply to security object (User/Group)
20
Q

How do you delegate password settings management?

A

Right click on OU and select New Delegation > Specify User/Group > Assign tasks

21
Q

What PowerShell command is used to view Domain Password Policies?

A

Get-ADDefaultDomainPasswordPolicy