SharePoint Admin Center Overview & Navigation
MS-102 Exam Alignment
MS-102
Manage SharePoint Online: Navigate the SharePoint admin center, understand site types, manage admin roles and permissions, and connect to SharePoint Online via PowerShell for administrative tasks.
- Know the SharePoint admin center URL: admin.microsoft.com → SharePoint admin center or directly via your-tenant-name-admin.sharepoint.com
- Know the three primary site types: Team site (M365 Group-connected, collaboration), Communication site (broadcast/intranet), Hub site (connection point for related sites)
- Know that the SharePoint Administrator role manages site collections, sharing settings, and tenant-wide SharePoint configuration — but cannot access site content unless explicitly granted permissions
- Know the difference between the SharePoint admin center and the individual site Settings — the admin center manages tenant-wide and site collection-level settings; individual site settings are managed within each site
🖥️ The SharePoint Admin Center
The SharePoint admin center is accessible via Microsoft 365 admin center → Admin centers → SharePoint, or directly at your tenant admin URL.
Microsoft 365 admin center › Admin centers › SharePoint
Key Navigation Sections
| Section | What You Manage Here |
|---|---|
| Sites → Active sites | View and manage all site collections — URL, template, owner, storage used, sharing level, hub association. Create new sites, manage site storage, delete sites |
| Sites → Deleted sites | Sites in the recycle bin (held for 93 days). Restore deleted sites or permanently delete them |
| Sites → Site creation | Control who can create Microsoft 365 Groups (and therefore new Team sites) — administrators only, or all users |
| User profiles | Manage user profile properties, audiences, and My Site (OneDrive) settings |
| Content services → Term store | Manage the enterprise managed metadata taxonomy — term groups, term sets, and terms used for document tagging and navigation |
| Content services → Content type gallery | The tenant-level content type hub — publish content types to all site collections |
| Policies → Sharing | Tenant-wide and per-site sharing settings — the most important security controls for external access |
| Policies → Access control | Unmanaged device access controls, IP-based location restrictions, and session-based app access control |
| Settings | SharePoint and OneDrive tenant settings — default sharing link type, idle session sign-out, file and sync settings, version history limits |
🏗️ SharePoint Site Types
| Site Type | Purpose | Microsoft 365 Group? | Typical Use |
|---|---|---|---|
| Team site | Collaborative workspaces where a team stores and works on documents, lists, and pages together | ✅ Yes — connected to an M365 Group (includes shared mailbox, calendar, Teams channel) | Project teams, department intranets, any collaboration scenario requiring a shared workspace |
| Communication site | Broadcast site for publishing information to a wide audience — news, announcements, policies | ❌ No — not connected to an M365 Group. Single owner manages content | Company intranet homepage, HR policy site, IT news site, corporate announcements |
| Hub site | A connection point that groups related sites together — provides shared navigation, search, and branding across associated sites | Either — a Team site or Communication site can be registered as a hub | Intranet architecture — e.g., an “HR Hub” with associated HR Team site, Benefits site, Recruitment site all sharing hub navigation |
🔑 SharePoint Admin Roles
| Role | What They Can Do | Notes |
|---|---|---|
| SharePoint Administrator | Full access to the SharePoint admin center. Create/delete/manage site collections, configure tenant-wide sharing and storage settings, manage user profiles and the term store | Does NOT have automatic access to view site content — must be explicitly added as a site collection admin to access a specific site’s files |
| Global Administrator | Has all SharePoint Administrator capabilities plus full tenant management | Best practice: use SharePoint Administrator role for day-to-day SharePoint admin — not Global Admin |
| Site Collection Administrator | Full control over a specific site collection — all settings, permissions, and content | Managed per-site. Set in the SharePoint admin center (Sites → Active sites → [site] → Membership → Site admins) |
💡 SharePoint Administrator vs Site Owner
The SharePoint Administrator manages the platform (creating sites, setting storage limits, configuring tenant sharing settings). They do not automatically have access to the content inside sites. A Site Owner manages a specific site — its pages, permissions, lists, and libraries. These are two different tiers of management that work together: the administrator builds and governs the environment; site owners manage their individual spaces within it.
# Install PnP PowerShell (recommended — more comprehensive) Install-Module PnP.PowerShell # Connect to the SharePoint Online admin center Connect-PnPOnline -Url https://your-tenant-admin.sharepoint.com -Interactive # Or use the built-in SPO Management Shell Install-Module Microsoft.Online.SharePoint.PowerShell Connect-SPOService -Url https://your-tenant-admin.sharepoint.com # List all site collections with key properties Get-SPOSite | Select-Object Url,Title,Template,StorageUsageCurrent,SharingCapability | Sort-Object Url # Find large sites (over 10 GB) Get-SPOSite | Where-Object {$_.StorageUsageCurrent -gt 10240} | Select-Object Title,Url,StorageUsageCurrent
💡 Best Practices
- Assign the SharePoint Administrator role (not Global Administrator) to SharePoint admins — following least-privilege minimises the blast radius of a compromised admin account
- Use Communication sites for top-down broadcast content (intranet, HR policies, IT news) and Team sites for collaborative workspaces — mixing these creates confusing sites that don’t serve either purpose well
- Register key sites as Hub sites from the start of your SharePoint deployment — retrofitting hub site architecture after hundreds of sites are created is significantly more difficult than planning it upfront
- Understand that every Microsoft Teams team creates a backing SharePoint Team site — factor this into storage planning and governance, as uncontrolled Teams proliferation leads to hundreds of SharePoint sites
🎓 Interview Q&A
A company creates a new Microsoft Teams team called “Project Alpha.” What SharePoint resource is automatically created alongside it?
Which site type is best suited for a company’s intranet homepage — a broadcast site that publishes company news, HR announcements, and IT updates to all employees?
A SharePoint Administrator needs to restore a site collection that was deleted 15 days ago. Where do they look?
Where in the SharePoint admin center would an admin configure the tenant-wide policy for external sharing (e.g., whether Anyone links are allowed)?
An organisation wants to prevent all non-IT staff from creating new Microsoft 365 Groups (and therefore new Teams teams and Team sites). Where is this configured?