SharePoint Admin Center: Complete Guide for 2026
The SharePoint Admin Center is the command hub for every Microsoft 365 administrator managing SharePoint Online. Whether you're overseeing 500 users or 50,000, understanding every section of the admin center is non-negotiable for maintaining a secure, well-governed SharePoint environment.
This guide covers every major area of the SharePoint Admin Center as it exists in 2026—including the latest features added over the past 12 months.
---
Accessing the SharePoint Admin Center
Navigate to the SharePoint Admin Center via:
- Direct URL: `https://[yourtenant]-admin.sharepoint.com`
- Microsoft 365 Admin Center: Admin centers → SharePoint
- Required role: SharePoint Administrator or Global Administrator
Admin Roles and Permissions
| Role | Access Level |
|------|-------------|
| Global Administrator | Full access to all SharePoint settings |
| SharePoint Administrator | Full SharePoint admin access (recommended for day-to-day) |
| Site Administrator | Manages specific sites only |
| Teams Service Administrator | Limited SharePoint access through Teams |
Best practice: Use SharePoint Administrator role for day-to-day management. Reserve Global Administrator for break-glass scenarios only.
---
Sites Section
Active Sites
The Active Sites view shows all SharePoint sites in your tenant, including:
- Team sites (Microsoft 365 group-connected and classic)
- Communication sites
- Hub sites
- OneDrive for Business sites (optional filter)
Key columns to enable:
- Storage used / Storage limit
- Last activity
- Hub site association
- Privacy (Public/Private)
- External sharing level
- Sensitivity label
Sorting and filtering tips:
- Sort by "Last activity" to identify inactive sites for governance review
- Filter by "External sharing" = On to audit sites with guest access
- Export to CSV for compliance reporting
Creating New Sites
From Active Sites → Create:
- Team site: Creates Microsoft 365 group, Teams, SharePoint site simultaneously
- Communication site: No group, ideal for broadcasting information
- Document center: High-volume document management scenarios
- Enterprise wiki: Knowledge base scenarios
Admin-created vs. user-created sites: Configure who can create sites under Settings → SharePoint settings to control site proliferation.
Site Details Panel
Click any site to open the details panel with:
- General tab: URL, template, created date, storage
- Activity tab: File views, unique users, page visits (30-day trend)
- Sharing tab: Site-level external sharing setting
- Membership tab: Owners, members, visitors
- Policies tab: Sensitivity labels, compliance policy, retention
Managing Storage
Each site has its own storage quota (or inherits from the pool):
- Total pool: Your Microsoft 365 subscription allocation
- Default site quota: Configurable (default is 25TB per site, but pool-limited)
- Set individual quotas: Site details → General → Edit storage limit
Storage alerts: Configure alerts at 70%, 85%, 95% of quota to prevent sites from becoming read-only.
Hub Sites
Hub sites provide navigation, search, and branding inheritance:
- Register a hub: Site details → Hub → Register as hub site
- Associate sites: Site details → Hub → Associate with hub
- Hub hierarchy: Up to 3 levels (hub of hubs)
- Hub permissions: Hub site owners control association approval
---
Policies Section
Sharing Settings (Critical)
The Sharing settings control external sharing at the tenant level—the maximum level allowed for any site.
Sharing levels (most to least permissive):
- Anyone (anonymous links) — ⚠️ Not recommended for enterprise
- New and existing guests (authentication required for new guests)
- Existing guests only (no new external user invitations)
- Only people in your organization (no external sharing)
Recommended enterprise configuration:
- Tenant level: "New and existing guests"
- Require guests to authenticate (not anonymous links)
- Limit external sharing by domain (allowlist your partner domains)
- Set link expiration (30-60 days for "Anyone" links if enabled)
Link settings:
- Default link type: Specific people (not "Anyone")
- Default link permission: View (not Edit)
- Require sign-in for external recipients
Access Control Policies
Unmanaged devices: Block or limit access from devices not enrolled in Intune.
Options:
- Full access (any device)
- Limited, web-only access (no download/print)
- Block access entirely
Network location: Restrict access to specific IP ranges (office networks, VPN).
Idle session sign-out: Automatically sign out users after inactivity (configurable per browser policy).
Legacy authentication: Block to enforce modern authentication (MFA).
Sensitivity Labels
Configure Microsoft Purview sensitivity labels for:
- Automatic application to new sites based on site type
- Required labeling for all new sites (governance enforcement)
- Label inheritance from parent site to documents
Recommended label taxonomy:
- Public → Internal → Confidential → Highly Confidential
- Sub-labels for regulated data: PHI, PCI, CUI
---
Settings Section
SharePoint Settings (Classic and Modern)
Site creation settings:
- Who can create sites: Everyone / Selected people / Admins only
- Default site storage limit
- Default time zone for new sites
- Default site language
Pages settings:
- Allow users to create modern pages
- Allow comments on modern pages (or disable for compliance)
SharePoint notifications:
- Enable/disable email notifications for site activity
OneDrive Settings
- Default storage: 1TB standard, up to 5TB for qualified plans
- Sync settings: Block syncing on unmanaged devices
- Retention: How long to keep OneDrive after user account deletion (30-3650 days, default 30)
---
Content Services Section
Term Store (Managed Metadata)
The Term Store is the enterprise taxonomy engine for SharePoint:
Structure:
- Term groups → Term sets → Terms → (Child terms)
Common configurations:
- Department hierarchy (HR, Finance, IT, Legal)
- Document type taxonomy (Contract, Policy, Invoice, Report)
- Geographic hierarchy (North America → United States → Texas)
- Compliance taxonomy (Confidential, Restricted, Public)
Best practices:
- Assign Term Store Administrators from each business unit
- Create working copy sets for taxonomy development (don't edit live terms directly)
- Enable synonyms for user-friendly tagging
- Use SKOS import for large taxonomy migrations
Content Type Hub
Publish content types across all site collections from a central hub:
- Navigate to: Content services → Content type gallery
- Create content types with required columns, document templates
- Publish globally: Available to all SharePoint sites
- Sync to sites: Sites pull updates automatically
Common enterprise content types:
- Master Service Agreement (legal + metadata columns)
- HR Policy Document (approval workflow + retention label)
- Project Charter (mandatory metadata + template)
- Financial Report (sensitivity label + approval)
---
Reports Section
Usage Reports
Site usage: Active users, files viewed/edited, page visits by site.
Files activity: Across all SharePoint sites — useful for identifying most-used and least-used sites.
Storage usage: Track storage consumption trends to forecast needs.
Access Reviews (Microsoft Entra Integration)
Configure periodic access reviews for:
- Guest user access to SharePoint groups
- SharePoint site membership
- External sharing links
Integrate with Microsoft Entra ID Governance for automated review workflows.
---
Migration Tools Section
SharePoint Migration Tool (SPMT) Integration
The admin center integrates with SPMT for:
- File share migrations
- SharePoint 2010/2013/2016/2019 migrations
- Google Drive migrations (via partner tools)
Migration job tracking: Active migrations appear in the Migration section with status, errors, and item counts.
Migration Manager
The modern Migration Manager in the admin center supports:
- File shares: Map source paths to SharePoint/OneDrive destinations
- Google Workspace: Migrate Drive, Docs, Sheets, Slides
- Box: Enterprise Box migrations
- Dropbox: Business account migrations
---
Advanced Administration Tasks
Diagnosing Site Issues
SharePoint health checks:
- Check site activity to identify "zombie" sites
- Review storage trends for runaway growth
- Audit external sharing to identify over-sharing
- Review sensitivity label coverage gaps
Bulk Operations with PowerShell
Many admin center operations can be automated:
```powershell
# Connect to SharePoint Online
Connect-SPOService -Url "https://yourtenant-admin.sharepoint.com"
# Get all sites with external sharing enabled
Get-SPOSite -Filter {SharingCapability -ne "Disabled"} |
Select-Object Url, SharingCapability, StorageUsageCurrent
# Disable external sharing on all sites
Get-SPOSite | Set-SPOSite -SharingCapability Disabled
# Set storage quota for all sites
Get-SPOSite -IncludePersonalSite $false |
Set-SPOSite -StorageQuota 102400 # 100GB in MB
```
Site Templates and Site Designs
Create standardized site templates using Site Designs:
- Admin center → Settings → Site designs (or PnP PowerShell)
- Configure required columns, navigation, permissions
- Apply during site creation or to existing sites
---
SharePoint Admin Center Checklist
Weekly tasks:
- [ ] Review sites created in past 7 days — ensure proper owners assigned
- [ ] Check storage trends — no sites approaching quota
- [ ] Review external sharing activity — no unexpected guest access
- [ ] Check for orphaned sites (owner left company)
Monthly tasks:
- [ ] Run inactive sites report (no activity in 90+ days)
- [ ] Review and renew expiring guest access
- [ ] Audit sensitivity label coverage
- [ ] Review access to highly sensitive sites
Quarterly tasks:
- [ ] Conduct full external user access review
- [ ] Review and update sharing policies
- [ ] Storage capacity planning for next quarter
- [ ] Update site lifecycle policies
---
Common Admin Center Mistakes
1. Leaving tenant sharing at "Anyone" level
Creates anonymous link risk. Set to "New and existing guests" minimum.
2. Not setting site storage quotas
A single runaway site can consume your entire tenant storage pool.
3. No governance for site creation
Without policies, you accumulate hundreds of abandoned sites within 12 months.
4. Ignoring inactive sites
Sites with no activity for 180+ days should be reviewed for archival or deletion.
5. Not enabling sensitivity labels
Without labels, you have no visibility into where sensitive data resides.
---
Conclusion
The SharePoint Admin Center is the control plane for your entire Microsoft 365 collaboration environment. Mastering it—from sharing policies to storage management to content type governance—is what separates reactive administrators from proactive ones.
EPC Group's SharePoint administrators have managed 200+ tenant environments across all sizes. If you need help establishing admin governance, conducting a tenant health assessment, or training your admin team, contact us for a free SharePoint Assessment.
Written by Errin O'Connor
Founder, CEO & Chief AI Architect | Microsoft Press Bestselling Author | 25+ Years Microsoft Ecosystem
Errin O'Connor is a Microsoft Press bestselling author of 4 books covering SharePoint, Power BI, Azure, and large-scale migrations. He leads our SharePoint consulting practice with expertise spanning 500+ enterprise migrations and compliance implementations across HIPAA, SOC 2, and FedRAMP environments.
Expert SharePoint Services
Need Expert Help?
Our SharePoint consultants are ready to help you implement these strategies in your organization.