How to Disable or Hide "Everyone" in People Picker in SharePoint 2016

MichaelHan-MSFT 18,016 Reputation points
2020-10-27T07:41:59.97+00:00

HI,

We are arranging the Peoples and Groups for interna and external Users. I need to hide "everyone" in people picker so there is no chance I can give the external usres in "Owners" group.

I saw some articles in SPO, where it can easily be hidden/disabled but not in On Prem. Do we know how?

https://techtrainingnotes.blogspot.com/2016/03/sharepoint-2013-and-sharepoint-online.html

Thanks,

Frances

Source link from TechNet

SharePoint Server
SharePoint Server
A family of Microsoft on-premises document management and storage systems.
2,236 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Elsie Lu_MSFT 9,771 Reputation points
    2020-10-28T05:54:18.037+00:00

    According to your description, I recommend disabling this option via powershell commands which can be restored at any time.
    This is the powershell command involved:

    $claimMgr = Get-SPClaimProviderManager
    
    $allUser = get-spclaimprovider –identity "AllUsers"
    
    $allUser.IsEnabled = $false
    
    $claimMgr.Update()
    

    If you want to restore it, just let $allUser.IsEnabled=$true.
    Reference:
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/ad63bd73-5070-493c-a358-30d4ab07cdcb/how-disable-everyone-group?forum=SP2016


    If the answer is helpful, please click "Accept Answer" and upvote it.

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments