Reputation: 4249
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.
Upvotes: 9
Views: 45492
Reputation: 41
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/
Upvotes: 4
Reputation: 37660
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)
Upvotes: 12
Reputation: 359
You can use Sharepoint Manager 2007 to find GUID via GUI Download here http://spm.codeplex.com/releases/view/22762
Upvotes: 0