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.
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.
-
- function getRequest(url) {
- var request = new XMLHttpRequest();
- return new Promise(function(resolve, reject) {
- request.onreadystatechange = function() {
- if (request.readyState !== 4) return;
- if (request.status >= 200 && request.status < 300) {
- resolve(request);
- } else {
- reject({
- status: request.status,
- statusText: request.statusText
- });
- }
- };
-
- request.open('GET', url, true);
- request.setRequestHeader("Content-Type", "application/json;charset=utf-8");
- request.setRequestHeader("ACCEPT", "application/json; odata.metadata=minimal");
- request.setRequestHeader("ODATA-VERSION", "4.0");
- request.send();
-
- });
- }
-
-
-
- var adminurls = "";
- getRequest("https://admin.microsoft.com/admin/api/navigation").then(function(output) {
- var response = JSON.parse(output.response);
- var adminconsoles = response.AdminConsoles[0].submenu;
- adminconsoles.forEach(function(admin) {
- adminurls += admin.text + " - " + admin.sref + "\r\n";
- });
- console.log(adminurls);
- });
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
|