Forum Discussion
Site is not listed in site Collections
- Aug 01, 2017
Modern Team Sites, Communication sites, Groups, Teams connected sites etc created through the user interface is not visible in the SPO Admin center at the moment. You either have to use PowerShell to get all site collections or wait until end of this year for the new and improved SPO Admin center.
Modern Team Sites, Communication sites, Groups, Teams connected sites etc created through the user interface is not visible in the SPO Admin center at the moment. You either have to use PowerShell to get all site collections or wait until end of this year for the new and improved SPO Admin center.
- Leslie YauJan 19, 2018Copper Contributor
I am also having problem setting up the Sharepoint site that was automatically created by Teams.
Does anyone no where i can see how much storage we have left in the site? Also how can we set the share permission on these Sharepoint site.
Thanks.
- Andy5Jan 21, 2018Steel ContributorHi Leslie,
You need to run a PowerShell script for the time being or use a third party program.
The Powershell is:
#Login
$adminUPN="your admin account"
$orgName="your domain name"
$userCredential = Get-Credential -UserName $adminUPN -Message "Type the password."
Connect-SPOService -Url https://$orgName-admin.sharepoint.com -Credential $userCredential
# Get site details
Get-SPOSite –Identity https://yourdomain.sharepoint.com/sites/Mycoolteam -detailed |fl
Permissions can be set as per normal site.- Leslie YauJan 21, 2018Copper Contributor
Hi Andrew,
Thanks for the instructions.
I have got it to work now but just wondering when we can see the Sharepoint site that are auto created when creating team will show up on the Sharepoint admin console so that we can monitor how much storage spaces we have left.