Information Centric Tagging (ICT) Administration Console Wizard configuration error: "...data not valid (You do not have authorization to access this page...)"
Executing Administration Console installation wizard in the first step (configuring Databases). We receive error message :
This may happen because your server(Domain Controller or ICT server) installed in a different language than English.
ICT uses the segregation groups to provide the access to the consoles. These groups are configured in the AD but, during the configuration, the group configured in the database is the BUILTIN\USERS.
Run the following script in the Database(if you are not using the default ICT configuration group change it accordingly in the scrip)
USE [ICT_CONFIG]
GO
UPDATE [dbo].[Configuration]
SET [Value] = 'ICT_CONFIGURATION'
where variable = 'AdSystemSetupConsoleGroup'
GO
|
Alternatively you can change it directly in the database:
Database – ICT_CONFIG:
Also check that you don't have BUILTIN\USERS in ICTAdministration console web.config (line 36)
<authorization>
<allow roles=" BUILTIN\USERS, BUILTIN\USERS, BUILTIN\USERS, BUILTIN\USERS, BUILTIN\USERS, BUILTIN\USERS " />
<deny users="*" />
</authorization>
The BUILTIN\USERS is available on every system language. The only thing that is diferent is the “USERS”.
A server restart maybe required.