Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Accessing hidden SharePoint list

Currently I have a few lists in my SharePoint site that has been hidden from the user (via the hidden property which was set programmatically). I was wondering whether there are any special urls/web or ways to access those lists? e.g. {site}/lists/hiddenList or something similar?

Thanks.

like image 703
BeraCim Avatar asked Jun 01 '10 02:06

BeraCim


People also ask

Can SharePoint list be hidden?

You can also hide a SharePoint Online list or document library by setting its permissions so that only specific users have access to it. Go to the List or Library settings page >> Click on the Permissions for this list link. Click on the 'Stop Inheriting Permissions' button.

How do I delete a hidden list in SharePoint?

Go to the list that you want to delete. Select the List tab, and then select List Settings. On the List Settings page, select Delete this list, and then select OK.


1 Answers

The URL for a Hidden list is no different than any other list, no hoops to jump through. You just need to know the base URL.

If it is not a Document Library, it will be located at {siteurl}/Lists/{listname}/AllItems.aspx. If it is a Document Library, it will be located at {siteurl}/{listname}/Forms/AllItems.aspx. These would give you the default list view assuming it is still called AllItems.aspx.

like image 118
Grace Note Avatar answered Sep 26 '22 00:09

Grace Note