Microsoft 365 Admin Centers

Microsoft 365 is embedded with different Microsoft services across the cloud to ease integration and helps to increase the productivity of the organization.
 
So here, we are going to see the list of Admin URLs of each service associated with the Microsoft 365. All admin centers of Microsoft 365 can be viewable here.
 
Microsoft 365 Admin centers
 
I’ll show you a simple trick in the browser console to get the list of all Urls.
  • Navigate to the Microsoft 365 Admin center and open the browser console by pressing F12.
  • Then paste the below code in the console to get the list of Admin Center URLs. 
  1. // XMLHttpRequest to process get requests  
  2. function getRequest(url) {  
  3.     var request = new XMLHttpRequest();  
  4.     return new Promise(function(resolve, reject) {  
  5.         request.onreadystatechange = function() {  
  6.             if (request.readyState !== 4) return;  
  7.             if (request.status >= 200 && request.status < 300) {  
  8.                 resolve(request);  
  9.             } else {  
  10.                 reject({  
  11.                     status: request.status,  
  12.                     statusText: request.statusText  
  13.                 });  
  14.             }  
  15.         };  
  16.   
  17.         request.open('GET', url, true);  
  18.         request.setRequestHeader("Content-Type""application/json;charset=utf-8");  
  19.         request.setRequestHeader("ACCEPT""application/json; odata.metadata=minimal");  
  20.         request.setRequestHeader("ODATA-VERSION""4.0");  
  21.         request.send();  
  22.   
  23.     });  
  24. }  
  25.   
  26. // Fetchs the values from Admin center Rest API https://admin.microsoft.com/admin/api/navigation and  
  27. // Returns the Admin Center URls  
  28. var adminurls = "";  
  29. getRequest("https://admin.microsoft.com/admin/api/navigation").then(function(output) {  
  30.     var response = JSON.parse(output.response);  
  31.     var adminconsoles = response.AdminConsoles[0].submenu;  
  32.     adminconsoles.forEach(function(admin) {  
  33.         adminurls += admin.text + " - " + admin.sref + "\r\n";  
  34.     });  
  35.     console.log(adminurls);  
  36. });  
List of URLs are displayed in the console window and based on the output, below is the list of each service & respective Portal URLS,
 
Service Name
Admin URL
Security
https://security.microsoft.com?rfr=AdminCenter
Compliance
https://compliance.microsoft.com?rfr=AdminCenter
Azure Active Directory
https://aad.portal.azure.com/<tenanturl>.onmicrosoft.com
Exchange
https://outlook.office365.com/ecp/?rfr=Admin_o365&exsvurl=1&mkt=en-GB&Realm=<tenanturl>.onmicrosoft.com
SharePoint
https://<tenanturl>-admin.sharepoint.com/
Teams
https://go.microsoft.com/fwlink/?linkid=867439
OneDrive
https://admin.onedrive.com/
Dynamics 365
https://admin.powerplatform.microsoft.com/environments
Power BI
https://app.powerbi.com/admin-portal?language=en-GB
Power Apps
https://admin.powerplatform.microsoft.com/?l=en-GB
Power Automate
https://admin.powerplatform.microsoft.com/?l=en-GB
Stream
https://web.microsoftstream.com/admin/
Office configuration
https://config.office.com/officeSettings
Search & intelligence
https://admin.microsoft.com/Adminportal/#/MicrosoftSearch
All admin centers
https://admin.microsoft.com/Adminportal/#/alladmincenters