SharePoint spaces to be available by default in New menu
SharePoint spaces allows the creation and sharing of immersive or browser-based mixed reality environments using assets such as 3D models, 360° images and videos, and 2D content such as videos, images, and office documents. In October 2020 (MC224942), SharePoint spaces became generally available.
We are now including spaces in the site level +New menu by default.
Key points
- Microsoft 365 Roadmap ID 67135
- Timing:
- Targeted Release (organization): early February 2021
- Standard Release: mid-February through mid-April 2021
- Roll-out: tenant level
- Control type: admin control
- Action: review and assess by 2/19/2021
How this will affect your organization:
Users with appropriate permissions to create content on a site will see an additional entry for creating a Space in the +New menu on all SharePoint sites.
As with pages, SharePoint site owners will continue to have the option to turn off the spaces feature for their sites using the Manage Site Features page or using PowerShell cmdlets described below.
What you need to do to prepare
You should determine whether you want to maintain the current behavior (where site owners must enable SharePoint spaces at the site level before it will show in the +New menu) or have spaces show in the +New menu by default across your tenant.
- If you want to show the Space menu item on the +New menu by default across your tenant, you don’t need to do anything except notify site owners and authors of this change. You may also want to train users or provide them with documentation as well as notify your help desk.
- If you don’t want the Space menu item to show in the +New menu across your tenant by default, you’ll need to enable the tenant-level control by executing the following PowerShell command:
Set-SPODisableSpacesActivation -scope tenant -Disable $true
- You can reverse this action and re-enable the spaces entry in the +New menu by executing:
Set-SPODisableSpacesActivation -scope tenant -Disable $false
In addition to the tenant level control, you can also use PowerShell to enable or disable the spaces entry in the +New menu for individual sites.
- To disable the space entry in the +New menu on a specific site, use the following PowerShell command:
Set-SPODisableSpacesActivation -scope site -Disable $true -Identity $siteURL
- Reverse this action and re-enable the spaces entry in the +New menu on a site by executing:
Set-SPODisableSpacesActivation -scope site -Disable $false -Identity $siteURL
For both site-level commands, the variable $siteURL contains the URL to the specific SharePoint site where you want to enable or disable the +New menu entry.
Message ID: MC235288
January 26, 2021
I can see the Spaces feature is available in my site, but after enabling the feature it doesn’t show up the Spaces option in New Menu. Also the Powershell command is not recognized to activate.
February 1, 2021
Hello,
The roll out was not yet completed to all tenants so it might take some time for you to see it in your SharePoint tenant.
About the PowerShell cmdlet not being recognized, the new version of the SPO module was just released 3 days ago and is the only one that includes it.
You can see it here – https://www.powershellgallery.com/packages/Microsoft.Online.SharePoint.PowerShell/16.0.20912.12000
Hope it helps 🙂