Find site URL from SharePoint GUID

guidsharepointurl

I am analyzing ADFS logs, which reference the SharePoint webs visited (via the wcontext parameter) but do so via their GUID.

How do I translate a SharePoint site/web GUID into a URL?

Best Answer

There is no direct correlation between a GUID and a URL.

If you are looking for this information from a code-behind, you could get the SPWeb object from the GUID, and poll the .URL property from there.

~ED