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.
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)