Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to find Sharepoint Guid of a list

I am new to Sharepoint 2007 and I have done some google to find guid of a list which I want to use for outlook synchronization of my sharepoint project using stssync.

Can somebody please help me finding out guid of a list in sharepoint 2007.

Thanks in advance.

like image 230
codeomnitrix Avatar asked Oct 28 '13 08:10

codeomnitrix


2 Answers

The simplest way is to go the list settings.

The id of the list will be in the url.

For example:

https://someserver/sites/somesite/_layouts/15/listedit.aspx?List=%7B263FE49C%2D7FB3%2D4247%2D93CD%2D4AAB9770EF97%7D

Extract the list argument:

%7B263FE49C%2D7FB3%2D4247%2D93CD%2D4AAB9770EF97%7D

And then url decode it:

{263FE49C-7FB3-4247-93CD-4AAB9770EF97}

That's easy, and works with all version of SharePoint (actually, no SP2007 to test, but I'm confident)

like image 57
Steve B Avatar answered Nov 11 '22 12:11

Steve B


Tired of doing this in notepad, just paste URL into here:

List ID Calculator, View ID Calculator

http://www.surfpointtech.com/2013/10/14/sharepoint-list-id-and-view-id-calculator/

like image 36
user3574520 Avatar answered Nov 11 '22 10:11

user3574520