The Azure Back Sync in the Active Roles Synchronization Service automatically creates a certificate which will expire in two years. After two years have passed, how is it possible to create and use a new certificate?
Currently, replacing the certificate used by the Azure Back Sync is a manual process.
$params = @{
Type = 'Custom'
Subject = 'CN=ActiveRoles_AutocreatedAzureBackSyncApp_V2'
FriendlyName = 'ActiveRoles_AutocreatedAzureBackSyncApp_V2_key'
KeyUsage = 'DigitalSignature'
KeyAlgorithm = 'RSA'
KeyLength = 2048
CertStoreLocation = 'Cert:\LocalMachine\My'
NotAfter = (Get-Date).AddYears(2)
}
New-SelfSignedCertificate @params
© 2025 One Identity LLC. ALL RIGHTS RESERVED. Nutzungsbedingungen Datenschutz Cookie Preference Center