Administration

SharePoint Admin Center: Complete Administration Guide

Master the SharePoint Admin Center with this comprehensive guide covering site management, policies, settings, and monitoring capabilities for tenant administrators.

SharePoint Support TeamDecember 8, 202417 min read
SharePoint Admin Center: Complete Administration Guide - Administration guide by SharePoint Support
SharePoint Admin Center: Complete Administration Guide - Expert Administration guidance from SharePoint Support

The Administrative Hub

The SharePoint Admin Center is your command center for managing SharePoint Online across your organization. From creating sites to configuring policies, monitoring usage to managing migrations, the admin center provides the tools needed for effective governance.

SharePoint migration process workflow from planning to go-live
Step-by-step SharePoint migration workflow

Accessing the Admin Center

Getting There

Access Methods

  • Direct: admin.microsoft.com/sharepoint
  • From M365 Admin Center: Admin Centers > SharePoint
  • From SharePoint: Settings gear > SharePoint admin center

Required Permissions

  • Global Administrator
  • SharePoint Administrator
  • Global Reader (view only)

Admin Center Overview

Main Navigation

```

SharePoint Admin Center

├── Home (dashboard)

├── Sites

│ ├── Active sites

│ └── Deleted sites

├── Policies

│ ├── Sharing

│ ├── Access control

│ └── Site creation

├── Settings

├── Migration

├── Reports

└── More features

```

Site Management

Active Sites

Site List View

  • All sites in tenant
  • Storage used
  • Last activity
  • Template type
  • Hub association

Filtering Options

  • Site template (Team, Communication, etc.)
  • Hub association
  • External sharing status
  • Storage quota status
  • Compliance labels

Bulk Operations

  • Select multiple sites
  • Change sharing settings
  • Update storage quotas
  • Add to hub
  • Delete

Creating Sites

Admin-Created Sites

  • Active sites > Create
  • Choose template
  • Configure settings:
  • Name and URL
  • Primary admin
  • Language
  • Time zone
  • Storage limit
  • Create

Site Creation Settings

  • Who can create sites
  • Default storage limits
  • Default sharing settings
  • Naming conventions (with policy)

Site Properties

Information Tab

  • Site name and URL
  • Primary admin
  • Storage used/limit
  • External sharing
  • Hub association

Permissions Tab

  • Site admins
  • M365 Group owners (if applicable)
  • Add/remove administrators

Settings Tab

  • Storage quota
  • Lock state
  • Read-only status
  • Conditional access

Deleted Sites

Recycle Bin

  • Sites retained 93 days
  • Restore available
  • Permanent delete option
  • Storage still counts until permanent deletion

Restoring Sites

  • Deleted sites
  • Select site
  • Click Restore
  • Confirm URL (or specify new)

Sharing Policies

External Sharing Levels

Sharing Spectrum

```

Most Permissive ←────────────────→ Most Restrictive

Anyone Existing New and Only people

(anonymous) guests existing in org

guests

```

Organization-Level Setting

  • Sets maximum for all sites
  • Sites can be more restrictive
  • Sites cannot exceed org setting

Site-Level Settings

  • Can be set lower than org
  • Inherits org setting by default
  • Override for specific needs

Configuring Sharing

Organization Settings

  • Policies > Sharing
  • Set external sharing slider
  • Configure advanced settings:
  • Guest link expiration
  • File/folder sharing defaults
  • People picker search scope

Site-Specific Settings

  • Active sites
  • Select site
  • Sharing tab
  • Adjust sharing level

Advanced Sharing Settings

Guest Expiration

  • Set default expiration for guests
  • Force re-authentication
  • Automatic access review

Link Settings

  • Default link type
  • Default permissions (view/edit)
  • Link expiration defaults

Domain Restrictions

  • Allow specific domains only
  • Block specific domains
  • Per-site or organization-wide

Access Control

Unmanaged Devices

Policy Options

  • Allow full access
  • Allow limited web-only access
  • Block access completely

Configuration

  • Policies > Access control
  • Unmanaged devices
  • Select policy level
  • Apply

Network Location

IP-Based Restrictions

  • Define trusted locations
  • Require managed network for access
  • Block specific IP ranges

Configuration

  • Access control
  • Network location
  • Define IP ranges
  • Set policy

Idle Session Sign-Out

Automatic Sign-Out

  • Sign out after inactivity
  • Configurable timeout
  • Applies to web browser

Apps That Don't Use Modern Auth

Legacy App Control

  • Block apps using legacy authentication
  • Force modern auth
  • Gradual enforcement recommended

Settings Configuration

Site Creation

Self-Service Settings

  • Enable/disable user site creation
  • Default site type
  • Default time zone
  • Storage quotas

Site Design Association

  • Default designs for sites
  • Custom site designs
  • Mandatory vs. optional

Default Admin Experience

Modern vs. Classic

  • Set default for new admins
  • Site collection admin page
  • Individual preference override

Home Site

Configuring Home Site

  • Settings > Home site
  • Select communication site
  • Enable as home site
  • Appears at root URL

Home Site Benefits

  • Organization landing page
  • Viva Connections anchor
  • Global navigation hub

SharePoint Start Page

Customization

  • Featured links
  • Organizational news
  • Sites suggestions

Content Services

Term Store

Accessing Term Store

Content services > Term store

Management Tasks

  • Create term groups
  • Define term sets
  • Manage terms
  • Set permissions

Content Type Gallery

Managing Content Types

  • View published types
  • Sync status
  • Hub configuration

Syntex (if licensed)

AI Services

  • Document understanding models
  • Form processing
  • Content assembly

Migration Center

Migration Tools

SharePoint Migration Tool

  • File share migrations
  • SharePoint Server migrations
  • Download and configure

Migration Manager

  • Cloud-based migrations
  • Agent deployment
  • Scan and migrate workflow

Mover

  • Cloud-to-cloud migrations
  • Box, Google, Dropbox
  • Acquired tool integration

Migration Workflow

Typical Process

  • Assess source content
  • Plan migration waves
  • Configure destination
  • Run migration
  • Validate results
  • Iterate as needed

Reports and Analytics

Usage Reports

Available Reports

  • Site usage
  • File activity
  • User activity
  • Sharing activity
  • Storage usage

Report Details

  • Time period selection
  • Export to CSV
  • Trend visualization
  • Drill-down capabilities

Admin Reports

Activity Reports

  • Reports > Usage
  • Select report type
  • Configure time range
  • View or export

Common Metrics

  • Active sites
  • Active users
  • Files viewed/edited
  • Pages viewed
  • Sharing events

PowerShell Administration

When to Use PowerShell

PowerShell Advantages

  • Bulk operations
  • Automation
  • Scripting complex tasks
  • Operations not in UI

Common Commands

Connect to SharePoint Online

```powershell

# Using SharePoint Online Management Shell

Connect-SPOService -Url https://contoso-admin.sharepoint.com

# Using PnP PowerShell

Connect-PnPOnline -Url https://contoso.sharepoint.com -Interactive

```

Site Management

```powershell

# Get all sites

Get-SPOSite -Limit All

# Create site

New-SPOSite -Url https://contoso.sharepoint.com/sites/newsite -Owner [email protected] -StorageQuota 1000 -Template "STS#3"

# Set sharing

Set-SPOSite -Identity https://contoso.sharepoint.com/sites/sales -SharingCapability ExternalUserSharingOnly

```

User Management

```powershell

# Add site admin

Set-SPOUser -Site https://contoso.sharepoint.com/sites/hr -LoginName [email protected] -IsSiteCollectionAdmin $true

# Get site admins

Get-SPOUser -Site https://contoso.sharepoint.com/sites/hr -Limit All | Where-Object {$_.IsSiteAdmin -eq $true}

```

Best Practices

Regular Administration Tasks

Daily

  • Check service health
  • Review security alerts
  • Monitor storage alerts

Weekly

  • Review usage reports
  • Check deletion queue
  • Audit external sharing

Monthly

  • Review site creation
  • Storage optimization
  • Policy compliance check

Quarterly

  • Access reviews
  • Policy updates
  • Governance assessment

Security Recommendations

Essential Settings

  • Limit external sharing appropriately
  • Enable idle session sign-out
  • Block legacy authentication
  • Configure conditional access
  • Regular permission audits

Performance Optimization

Storage Management

  • Monitor site storage
  • Identify large sites
  • Archive inactive content
  • Version limit settings

User Experience

  • Enable CDN
  • Optimize site performance
  • Monitor page load times

Conclusion

The SharePoint Admin Center provides comprehensive tools for managing your organization's SharePoint environment. By understanding its capabilities, implementing proper policies, and following governance best practices, administrators can ensure a secure, well-managed collaboration platform.

Ready to optimize your SharePoint administration? Contact our specialists for governance consulting and admin training services.

Share this article:

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.

Need Expert Help?

Our SharePoint consultants are ready to help you implement these strategies in your organization.