November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
I have resolved it. Instead of limiting WebAdmin access, I restrict access to change "Access rights" pages to Administrator only. like below
<location path="episerver/CMS/Admin/security.aspx">
<system.web>
<authorization>
<allow roles="Administrators" />
<deny users="*" />
</authorization>
</system.web>
</location>
<location path="episerver/CMS/Admin/AdminGroup.aspx">
<system.web>
<authorization>
<allow roles="Administrators" />
<deny users="*" />
</authorization>
</system.web>
</location>
<location path="episerver/CMS/Admin/SearchUsers.aspx">
<system.web>
<authorization>
<allow roles="Administrators" />
<deny users="*" />
</authorization>
</system.web>
</location>
<location path="episerver/CMS/Admin/EditUser.aspx">
<system.web>
<authorization>
<allow roles="Administrators" />
<deny users="*" />
</authorization>
</system.web>
</location>
Feel free to suggest any solution more appropriate
Hi
Can I give a CMS user permission to only run scheduled jobs but I don't want to give permissions to change access rights.
By default, WebAdmins & Administrators can access the "Admin" tab. I want to create a user access group that is responsible for Schedule Jobs. Can I do that?
Thanks