Link to home
Start Free TrialLog in
Avatar of vmich
vmichFlag for United States of America

asked on

Steps for setting up service accounts in AD

I was wondering if there is a good document out there with the steps for setting up Service Accounts in AD?
We have some servers that have services that are using domain admin accounts and we want to replace these accounts with service accounts.
Avatar of Devin Becker
Devin Becker
Flag of United States of America image

vmich,

Not exactly sure which software you are using with the service accounts. But you could use PowerShell for this.

First, to make the account:
 New-ADServiceAccount

Open in new window

New-ADServiceAccount Docs

Then modify the settings for the account:
Set-ADServiceAccount

Open in new window

Set-ADServiceAccount Docs

Then install the service account as needed:
Install-ADServiceAccount

Open in new window

Install-ADServiceAccount Docs

Hopefully these docs and commands help you out!

Devin Becker
create user account with some unique name so that by name the respective service can be identified for which it is created
Set password to never expires
Set service account password to complex one so that it cannot easily identified and put it in lockbox / file
Do not share password with anybody
Create FGPP and define setting that account lockout threshold will be like 50 / 100  etc so that account won't lockout easily by intruders guess. finally apply this FGPP to service account or Ad group containing service accounts
Finaly grant those service account logon as service rights on servers where you deploying them
These are guidelines I feel, one might give you more hints
SOLUTION
Avatar of Shaun Vermaak
Shaun Vermaak
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial