Skip to main content

SharePoint Spaces is Being Deprecated – What to Do Next

SharePoint Spaces is Being Deprecated – What to Do Next

Microsoft has officially announced that SharePoint Spaces will be deprecated starting in March 2025, with full support ending by August 2025. If you're currently using Spaces or were planning to explore it, it's a good time to consider your alternatives.

What is Happening?

SharePoint Spaces was a tool for creating immersive 3D environments inside SharePoint—great for things like virtual tours or rich visual storytelling. But now, Microsoft is shifting its focus to Microsoft Mesh, a more advanced platform designed for mixed reality collaboration.

Mesh vs. SharePoint Spaces vs. SharePoint Pages

Here’s a basic comparison to understand where things stand:

Feature Microsoft Mesh SharePoint Spaces SharePoint Pages
Create immersive 3D spaces Yes Yes No
Host real-time collaborative events Yes No No
Publish content for on-demand viewing No Yes Yes

What You Can Do Now

Depending on how you're using Spaces, here are a few practical next steps:

  • Consider moving to Microsoft Mesh for future immersive environments and events.
  • Convert Spaces content into regular SharePoint pages with embedded images, videos, and links.
  • Use document libraries for storing and previewing 360° images and videos.

How to Find Existing SharePoint Spaces Content

To see if you're using Spaces, you can try these steps:

  1. Search your SharePoint root site for SPContentType:Space.
  2. In your Pages library, show the Content Type column and look for type Space.

Use PowerShell to Scan for SharePoint Spaces

If you want to automate this, here’s a script using PnP PowerShell:

$entraAppClientID = "[Your App ID]"
$featureGuid = "f4c52091-703d-431c-ac2d-41f9f257052a"
$adminUrl = "https://[YourTenant].sharepoint.com"

$connection = Connect-PnPOnline -Url $adminUrl -Interactive -ClientId $entraAppClientID -ReturnConnection
$sites = Get-PnPTenantSite -Detailed -Connection $connection
$results = @()

foreach ($site in $sites) {
    Connect-PnPOnline -Url $site.Url -Interactive -ClientId $entraAppClientID -Connection $connection
    $feature = Get-PnPFeature -Identity $featureGuid -Scope Site

    if ($feature.DefinitionId -eq $featureGuid) {
        $pagesLibrary = Get-PnPList -Identity "SitePages"
        $spacePages = Get-PnPListItem -List $pagesLibrary | Where-Object {
            $_.FieldValues.MetaInfo -match 'ContentTypeId:SW|0x0101009D...'
        }

        $results += [PSCustomObject]@{
            SiteUrl = $site.Url
            TotalSpaces = $spacePages.Count
        }
    }
}

$results | Format-Table -AutoSize
  

Disabling the SharePoint Spaces Feature

If you want to prevent users from creating new Spaces moving forward, you can disable the feature like this:

$featureGuid = "2AC9C540-6DB4-4155-892C-3273957F1926"
Connect-PnPOnline -Url [Insert Site URL] -Interactive -ClientId $entraAppClientID -Connection $connection
Disable-PnPFeature -Scope Web -Identity $featureGuid -Force
  

Final Thoughts

This deprecation is a good reminder to always keep tabs on feature lifecycles. If you've been actively using SharePoint Spaces, now's the time to explore your options and begin the transition. If you’ve never used it, you can likely move on without any issues—but it’s worth running a scan just to be sure.

Personally, I think Mesh has a lot of potential—especially for collaborative events and internal training scenarios. That said, not every use case needs full 3D immersion. Sometimes a well-designed SharePoint page is more than enough.

Hope this guide helps others going through the same cleanup and transition planning. Let me know how your migration goes!


Tags: #SharePoint #SharePointSpaces #MicrosoftMesh #PowerShell #PnP #Microsoft365 #ImmersiveTech #ModernWorkplace #MixedReality #TechMigration

Comments

Popular posts from this blog

Business Data Connectivity

I came to a requirement wherein I was supposed to get data from an 3 rd party portal using API’s and then bring them to SharePoint server. The first approach that I finalized was just to make BDC solution that will get data from 3 rd party portal and will deploy it to SharePoint. How to Create BDC solution in SharePoint? I found below link that is having really great description about hot to create and deploy the BDC solution to SharePoint. http://www.c-sharpcorner.com/uploadfile/hung123/creating-business-data-connectivity-service-using-visual-studio-2010/ After creating an POC I came to know that BDC model cannot be deployed on Multi tenant farm. So what can be done next? After some amount of googling I came to know that we can create BDC solution using WCF services also. So I created a WCF service solution that acted as a wrapper that used to fetch data from the portal. We can them publish that service to IIS or Server and use the servic...

Identity client runtime library (IDCRL) did not get a response from the login server.

Recently I was doing some testing with a background PowerShell and encountered a weird error. “Identity client runtime library (IDCRL) did not get a response from the login server”. The error that you might encounter while working with PowerShell. This error is very misleading when it comes to identifying what could go wrong. After doing quite a good amount of research below are the probable causes for the error. Invalid Credentials MFA (Multi-Factor Authentication) Manage security defaults. Solutions Invalid Credentials Check if your credentials are wrong. Especially if you are using variables. MFA (Multi-Factor Authentication) Check if MFA is enabled on the account which you are using. These only affect you badly if you are developing PowerShell for a background Job. Go to Microsoft 365 admin center Users -> Active users -> Select the user -> Manage multifactor authentication -> Select the user -> Disable multi-factor authentication. M...

OneDrive Sharing Report: A Comprehensive Guide

OneDrive Sharing Report Managing and monitoring the sharing permissions of files stored in OneDrive can be a critical task for organizations. This guide provides a step-by-step walkthrough of how to create an Azure AD application with specific permissions, generate a client secret, and use a PowerShell script to retrieve and report the sharing permissions of OneDrive files. By following these steps, you will be able to audit and control file sharing across your organization, ensuring security and compliance. Step 1: Creating an Azure AD Application To get started, you'll need to create an Azure AD application that will allow you to interact with the Microsoft Graph API and retrieve information about users' OneDrive files and sharing settings. Specifically, you need to set the following permissions: Directory.Read.All Directory.ReadWrite.All Files.Read.All ...