Configure a Group Managed Service Account for use with Devolutions Server
Add-KdsRootKey –EffectiveTime ((Get-Date).AddHours(-10))New-ADGroup -Name "DVLS Authorized Hosts" -SamAccountName "DVLSHosts" -GroupScope DomainLocalNew-ADServiceAccount -Name "DVLS_Runner" -DnsHostName "dvls01.domain.local" -ServicePrincipalNames "http/DVLS_Runner.domain.local" ` -PrincipalsAllowedToRetrieveManagedPassword "DVLSHosts" New-ADServiceAccount -Name "DVLS_Sched" -DnsHostName "dvls01.domain.local" -ServicePrincipalNames "sched/DVLS_Sched.domain.local" ` -PrincipalsAllowedToRetrieveManagedPassword "DVLSHosts"Install-ADServiceAccount DVLS_Runner Install-ADServiceAccount DVLS_Sched
Last updated
Was this helpful?