PowerShell kullanarak Active Directory'de Managed Service Account (MSA) Hesabı Oluşturma:

04-03-2023 16:52
PowerShell kullanarak Active Directory'de Managed Service Account (MSA) Hesabı Oluşturma:
 Import-Module ActiveDirectory

 

# MSA hesap adı

$accountName = "MyMSA"

 

# MSA hesap açıklaması

$description = "Managed Service Account for My Application"

 

# MSA hesap uzunluğu

$accountLength = 15

 

# MSA hesabının oluşturulduğu OU

$ouPath = "OU=Service Accounts,DC=example,DC=com"

 

# MSA hesap oluşturma

New-ADServiceAccount -Name $accountName -Description $description -Enabled $true -Path $ouPath -PrincipalsAllowedToRetrieveManagedPassword "Domain Computers" -KerberosEncryptionType AES256 -TrustedForDelegation $true -RestrictToSingleComputer $false -PasswordLength $accountLength

HASAN KAYAPINAR
HAKKIMDA
Blog Etiketleri :
IdeaSoft® | E-Ticaret paketleri ile hazırlanmıştır.