A SharePoint Site Collection Administrator has full control permissions for all sites within a site collection. This role is crucial for the management and maintenance of SharePoint sites. Here are some of the key responsibilities:

  1. User Management: Site Collection Administrators can add or remove users and groups, and modify their permissions across the entire site collection.
  2. Site and Content Management: They can create, delete, and modify sites within the site collection. They can also manage content types, site columns, and site settings.
  3. Recycle Bin Management: They have the ability to restore items or documents from the site collection recycle bin.
  4. Feature Activation/Deactivation: They can activate or deactivate site collection features.
  5. Site Collection Settings: They can configure site collection settings such as search settings, site collection audit settings, and site collection policies.
  6. Monitoring and Reporting: They can view usage data, audit reports, and administrative reports for the site collection.

The SharePoint site collection administrator holds significant control over the entire site collection, akin to a super owner. This role encompasses management of site collection features, search functionality, and the recycle bin. There are three primary methods for adding a site collection administrator:

  • SharePoint Admin Center
  • Site collection Permissions
  • Using PowerShell

In this blog post, we’ll delve into a specific line of PowerShell script used in SharePoint Online (SPO) administration:

This line of script is used to set a user as a Site Collection Administrator in SharePoint Online. Let’s break it down:

  • Set-SPOUser: This is a PowerShell cmdlet that modifies a user’s settings in a SharePoint Online site collection.
  • -site $URL: This parameter specifies the URL of the site collection where the user settings will be modified.
  • -LoginName $SecondaryAdmin: This parameter specifies the login name of the user to be set as the Site Collection Administrator.
  • -IsSiteCollectionAdmin $True: This parameter sets the user as a Site Collection Administrator. The $True value means the user will be granted Site Collection Administrator rights.

Adnan, a distinguished professional, boasts an impressive track record as a Microsoft MVP, having achieved this prestigious recognition for the eighth consecutive year since 2015. With an extensive career spanning over 18 years, Adnan has honed his expertise in various domains, notably excelling in SharePoint, Microsoft 365, Microsoft Teams, the .Net Platform, and Microsoft BI. Presently, he holds the esteemed position of Senior Microsoft Consultant at Olive + Goose.Notably, Adnan served as the MCT Regional Lead for the Pakistan Chapter from 2012 to 2017, showcasing his leadership and commitment to fostering growth within the tech community. His journey in the realm of SharePoint spans 14 years, during which he has undertaken diverse projects involving both intranet and internet solutions for both private and government sectors. His impact has transcended geographical boundaries, leaving a mark on projects in the United States and the Gulf region, often collaborating with Fortune 500 companies.Beyond his roles, Adnan is a dedicated educator, sharing his insights and knowledge as a trainer. He also passionately advocates for technology, frequently engaging with the community through speaking engagements in various forums. His multifaceted contributions exemplify his dedication to the tech field and his role in driving its evolution.

Leave a Reply