disabling full control from being chosen

howto:  disable full control for site sharing

I do not want my site owners to be able to give full control to team members


August 24th, 2015 9:00am

Hi,

As your description, you want to disable Full Control for site sharing.

You can edit master page with SharePoint Designer 2013, and use the following JavaScript code to achieve it:

<script src="http://code.jquery.com/jquery-1.11.3.min.js" type="text/javascript"></script>
<script type="text/javascript">
    $(function () {
       if($("#divGivePermissions").html()!=""){
       		$("#divGivePermissions select option").each(function(){
       			if($(this).text().indexOf("[Full Control]")>0){       				
       				$(this).remove();
       			}
       		});
       }
    });
</script> 

Best Regards,

Wendy

Free Windows Admin Tool Kit Click here and download it now
August 25th, 2015 3:27am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics