9

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.

codeomnitrix
  • 4,179
  • 19
  • 66
  • 102

3 Answers3

12

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)

Steve B
  • 36,818
  • 21
  • 101
  • 174
  • HI Steve, Thanks for the answer but the issue is I have the url in this format - `https://someserver/sites/somesite/` I am not sure how can i navigate to layouts or listedit page. – codeomnitrix Oct 28 '13 at 10:49
  • 1
    As I said in my answer, go to the list settings. – Steve B Oct 28 '13 at 11:42
4

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/

0

You can use Sharepoint Manager 2007 to find GUID via GUI Download here http://spm.codeplex.com/releases/view/22762

Birger
  • 349
  • 1
  • 4
  • 18