Hi, in oneidentity 8.2.1, is it possible to grant access to IT-Shop to only a subset of users based on the membership of an Active Directory group?
Thanks,
Roberto
- Products
- Solutions
- Resources
- Trials
- Support
- Partners
- Communities
Hi, in oneidentity 8.2.1, is it possible to grant access to IT-Shop to only a subset of users based on the membership of an Active Directory group?
Thanks,
Roberto
Hi,
There is a control in the web.config called: authorization > allow users / deny users.
I haven't done it myself but I do recall being told a long time ago that you can use these controls to restrict access by AD group membership.
I'll see if I can find the syntax but no promises.
HTH, Barry.
I found this but it's from 2015 ..... might be out of date:
<authorization>
<remove users="*" roles="" verbs="" />
<add accessType="Allow" users="" roles="TheDomain\TheGroup" />
</authorization>
This might be more syntactically correct:
<authorization>
<allow roles="BUILTIN\Administrators" />
<deny users="*" />
</authorization>
Great! Thanks Barry!
Great! Thanks Barry!