Replies: 1 comment
|
@Hesoka009 your script is fine, just visit the EntraCP global configuration page in the central admin > Security, to create the configuration object in the config DB. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hi Team,
I am installing the EntraCP V30.0, and i am having issue with the configuration.
Below the script
Add-Type -AssemblyName "Yvand.EntraCP, Version=1.0.0.0, Culture=neutral, PublicKeyToken=65dc6b5903b51636"
$config = [Yvand.EntraClaimsProvider.EntraCP]::GetConfiguration()
$settings = $config.Settings
Show current settings for the user identifier
$settings.ClaimTypes.UserIdentifierConfig
Update the properties for the user identifier
$settings.ClaimTypes.UpdateUserIdentifier([Yvand.EntraClaimsProvider.Configuration.DirectoryObjectProperty]::UserPrincipalName)
$settings.ClaimTypes.UpdateIdentifierForGuestUsers([Yvand.EntraClaimsProvider.Configuration.DirectoryObjectProperty]::Mail)
Commit the changes
$config.ApplySettings($settings, $true)
when i run this, i dont have error but also $config and $settings are empty, should i maybe change the version of the DLL to load or not ?
Thanks for your support.
All reactions