In this PowerShell SharePoint tutorial, we will discuss how to solve the error, Connect-SPOService : Current site is not a tenant administration site. Recently, I was working with PowerShell SharePoint and trying to connect to SharePoint online site from SharePoint online management shell, but I got an error which says: Connect-SPOService: Current site is not a tenant administration site.
We were providing the credentials of my Office 365 account but still, It was giving the error. And the Office 365 account which we were using is an Office 365 tenant administrator account. So there were no issues regarding permission. But still, current site is not a tenant administration site error was coming.
If you are new to SharePoint Online management shell, read How to connect to SharePoint online site using SharePoint Online Management Shell?
Below is the SharePoint online management shell command:
Connect-SPOService -Url https://onlysharepoint2013.sharepoint.com/ -credential [email protected]
Then I got the below error.
Connect-SPOService : Current site is not a tenant administration site.
At line:1 char:1
+ Connect-SPOService -Url
https://onlysharepoint2013.sharepoint.com/sites/SPTraini …
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Connect-SPOService], ServerException
+ FullyQualifiedErrorId : Microsoft.SharePoint.Client.ServerException,Microsoft.Online.SharePoint.PowerShell.ConnectSPOService
The error looks like below:
Connect-SPOService : Current site is not a tenant administration site
To connect to the SharePoint Online site using PowerShell, we need to provide the Sharepoint Online Administration Center site URL. The SharePoint online admin center site URL will be like below:
https://<your tenant id>-admin.sharepoint.com/
Example:
https://onlysharepoint2013-admin.sharepoint.com/
Whenever you will sign up for an Office 365 trial, the Office 365 SharePoint admin site will be created automatically. So the PowerShell command will be like below:
Connect-SPOService -Url https://onlysharepoint2013-admin.sharepoint.com/ -credential [email protected]
Now when you will run the above command the error will not come. You will not receive any error related to Connect-SPOService Current site is not a tenant administration site.
You may also like following SharePoint Online PowerShell tutorials:
- Getting Started with PnP PowerShell – SharePoint 2013/2016/SharePoint Online
- Excel at SharePoint Online Management Shell
- Bulk SharePoint Online Site Collection Creation using PowerShell
- Create Subsite using PowerShell in SharePoint Online
- Steps to add items from CSV file to SharePoint Online List using PowerShell in CSOM
- Bulk SharePoint Online Site Collection Creation using PowerShell
- Create Site Collection and Subsite in SharePoint Online using PowerShell
- Get SharePoint Online Site and List Templates using PowerShell
Hope this will be helpful to solve an error Connect-SPOService : Current site is not a tenant administration site in SharePoint Online Office 365.
I am Bijay from Odisha, India. Currently working in my own venture TSInfo Technologies in Bangalore, India. I am Microsoft Office Servers and Services (SharePoint) MVP (5 times). I works in SharePoint 2016/2013/2010, SharePoint Online Office 365 etc. Check out My MVP Profile.. I also run popular SharePoint web site SPGuides.com
Nice one 💪
Thanks
If its a PnP use
Connect-PnPOnline -Url https://tenant.sharepoint.com -Credential [email protected]
Thanks
Thanks -will try your suggestion.