Skip to main content

SharePoint URLs to navigate quickly

At some point you want to navigate to other page on SharePoint like Site setting page or Site content page but you forgot the navigation path or you want to navigate quickly at that time these URLs will be very useful. You can navigate to particular page using these URLs without navigating through site.
Change the tenant name and appropriate site URL and paste the it into address bar. These are some useful url's for SharePoint.

You can navigate in SharePoint without using site navigation but for this you must have required permission otherwise you will get “Access denied”.

Some useful URL's for Microsoft Office 365/SharePoint  Users.

Useful url's to navigate under the Microsoft 365 admin center (For this Admin Access is required):

1. URL to check all the active users on sharepoint site. You can have option to add users, to delete users, to imply multi factor authentication etc.

https://admin.microsoft.com/Adminportal/Home?source=applauncher#/users

2. URL to check all the contacts on tenant.

https://admin.microsoft.com/Adminportal/Home?source=applauncher#/Contact

3. URL to check all the guest users on tenant.

https://admin.microsoft.com/Adminportal/Home?source=applauncher#/GuestUsers

4. URL to check all the deleted users from tenant.

https://admin.microsoft.com/Adminportal/Home?source=applauncher#/deletedusers

Useful url's to navigate under the SharePoint admin center (For this SharePoint Admin Access is required):

1. To access the More feature page under the SharePoint Admin Center, use the URL mentioned below. You can access the User Profile, Search, Term and SharePoint classic features also.

https://Yourtenant -admin.sharepoint.com/_layouts/online/AdminHome.aspx#/classicFeatures

2. URL To access the SharePoint admin center :

https://YourtenantName-admin.sharepoint.com/_layouts/online/AdminHome.aspx#/home                                  

3. URL for tenant admin apps page, from this page you will get option to create app catalog and you can also manage app permission etc.

https://YourtenantName-admin.sharepoint.com /_layouts/15/online/TenantAdminApps.aspx 


Useful url's to navigate under SharePoint Site:  

1. If you want to enable the sharepoint designer on particular site use this URL:        
https://YourSiteUrl/_layouts/SharePointDesignerSettings.aspx

2Save site as template:

Save site as template page. In modern SharePoint site this feature is by default disable by running Power Shell script or by enabling scripting you can avail this feature. Sometime save site as template feature is not appear on communication site although you have enabled the script. So, in that case you need to redirect at save site as template by URL.
          
 https:// YourSiteUrl/_layouts/savetmpl.aspx

3Use URL mentioned below to access workflow page. From this page you can check all the available workflows on site.

https://YourSiteUrl/_layouts/workflow.aspx

4. Use URL mentioned below to access Add an app page. From this page you can add app from your organization or from office store

https://YourSiteUrl/_layouts/addanapp.aspx

5. To access the Site settings .

https://YourSiteUrl/_layouts/settings.aspx

6. To access the Site permission page. use URL mentioned below, on site permission page you can check the permission of user, grant the permission

https://YourSiteUrl/_layouts/user.aspx

7. To access the People and Group on site.

https://YourSiteUrl/_layouts/people.aspx

8. Access the recycle Bin :

https://YourSiteUrl/_layouts/RecycleBin.aspx

9. To access the admin recycle bin this url and you can get link for second stage recycle bin from the page. second-stage recycle bin (Site collection administrator permission require to view second stage recycle bin).

https://YourSiteUrl/_layouts/AdminRecycleBin.aspx

10. To access the manage site collection admin page, use URL mentioned below. From this page you can manage site collection admins. You can add new or check who have site collection admin permission at present.

https://YourSiteUrl/_layouts/mngsiteadmin.aspx

11. URLs related to registering app in SharePoint and giving permission to app:

  • To register an app in SharePoint, use URL  mentioned below.
           https://YourSiteUrl/_layouts/appregnew.aspx

  • To grant permission to app in SharePoint, use URL  mentioned below.
           https://YourSiteUrl/_layouts/appinv.aspx

  • To check Site App permission, use URL  mentioned below. You can check all the app which registered on the site.
          https://YourSiteUrl/_layouts/appprincipals.aspx

12. If you want to login from another user :

https://YourSiteUrl/_layouts/closeConnection.aspx?loginasanotheruser=true      

Comments

Popular posts from this blog

SPFx Interview Questions With Answers

In this article, we are going to discuss interview questions related to the SPFx (SharePoint Framework Development ). It will help you to prepare for the interview and in getting clarity on the core concepts of SPFx development. What is SPFx? SPFx, short for SharePoint Framework,  SPFx  allows us for client-side SharePoint development, we can easily connect with SharePoint data and it also supports for open source tools. What is the major difference between SPFx web part and the SharePoint app? Both the development model supports client-side development but the major difference between these two is that the SharePoint app(add-in) runs on the iframe. What you can build with SPFx? Using SPFx framework we can customize the SharePoint pages. We can build things mentioned below using the SharePoint Framework(SPFx). Web parts, Extensions, Adaptive Card, Library Component How many types of extensions we can create using SPFx? SPFx has three extension types: Application Customizers: U...

How to register an app in SharePoint

In this article, we are going to learn how to register an app/add-in in SharePoint online. If you have created a Sharepoint provider-hosted add-in or other SharePoint solution and to access the SharePoint site or list using the app/add-in you need to register the add-in on SharePoint and to grant permission. Register app in SharePoint 1. Login into SharePoint and Navigate to register an app page. Use the URL mentioned below:          [Sitecollection URL]/_layouts/15/appregnew.aspx 2.  Once you navigate to the Register app page, a form will open. You need to fill all the fields on the form. Client Id and Client Secret  generated when we click on the generate button available next to the fields.  Title : Name of the add-in which you want to give. App Domain : Where your domain is hosted, for the local environment you can place             "www.localhost.com". Do not include HTTP or HTTPS...

SharePoint Framework SPFx Node Version Compatibility

How to check the compatibility between the SPFx version and the Node.js version The SharePoint Framework (SPFx) is a client-side development platform used to develop web parts and extensions for SharePoint. The SharePoint Framework (SPFx) is compatible with the Node.js versions. Existing SPFx solutions may have different SPFx versions as compared to the current solutions. To make the SPFx solution run, Node.js is required, and in this blog, I am sharing steps to check the compatible node module for SPFx.  Find the SPFx version from the solution:  Open the project solution and navigate to the "package.json" file. In package.json file you will find  "@microsoft/sp-core-library" key and value of this particular key is the version of the SPFx.       Ex:    "@microsoft/sp-core-library": "1.14.0" Another way to find the SPFx version is by command, open the command prompt and run the command mentioned below: npm ls -g --depth=0 @microsoft/generator-s...