Tuesday, December 24, 2013

Finding SharePoint page is in edit mode using javascript

Recently in my project I got a requirement where I have to switch views of web parts based on the page mode (browsing mode and edit mode). When user is in edit mode I have to show some styles which will give option to user to add the data easily, but when user save the changes and publish the page, the styles will go away and they see normal page. So, I have to identify whether the page is in Edit mode or Browse mode in javascript.

I have a set of styles already written and based on the page mode I need to add those styles to some divisions on html. To find the edit mode of the page using javascript we have to use below logic:
var IsPageInEditMode = 
document.forms[MSOWebPartPageFormName].MSOLayout_InDesignMode.value; 
if (IsPageInEditMode == "1") { 
    alert("web part page is in edit mode."); 
} 
else { 
    alert("web part page is in browse mode."); 
}
But, this is not it all. To make it a common solution we must do more. :) The above logic works only for the Publishing pages. Which means if you have team pages (/sitepages/) or wiki pages then the above solution fails to return the correct value. For this, we should use below logic.
var IsPageInEditMode = document.forms[MSOWebPartPageFormName]._wikiPageMode.value; 
if (IsPageInEditMode == "Edit") { 
   alert("wiki page is in edit mode"); 
} 
else { 
   alert("wiki page is not in edit mode"); 
}
These SharePoint hidden variables are handy most of the times. Let's take a closer look at how we did it.
SharePoint uses the form variable for all its operations. This is a global variable added by SharePoint Framework to javascript. See the below image:

If you see the above image, there are many variables available for you in javascript. The first one is what we have used to get the form name. And the same way, we have many hidden variables available in javascript. These all can be visible by doing "View Source" on your browser. :)


From one of my friend, I got to know that in SharePoint 2010, 2013 we have a method available to get the Page State.
var IsPageInEditMode = SP.Ribbon.PageState.Handlers.isInEditMode();
That's all for now. Enjoy the new findings. I know it's old finding but learning is always fun!

Importing Excel Data to SharePoint

Recently for my company I have implemented a nice tool for importing data to SharePoint. The initial implementation started with Importing Excel Data to SharePoint List. Few years back me and my colleague implemented the same solution for 32 and 64 bit SharPoint 2007 servers. But, this new tool is targeted for SharePoint 2010, SharePoint 2013 and SharePoint Online. For more details visit the company blog. And also take a look at the codeplex project.

Its officially moved to my company utilities page. Please get it here.

Wednesday, September 11, 2013

API Tutorial for Office

I am so excited about the Microsoft new announcements and their implementation approaches going forward. Just got to know today the great implementation "Javascript API for Office". Isn't it exciting to read? It's the new way to work with Office online. The tutorial app will provide us 6 examples on how we can use the Javascript API for Office. You can use "Napa for Office 365 Development Tool" to open the app files to write code.

To run the tutorial online you must be using IE 9, Safari 5.0.6, Firefox 5, Chrome 13 or later versions of these browsers.

API Tutorial for Office
http://msdn.microsoft.com/en-us/office/apps/fp161510
http://blogs.msdn.com/b/officeapps/archive/2013/09/11/learn-how-to-write-apps-for-office-code-interactively-with-the-api-tutorial-for-office.aspx

Monday, September 9, 2013

Download Visual Studio 2013 RC and Windows 8.1 RTM

It's great day to start with new releases. If you didn't try VS 2013 yet then it's the right time to try it out as it improves the productivity by >30%. Windows 8.1 RTM is ready to download via MSDN or Technet subscriptions.

Read more complete article at: http://blogs.msdn.com/b/somasegar/archive/2013/09/09/announcing-the-visual-studio-2013-release-candidate.aspx

Saturday, September 7, 2013

SharePoint Conference 2012 Sessions free streaming

If you missed the SP Conference 2012 keynotes and the sessions then it's a good news for you that more than 100 videos are available for you free here. Enjoy the videos and learn SharePoint for better applications.

SharePoint Conference 2012 Sessions

Friday, September 6, 2013

SharePoint Online improvements

Office 365 is going to be better and better. As many people are started using Office 365 I see Microsoft is planning to invest more on this domain. Lets see what they have improved. Below improvements are not applicable to Office 365 dedicated subscribers.

  1. The complete Office 365 environment for all users are updated to SharePoint 2013.
  2. Skydrive Pro will solve many problems regarding storage for Online users. Now, its been increased from 7GB to 25GB. This is free. 
  3. The improvements which are rolling out in coming weeks are:
    • Now SharePoint Online supports many file types: This is one of the great features I like. They extended the support for broad range of file types including .EXE and .DLL.
    • File upload limit increased: Now, users can upload files up to 2 GB size. Earlier it was just 250 MB limitation.   
    • Number of site collections: With latest improvements a tenant can create 10000 site collections. Earlier it was limited to 3000. 
    • Improvements to Look up fields: Each list can support 12 lookup fields. 
    • Self-restoration: Increasing recycle bin retention duration (now it is 90 days, earlier it was just 30 days) and versioning is turning on by default for the Skydrive Pro libraries.
    • IE 10 now supports opening Explorer view. Yes, it is back...
  4. Other than these there are many improvements. 
Below are the reference links to get more details. These are really important points to know before you planning to migrate to Office 365/SharePoint Online.

Links:

Monday, July 29, 2013

SharePoint 2013 tutorials and e-books free download

This is the important collection of e-books I have studied to understand the new concepts of SharePoint 2013. I believe they will be very useful to all my readers as well. Enjoy all the collection of books and leave me comment if you find any e-book which is good for learning easy SharePoint 2013 and all it's new concepts. Good luck.

  1. SharePoint 2013 for Dummies
  2. Beginning SharePoint 2013
  3. Beginning SharePoint 2013 Development
  4. Professional SharePoint 2013 Development
  5. Explore SharePoint 2013 (What's new in SharePoint 2013) 
  6. Deployment guide for SharePoint 2013
  7. SharePoint 2013 Technical Library in Compiled Help
  8. No code solutions using SharePoint 2013 Composites
  9. SharePoint 2010 Vs SharePoint 2013 Feature Comparision for Business Users 
  10. Software boundaries and limits for SharePoint 2013 (For architecture)
I hope you get time to read all these to gain plenty of knowledge on SharePoint 2013 and keep rocking!

Wednesday, July 24, 2013

Download Service Pack 2 for SharePoint 2010

Here is the download link for SP2 for SharePoint 2010. *The Service Pack is a roll-up of all previously released updates.*

Service Pack 2 for Microsoft SharePoint 2010 (KB2687453)

More detailed list of packages / CU's included in this SP2 are mentioned here.

Wednesday, July 17, 2013

Error occurred in deployment step Recycle IIS Application Pool

This is the most annoying error in deploying a solution to SharePoint via Visual Studio. There are many reasons behind this error. It could be permissions, server configuration. So, I am planning to write all solutions here. :)

Complete Error Details:
Error occurred in deployment step 'Recycle IIS Application Pool': 0x80070005Access denied.

Solutions:

  1. Visual Studio should be running as Administrator. (As the solution is deploying to the server and which requires the admin privileges we must run as Administrator)
  2. User must be a local administrator on the server and should be a member of WSS_Admin_WPG. (Should need access to control IIS and App pool recycling operations)
  3. User must have owner (db_owner) access to the SharePoint Content database. (To deploy the package and activate feature at site collection level) 
  4. User must be a part of Farm Administrators group. (Adding solution package to FARM)
  5. Finally, check the current user is a site collection administrator on the site which the solution is deploying to. (This is very important!)
Hope you are good to go after following all the above instructions. Happy deploying!

Saturday, July 13, 2013

Adding inline styles in SharePoint 2013 page layout

This is another tip which will help you in branding the SharePoint 2013 sites. In SharePoint 2013 when we create a page layout from design manager module then in SharePoint Designer we observe one html file and one aspx page got created for page layout. This is the implementation in SharePoint 2013 for master pages and page layouts. The customization we have to do it in HTML page. SharePoint framework will convert from HTML to ASPX automatically.

For example, if we like to hide the left navigation from the current page layout pages then we will add simple below style to PlaceHolderAdditionalPageHead placeholder.
Once you save the html file then you observe that the style is not applied to page. I have applied simple styles to the page and still they are not applied to any element on the page. After checked the ASPX converted file in Designer I found that the Style is converted as
Which means browsers will ignore executing these CDATA styles. So, these styles will not be applied. After long research and reading many articles found the helpful information from MSDN article. I see there are new implementations in SharePoint 2013 branding. Below is the correct implementation we have to use to write style to the page.
Hope you bookmark another new tip into your mind.:)

Thursday, July 11, 2013

SharePoint 2013 Best Practices

Best post ever on SharePoint 2013. :) Go through from top to bottom without missing any line of link, code, tools etc. But, it will take days to complete the article. LOL

SharePoint 2013 Best Practices

MVC support for Apps in SharePoint 2013

Interesting? Yes, it is the most interesting and surprising news in VS2013 preview release. With Visual Studio 2013 preview now you can create Apps in MVC as well. When you are creating a new APP you can select between ASP.NET web forms and ASP.NET MVC.

These options can be available when you choose Auto-Hosted or Provider-Hosted app for SharePoint. We all know the SharePoint-hosted apps won't allow server side programming. :) When you created an app using ASP.NET MVC model then you see the same folders and structure as in mvc web site. Complete model is same as regular MVC implementation. The new things for you might be are the SharePoint filter and context files. The project provides a set of APIs, defined in the Filters\SharePointContextFilterAttribute.cs and Filters\SharePointContextFilterAttribute.vb, and SharePointContext.cs and SharePointContext.vb files for C# and Visual Basic projects respectively...

SharePointContextFilter: Filters can be useful for switching back and forth between SharePoint and remote web application. Mostly when the SharePoint site need authentication etc.

SharePointContext: This is for communicating the App with SharePoint objects.

To test the new implementation you should download the VS 2013 preview now and start doing the innovation things. :) Enjoy the new learning day to day. 

Thursday, June 27, 2013

Windows 8.1 Preview Download

Yes, Start button is back. You hear it right. :)

Download the Windows new release version 8.1 PREVIEW here. But, please make sure that this is the preview version and not recommended to install on the existing environment as it deletes, corrupts or even screw up your complete machine. So, just try it only for evaluation and testing the new features. 

Thursday, June 13, 2013

June CU updates for SharePoint Products

SharePoint Product Team released the JUNE CU updates for all versions of SharePoint. Please find the complete list below:

Something interesting article on re-release of the CU's....

SharePoint 2013
SharePoint 2013 server June CU is delayed. And for now, the CU available are 
  • KB 2817346 - SharePoint Foundation 2013 June 2013 CU
  • KB 2817350 - Office Web Apps Server 2013 June 2013 CU
Packages:
SharePoint 2010
SharePoint 2010 June CU should be applied on servers where SP1 is installed. 
  • KB 2817392 - SharePoint Foundation 2010
  • KB 2817363 - SharePoint Server 2010
  • KB 2817368 - SharePoint Server 2010 with Project Server
Packages:
SharePoint 2007
SharePoint 2007 June CU is the hotfix after SP3. So, you must run this on servers which have SP3 installed.
KB Articles:
WSS 3.0: KB 2817329
MOSS: KB 2817328

Packages:

NOTE:
  1. SharePoint Server 2010 CU contains the SharePoint Foundation CU. 
  2. And the SharePoint Server 2010 with Project Server CU contains Project Server CU, SharePoint Server CU and SharePoint Foundation CU.
That means only one package has to be installed for the SharePoint 2010 product family.


Tuesday, June 4, 2013

SharePoint 2013 Features GUID

This is a very good post to all SharePoint techies. We encounter many issues as SharePoint display only GUID's many scenarios like logs, information etc. Here is the complete list of the existing feature names with guids. And the scope of each feature. Bookmark this.


Display Name Id Scope
AbuseReportsList c6a92dbf-6441-4b8b-882f-8d97cb12c83a Web
AccessRequests a0f12ee4-9b60-4ba4-81f6-75724f4ca973 Web
AccSrvApplication 1cc4b32c-299b-41aa-9770-67715ea05f25 Farm
AccSrvMSysAso 29ea7495-fca1-4dc6-8ac1-500c247a036e Web
AccSrvRestrictedList a4d4ee2c-a6cb-4191-ab0a-21bb5bde92fb Web
AccSrvShell bcf89eb7-bca1-4468-bdb4-ca27f61a2292 Web
AccSrvSolutionGallery 744b5fd3-3b09-4da6-9bd1-de18315b045d Site
AccSrvSolutionGalleryStapler d5ff2d2c-8571-4c3c-87bc-779111979811 Farm
AccSrvUserTemplate 1a8251a0-47ab-453d-95d4-07d7ca4f8166 Web
AccSrvUSysAppLog 28101b19-b896-44f4-9264-db028f307a62 Web
AccSvcAddAccessApp d2b9ec23-526b-42c5-87b6-852bd83e0364 Web
AccSvcAddAccessAppStapling 3d7415e4-61ba-4669-8d78-213d374d9825 Farm
AccSvcApplication 5094e988-524b-446c-b2f6-040b5be46297 Farm
AccSvcShell 7ffd6d57-4b10-4edb-ac26-c2cfbf8173ab Web
AddDashboard d250636f-0a26-4019-8425-a5232d592c09 Web
AdminLinks fead7313-ae6d-45dd-8260-13b563cb4c71 Web
AdminReportCore b8f36433-367d-49f3-ae11-f7d76b51d251 Site
AdminReportCorePushdown 55312854-855b-4088-b09d-c5efe0fbf9d2 Farm
AnnouncementsList 00bfea71-d1ce-42de-9c63-a44004ce0104 Web
AppLockdown 23330bdb-b83e-4e09-8770-8155aa5e87fd Web
AppRegistration fdc6383e-3f1d-4599-8b7c-c515e99cbf18 Site
AppRequestsList 334dfc83-8655-48a1-b79d-68b7f6c63222 Web
AssetLibrary 4bcccd62-dcaf-46dc-a7d4-e38277ef33f4 Site
AutohostedAppLicensing fa7cefd8-5595-4d68-84fa-fe2d9e693de7 Site
AutohostedAppLicensingStapling 013a0db9-1607-4c42-8f71-08d821d395c2 Farm
BaseSite b21b090c-c796-4b0f-ac0f-7ef1659c20ae Site
BaseSiteStapling 97a2485f-ef4b-401f-9167-fa4fe177c6f6 Farm
BaseWeb 99fe402e-89a0-45aa-9163-85342e865dc8 Web
BaseWebApplication 4f56f9fa-51a0-420c-b707-63ecbb494db1 WebApplication
BasicWebParts 00bfea71-1c5e-4a24-b310-ba51c3eb7a57 Site
BcsEvents 60c8481d-4b54-4853-ab9f-ed7e1c21d7e4 Web
BDR 3f59333f-4ce1-406d-8a97-9ecb0ff0337f Web
BICenterDashboardsLib f979e4dc-1852-4f26-ab92-d1b2a190afc9 Web
BICenterDataConnections 3d8210e9-1e89-4f12-98ef-643995339ed4 Web
BICenterDataconnectionsLib 26676156-91a0-49f7-87aa-37b1d5f0c4d0 Web
BICenterDataConnectionsListInstance a64c4402-7037-4476-a290-84cfd56ca01d Web
BICenterFeatureStapler 3a027b18-36e4-4005-9473-dd73e6756a73 WebApplication
BICenterPPSContentPages a354e6b3-6015-4744-bdc2-2fc1e4769e65 Web
BICenterPPSNavigationLink faf31b50-880a-4e4f-a21b-597f6b4d6478 Web
BICenterPPSWorkspaceListInstance f9c216ad-35c7-4538-abb8-8ec631a5dff7 Web
BICenterSampleData 3992d4ab-fa9e-4791-9158-5ee32178e88a Web
BizAppsCTypes 43f41342-1a37-4372-8ca0-b44d881e4434 Site
BizAppsFields 5a979115-6b71-45a5-9881-cdc872051a69 Site
BizAppsListTemplates 065c78be-5231-477e-a972-14177cc5b3c7 Web
BizAppsSiteTemplates 4248e21f-a816-4c88-8cab-79d82201da7b Site
BlogContent 0d1c50f7-0309-431c-adfb-b777d5473a65 Web
BlogHomePage e4639bb7-6e95-4e2f-b562-03b832dd4793 Web
BlogSiteTemplate faf00902-6bab-4583-bd02-84db191801d8 Web
BulkWorkflow aeef8777-70c0-429f-8a13-f12db47a6d47 Farm
BulkWorkflowTimerJob d992aeca-3802-483a-ab40-6c9376300b61 WebApplication
CallTrackList 239650e3-ee0b-44a0-a22a-48292402b8d8 Web
CategoriesList d32700c7-9ec5-45e6-9c89-ea703efca1df Web
CirculationList a568770a-50ba-4052-ab48-37d8029b3f47 Web
CmisProducer 1fce0577-1f58-4fc2-a996-6c4bcf59eeed Web
CollaborationMailbox 502a2d54-6102-4757-aaa0-a90586106368 Web
CollaborationMailboxFarm 3a11d8ef-641e-4c79-b4d9-be3b17f9607c Farm
CommunityPortal 2b03956c-9271-4d1c-868a-07df2971ed30 Site
CommunitySite 961d6a9c-4388-4cf2-9733-38ee8c89afd4 Web
ContactsList 00bfea71-7e6d-4186-9ba8-c047ac750105 Web
ContentDeploymentSource cd1a49b0-c067-4fdd-adfe-69e6f5022c1a Site
ContentFollowing 7890e045-6c96-48d8-96e7-6a1d63737d71 Site
ContentFollowingList a34e5458-8d20-4c0d-b137-e1390f5824a1 Site
ContentFollowingStapling e1580c3c-c510-453b-be15-35feb0ddb1a5 Farm
ContentLightup 0f121a23-c6bc-400f-87e4-e6bbddf6916d Farm
ContentTypeHub 9a447926-5937-44cb-857a-d3829301c73b Site
ContentTypePublish dd903064-c9d8-4718-b4e7-8ab9bd039fff Web
ContentTypeSettings fead7313-4b9e-4632-80a2-ff00a2d83297 Farm
ContentTypeSyndication 34339dc9-dec4-4256-b44a-b30ff2991a64 WebApplication
CorporateCatalog 0ac11793-9c2f-4cac-8f22-33f93fac18f2 Web
CorporateCuratedGallerySettings f8bea737-255e-4758-ab82-e34bb46f5828 WebApplication
CrossFarmSitePermissions a5aedf1a-12e5-46b4-8348-544386d5312d Site
CrossSiteCollectionPublishing 151d22d9-95a8-4904-a0a3-22e4db85d1e0 Site
CTypes 695b6570-a48b-4a8e-8ea5-26ea7fc1d162 Site
CustomList 00bfea71-de22-43b2-a848-c05709900100 Web
DataConnectionLibrary 00bfea71-dbd7-4f72-b8cb-da7ac0440130 Web
DataConnectionLibraryStapling cdfa39c6-6413-4508-bccf-bf30368472b3 Farm
DataSourceLibrary 00bfea71-f381-423d-b9d1-da7a54c50110 Web
DeploymentLinks ca2543e6-29a1-40c1-bba9-bd8510a4c17b Web
Developer e374875e-06b6-11e0-b0fa-57f5dfd72085 Site
DiscussionsList 00bfea71-6a49-43fa-b535-d15c05500108 Web
DMContentTypeSettings 1ec2c859-e9cb-4d79-9b2b-ea8df09ede22 Farm
DocId b50e3104-6812-424f-a011-cc90e6327318 Site
docmarketplace 184c82e7-7eb1-4384-8e8c-62720ef397a0 Web
docmarketplacesafecontrols 5690f1a0-22b6-4262-b1c2-74f505bc0670 WebApplication
docmarketplacesampledata 1dfd85c5-feff-489f-a71f-9322f8b13902 Web
DocumentLibrary 00bfea71-e717-4e80-aa17-d0c71b360101 Web
DocumentManagement 3a4ce811-6fe0-4e97-a6ae-675470282cf2 WebApplication
DocumentRouting 7ad5272a-2694-4349-953e-ea5ef290e97c Web
DocumentRoutingResources 0c8a9a47-22a9-4798-82f1-00e62a96006e Site
DocumentSet 3bae86a2-776d-499d-9db8-fa4cdc7884f8 Site
DownloadFromOfficeDotCom a140a1ac-e757-465d-94d4-2ca25ab2c662 Farm
EDiscoveryCaseResources e8c02a2a-9010-4f98-af88-6668d59f91a7 Web
EDiscoveryConsole 250042b9-1aad-4b56-a8a6-69d9fe1c8c2c Site
EduAdminLinks 03509cfb-8b2f-4f46-a4c9-8316d1e62a4b Web
EduAdminPages c1b78fe6-9110-42e8-87cb-5bd1c8ab278a Site
EduCommunity bf76fc2c-e6c9-11df-b52f-cb00e0d72085 Web
EduCommunityCustomSiteActions 739ec067-2b57-463e-a986-354be77bb828 Site
EduCommunitySite 2e030413-c4ff-41a4-8ee0-f6688950b34a Site
EduCourseCommunity a16e895c-e61a-11df-8f6e-103edfd72085 Web
EduCourseCommunitySite 824a259f-2cce-4006-96cd-20c806ee9cfd Site
EduDashboard 5025492c-dae2-4c00-8f34-cd08f7c7c294 Web
EduFarmWebApplication cb869762-c694-439e-8d05-cf5ca066f271 Farm
EduInstitutionAdmin 41bfb21c-0447-4c97-bc62-0b07bec262a1 Site
EduInstitutionSiteCollection 978513c0-1e6c-4efb-b12e-7698963bfd05 Web
EduMembershipUI bd012a1f-c69b-4a13-b6a4-f8bc3e59760e Web
EduMySiteCommunity abf1a85c-e91a-11df-bf2e-f7acdfd72085 Web
EduMySiteHost 932f5bb1-e815-4c14-8917-c2bae32f70fe Web
EduSearchDisplayTemplates 8d75610e-5ff9-4cd1-aefc-8b926f2af771 Site
EduShared 08585e12-4762-4cc9-842a-a8d7b074bdb7 Site
EduStudyGroupCommunity a46935c3-545f-4c15-a2fd-3a19b62d8a02 Web
EduUserCache 7f52c29e-736d-11e0-80b8-9edd4724019b Web
EduWebApplication 7de489aa-2e4a-46ff-88f0-d1b5a9d43709 WebApplication
EMailRouting d44a1358-e800-47e8-8180-adf2d0f77543 Web
EmailTemplates 397942ec-14bf-490e-a983-95b87d0d29d1 WebApplication
EnableAppSideLoading ae3a1339-61f5-4f8f-81a7-abd2da956a7d Site
EnhancedHtmlEditing 81ebc0d6-8fb2-4e3f-b2f8-062640037398 Farm
EnhancedTheming 068bc832-4951-11dc-8314-0800200c9a66 Site
EnterpriseWiki 76d688ad-c16e-4cec-9b71-7b7f0d79b9cd Web
EnterpriseWikiLayouts a942a218-fa43-4d11-9d85-c01e3e3a37cb Site
EventsList 00bfea71-ec85-4903-972d-ebe475780106 Web
ExcelServer e4e6a041-bc5b-45cb-beab-885a27079f74 Farm
ExcelServerEdit b3da33d0-5e51-4694-99ce-705a3ac80dc5 Site
ExcelServerSite 3cb475e7-4e87-45eb-a1f3-db96ad7cf313 Site
ExcelServerWebPart 4c42ab64-55af-4c7c-986a-ac216a6e0c0e Site
ExcelServerWebPartStapler c6ac73de-1936-47a4-bdff-19a6fc3ba490 Farm
ExchangeSync 5f68444a-0131-4bb0-b013-454d925681a2 Farm
ExchangeSyncSiteSubscription 7cd95467-1777-4b6b-903e-89e253edc1f7 Web
ExpirationWorkflow c85e5759-f323-4efb-b548-443d2216efb5 Site
ExternalList 00bfea71-9549-43f8-b978-e47e54a10600 Web
ExternalSubscription 5b10d113-2d0d-43bd-a2fd-f8bc879f5abd Web
FacilityList 58160a6b-4396-4d6e-867c-65381fb5fbc9 Web
FastCentralAdminHelpCollection 38969baa-3590-4635-81a4-2049d982adfa Site
FastEndUserHelpCollection 6e8f2b8d-d765-4e69-84ea-5702574c11d6 Site
FastFarmFeatureActivation d2d98dc8-c7e9-46ec-80a5-b38f039c16be Farm
FCGroupsList 08386d3d-7cc0-486b-a730-3b4cfe1b5509 Web
FeaturePushdown 0125140f-7123-4657-b70a-db9aa1f209e5 Farm
Fields ca7bd552-10b1-4563-85b9-5ed1d39c962a Site
FollowingContent a7a2793e-67cd-4dc1-9fd0-43f61581207a Web
GanttTasksList 00bfea71-513d-4ca0-96c2-6a47775c0119 Web
GBWProvision 6e8a2add-ed09-4592-978e-8fa71e6f117c Web
GBWWebParts 3d25bd73-7cd4-4425-b8fb-8899977f73de Web
GettingStarted 4aec7207-0d02-4f4f-aa07-b370199cd0c7 Web
GettingStartedWithAppCatalogSite 4ddc5942-98b0-4d70-9f7f-17acfec010e5 Web
GlobalWebParts 319d8f70-eb3a-4b44-9c79-2087a87799d6 Farm
GridList 00bfea71-3a1d-41d3-a0ee-651d11570120 Web
GroupWork 9c03e124-eef7-4dc6-b5eb-86ccd207cb87 Web
HelpLibrary 071de60d-4b02-4076-b001-b456e93146fe Site
HierarchyTasksList f9ce21f8-f437-4f7e-8bc6-946378c850f0 Web
Hold 9e56487c-795a-4077-9425-54a1ecb84282 Web
HolidaysList 9ad4c2d4-443b-4a94-8534-49a23f20ba3c Web
HtmlDesign a4c654e4-a8da-4db3-897c-a386048f7157 Site
IfeDependentApps 7877bbf6-30f5-4f58-99d9-a0cc787c1300 WebApplication
IMEDicList 1c6a572c-1b58-49ab-b5db-75caf50692e6 Web
InPlaceRecords da2e115b-07e4-49d9-bb2c-35e93bb9fca9 Site
ipfsAdminLinks a10b6aa4-135d-4598-88d1-8d4ff5691d13 Farm
IPFSAdminWeb 750b8e49-5213-4816-9fa2-082900c0201a Web
IPFSSiteFeatures c88c4ff1-dbf5-4649-ad9f-c6c426ebcbf5 Site
IPFSTenantFormsConfig 15845762-4ec4-4606-8993-1c0512a98680 Web
IPFSTenantWebProxyConfig 3c577815-7658-4d4f-a347-cfbb370700a7 Web
IPFSWebFeatures a0e5a010-1329-49d4-9e09-f280cdbed37d Web
IssuesList 00bfea71-5932-4f9c-ad71-1557e5751100 Web
IssueTrackingWorkflow fde5d850-671e-4143-950a-87b473922dc7 Site
ItemFormRecommendations 39d18bbf-6e0f-4321-8f16-4e3b51212393 Site
LegacyDocumentLibrary 6e53dd27-98f2-4ae5-85a0-e9a8ef4aa6df Web
LegacyWorkflows c845ed8d-9ce5-448c-bd3e-ea71350ce45b Site
LinksList 00bfea71-2062-426c-90bf-714c59600103 Web
ListTargeting fc33ba3b-7919-4d7e-b791-c6aeccf8f851 Farm
LocalSiteDirectoryControl 14aafd3a-fcb9-4bb7-9ad7-d8e36b663bbd Site
LocalSiteDirectoryMetaData 8f15b342-80b1-4508-8641-0751e2b55ca6 Web
LocalSiteDirectorySettingsLink e978b1a6-8de7-49d0-8600-09a250354e14 Site
LocationBasedPolicy 063c26fa-3ccc-4180-8a84-b6f98e991df3 Site
MaintenanceLogs 8c6f9096-388d-4eed-96ff-698b3ec46fc4 Web
ManageUserProfileServiceApplication c59dbaa9-fa01-495d-aaa3-3c02cc2ee8ff Farm
MasterSiteDirectoryControl 8a663fe0-9d9c-45c7-8297-66365ad50427 Farm
MBrowserRedirect d95c97f3-e528-4da2-ae9f-32b3535fbb59 Web
MBrowserRedirectStapling 2dd8788b-0e6b-4893-b4c0-73523ac261b1 Farm
MDSFeature 87294c72-f260-42f3-a41b-981a2ffce37a Web
MediaWebPart 5b79b49a-2da6-4161-95bd-7375c1995ef9 Site
MembershipList 947afd14-0ea1-46c6-be97-dea1bf6f5bae Web
MetaDataNav 7201d6a4-a5d3-49a1-8c19-19c4bac6e668 Web
MobileEwaFarm 5a020a4f-c449-4a65-b07d-f2cc2d8778dd Farm
MobileExcelWebAccess e995e28b-9ba8-4668-9933-cf5c146d7a9f Site
MobilityRedirect f41cc668-37e5-4743-b4a8-74d1db3fd8a4 Web
MonitoredApps 345ff4f9-f706-41e1-92bc-3f0ec2d9f6ea Site
MonitoredAppsUI 1b811cfe-8c78-4982-aad7-e5c112e397d1 Farm
MossChart 875d1044-c0cf-4244-8865-d2a0039c2a49 Site
MpsWebParts 39dd29fb-b6f5-4697-b526-4d38de4893e5 Web
MruDocsWebPart 1eb6a0c1-5f08-4672-b96f-16845c2448c6 Web
MySite 69cc9662-d373-47fc-9449-f18d11ff732c Farm
MySiteBlog 863da2ac-3873-4930-8498-752886210911 Site
MySiteCleanup 0faf7d1b-95b1-4053-b4e2-19fd5c9bbc88 Farm
MySiteDocumentLibrary e9c0ff81-d821-4771-8b4c-246aa7e5e9eb Site
MySiteHost 49571cd1-b6a1-43a3-bf75-955acc79c8d8 Site
MySiteHostPictureLibrary 5ede0a86-c772-4f1d-a120-72e734b3400c Web
MySiteInstantiationQueues 65b53aaf-4754-46d7-bb5b-7ed4cf5564e1 WebApplication
MySiteLayouts 6928b0e5-5707-46a1-ae16-d6e52522d52b Site
MySiteMaster fb01ca75-b306-4fc2-ab27-b4814bf823d1 Site
MySiteMicroBlog ea23650b-0340-4708-b465-441a41c37af7 Web
MySiteMicroBlogCtrl dfa42479-9531-4baf-8873-fc65b22c9bd4 Site
MySiteNavigation 6adff05c-d581-4c05-a6b9-920f15ec6fd9 Web
MySitePersonalSite f661430e-c155-438e-a7c6-c68648f1b119 Site
MySiteQuickLaunch 034947cc-c424-47cd-a8d1-6014f0e36925 Web
MySiteSocialDeployment b2741073-a92b-4836-b1d8-d5e9d73679bb Site
MySiteStorageDeployment 0ee1129f-a2f3-41a9-9e9c-c7ee619a8c33 Site
MySiteUnifiedNavigation 41baa678-ad62-41ef-87e6-62c8917fc0ad Web
MySiteUnifiedQuickLaunch eaa41f18-8e4a-4894-baee-60a87f026e42 Site
MyTasksDashboard 89d1184c-8191-4303-a430-7a24291531c9 Web
MyTasksDashboardCustomRedirect 04a98ac6-82d5-4e01-80ea-c0b7d9699d94 Farm
MyTasksDashboardStapling 4cc8aab8-5af0-45d7-a170-169ea583866e Farm
Navigation 89e0306d-453b-4ec5-8d68-42067cdbf98e Site
NavigationProperties 541f5f57-c847-4e16-b59a-b31e90e6f9ea Web
NoCodeWorkflowLibrary 00bfea71-f600-43f6-a895-40c0de7b0117 Web
ObaProfilePages 683df0c0-20b7-4852-87a3-378945158fab Web
ObaProfilePagesTenantStapling 90c6c1e5-3719-4c52-9f36-34a97df596f7 Farm
ObaSimpleSolution d250636f-0a26-4019-8425-a5232d592c01 Web
ObaStaple f9cb1a2a-d285-465a-a160-7e3e95af1fdd Farm
OfficeExtensionCatalog 61e874cd-3ac3-4531-8628-28c3acb78279 Web
OfficeWebApps 0c504a5c-bcea-4376-b05e-cbca5ced7b4f Site
OffWFCommon c9c9515d-e4e2-4001-9050-74f980f93160 Site
OnenoteServerViewing 3d433d02-cf49-4975-81b4-aede31e16edf Site
OpenInClient 8a4b8de2-6fd8-41e9-923c-c7c3c00f8295 Site
OrganizationsClaimHierarchyProvider 9b0293a7-8942-46b0-8b78-49d29a9edd53 Farm
OSearchBasicFeature bc29e863-ae07-4674-bd83-2c6d0aa5623f WebApplication
OSearchCentralAdminLinks c922c106-7d0a-4377-a668-7f13d52cb80f Farm
OSearchEnhancedFeature 4750c984-7721-4feb-be61-c660c6190d43 WebApplication
OSearchHealthReports e792e296-5d7f-47c7-9dfa-52eae2104c3b Site
OSearchHealthReportsPushdown 09fe98f3-3324-4747-97e5-916a28a0c6c0 Farm
OSearchPortalAdminLinks edf48246-e4ee-4638-9eed-ef3d0aee7597 Farm
OsrvLinks 068f8656-bea6-4d60-a5fa-7f077f8f5c20 Web
OssNavigation 10bdac29-a21a-47d9-9dff-90c7cae1301e Web
OSSSearchEndUserHelpFeature 03b0a3dc-93dd-4c68-943e-7ec56e65ed4d Site
OSSSearchSearchCenterUrlFeature 7acfcb9d-8e8f-4979-af7e-8aed7e95245e Web
OSSSearchSearchCenterUrlSiteFeature 7ac8cc56-d28e-41f5-ad04-d95109eb987a Site
PageConverters 14173c38-5e2d-4887-8134-60f9df889bad WebApplication
PersonalizationSite ed5e77f7-c7b1-4961-a659-0de93080fa36 Web
PhonePNSubscriber 41e1d4bf-b1a2-47f7-ab80-d5d6cbba3092 Web
PictureLibrary 00bfea71-52d4-45b3-b544-b1c71b620109 Web
PortalLayouts 5f3b0127-2f1d-4cfd-8dd2-85ad1fb00bfc Site
PowerView bf8b58f5-ebae-4a70-9848-622beaaf2043 Site
PowerViewStapling 3b5dc9dd-896c-4d6b-8c73-8f854b3a652b Farm
PPSDatasourceLib 5d220570-df17-405e-b42d-994237d60ebf Web
PPSMonDatasourceCtype 05891451-f0c4-4d4e-81b1-0dabd840bad4 Site
PPSRibbon ae31cd14-a866-4834-891a-97c9d37662a2 Site
PPSSiteCollectionMaster a1cb5b7f-e5e9-421b-915f-bf519b0760ef Site
PPSSiteMaster 0b07a7f4-8bb8-4ec0-a31b-115732b9584d Web
PPSSiteStapling 8472208f-5a01-4683-8119-3cea50bea072 Farm
PPSWebParts ee9dbf20-1758-401e-a169-7db0a6bbccb2 Site
PPSWorkspaceCtype f45834c7-54f6-48db-b7e4-a35fa470fc9b Site
PPSWorkspaceList 481333e1-a246-4d89-afab-d18c6fe344ce Web
PremiumSearchVerticals 9e99f7d7-08e9-455c-b3aa-fc71b9210027 Web
PremiumSite 8581a8a7-cf16-4770-ac54-260265ddb0b2 Site
PremiumSiteStapling a573867a-37ca-49dc-86b0-7d033a7ed2c8 Farm
PremiumWeb 0806d127-06e6-447a-980e-2e90b03101b8 Web
PremiumWebApplication 0ea1c3b6-6ac0-44aa-9f3f-05e8dbe6d70b WebApplication
Preservation bfc789aa-87ba-4d79-afc7-0c7e45dae01a Site
ProductCatalogListTemplate dd926489-fc66-47a6-ba00-ce0e959c9b41 Site
ProductCatalogResources 409d2feb-3afb-4642-9462-f7f426a0f3e9 Site
ProfileSynch af847aa9-beb6-41d4-8306-78e41af9ce25 Farm
ProjectBasedPolicy 2fcd5f8a-26b7-4a6a-9755-918566dba90a Site
ProjectDiscovery 4446ee9b-227c-4f1a-897d-d78ecdd6a824 Web
ProjectFunctionality e2f2bb18-891d-4812-97df-c265afdba297 Web
PromotedLinksList 192efa95-e50c-475e-87ab-361cede5dd7f Web
Publishing 22a9ef51-737b-4ff2-9346-694633fe4416 Web
PublishingLayouts d3f51be2-38a8-4e44-ba84-940d35be1566 Site
PublishingMobile 57cc6207-aebf-426e-9ece-45946ea82e4a Site
PublishingPrerequisites a392da98-270b-4e85-9769-04c0fde267aa Site
PublishingResources aebc918d-b20f-4a11-a1db-9ed84d79c87e Site
PublishingSite f6924d36-2fa8-4f0b-b16d-06b7250180fa Site
PublishingStapling 001f4bd7-746d-403b-aa09-a6cc43de7942 Farm
PublishingTimerJobs 20477d83-8bdb-414e-964b-080637f7d99b WebApplication
PublishingWeb 94c94ca6-b32f-4da9-a9e3-1f3d343d7ecb Web
QueryBasedPreservation d9742165-b024-4713-8653-851573b9dfbd Site
Ratings 915c240e-a6cc-49b8-8b2c-0bff8b553ed3 Site
RecordResources 5bccb9a4-b903-4fd1-8620-b795fa33c9ba Site
RecordsCenter e0a45587-1069-46bd-bf05-8c8db8620b08 Web
RecordsManagement 6d127338-5e7d-4391-8f62-a11e43b1d404 Farm
RecordsManagementTenantAdmin b5ef96cb-d714-41da-b66c-ce3517034c21 Web
RecordsManagementTenantAdminStapling 8c54e5d3-4635-4dff-a533-19fe999435dc Farm
RedirectPageContentTypeBinding 306936fd-9806-4478-80d1-7e397bfa6474 Web
RelatedLinksScopeSettingsLink e8734bb6-be8e-48a1-b036-5a40ff0b8a81 Web
ReportAndDataSearch b9455243-e547-41f0-80c1-d5f6ce6a19e5 Web
ReportCenterSampleData c5d947d6-b0a2-4e07-9929-8e54f5a9fff9 Web
Reporting 7094bd89-2cfe-490a-8c7e-fbace37b4a34 Site
ReportListTemplate 2510d73f-7109-4ccc-8a1c-314894deeb3a Web
ReportsAndDataCTypes e0a9f213-54f5-4a5a-81d5-f5f3dbe48977 Site
ReportsAndDataFields 365356ee-6c88-4cf1-92b8-fa94a8b8c118 Site
ReportsAndDataListTemplates b435069a-e096-46e0-ae30-899daca4b304 Site
ReportServer e8389ec7-70fd-4179-a1c4-6fcb4342d7a0 Site
ReportServerCentralAdmin 5f2e3537-91b5-4341-86ff-90c6a2f99aae Site
ReportServerItemSync c769801e-2387-47ef-a810-2d292d4cb05d Web
ReportServerStapling 6bcbccc3-ff47-47d3-9468-572bf2ab9657 Farm
ReviewPublishingSPD a44d2aa3-affc-4d58-8db4-f4a3af053188 Site
ReviewPublishingSPD1033 19f5f68e-1b92-4a02-b04d-61810ead0409 Site
ReviewWorkflows 02464c6a-9d07-4f30-ba04-e9035cf54392 Site
ReviewWorkflowsSPD b5934f65-a844-4e67-82e5-92f66aafe912 Site
ReviewWorkflowsSPD1033 3bc0c1e1-b7d5-4e82-afd7-9f7e59b60409 Site
RollupPageLayouts 588b23d5-8e23-4b1b-9fe3-2f2f62965f2d Site
RollupPages dffaae84-60ee-413a-9600-1cf431cf0560 Web
ScheduleList 636287a7-7f62-4a6e-9fcc-081f4672cbf8 Web
SearchAdminWebParts c65861fa-b025-4634-ab26-22a23e49808f Web
SearchAndProcess 1dbf6063-d809-45ea-9203-d3ba4a64f86d WebApplication
SearchCenterFiles 6077b605-67b9-4937-aeb6-1d41e8f5af3b Web
SearchCenterLiteFiles 073232a0-1868-4323-a144-50de99c70efc Web
SearchCenterLiteUpgrade fbbd1168-3b17-4f29-acb4-ef2d34c54cfb Web
SearchCenterUpgrade 372b999f-0807-4427-82dc-7756ae73cb74 Web
SearchConfigContentType 48a243cb-7b16-4b5a-b1b5-07b809b43f47 Web
SearchConfigFields 41dfb393-9eb6-4fe4-af77-28e4afce8cdc Web
SearchConfigList acb15743-f07b-4c83-8af3-ffcfdf354965 Web
SearchConfigListTemplate e47705ec-268d-4c41-aa4e-0d8727985ebc Web
SearchConfigTenantStapler 9fb35ca8-824b-49e6-a6c5-cba4366444ab Farm
SearchDrivenContent 592ccb4a-9304-49ab-aab1-66638198bb58 Site
SearchEngineOptimization 17415b1d-5339-42f9-a10b-3fef756b84d1 Site
SearchExtensions 5eac763d-fbf5-4d6f-a76b-eded7dd7b0a5 Site
SearchMaster 9c0834e1-ba47-4d49-812b-7d4fb6fea211 Site
SearchServerWizardFeature e09cefae-2ada-4a1d-aee6-8a8398215905 Site
SearchTaxonomyRefinementWebParts 67ae7d04-6731-42dd-abe1-ba2a5eaa3b48 Site
SearchTaxonomyRefinementWebPartsHtml 8c34f59f-8dfb-4a39-9a08-7497237e3dc4 Site
SearchTemplatesandResources 8b2c6bcb-c47f-4f17-8127-f8eae47a44dd Site
SearchWebParts eaf6a128-0482-4f71-9a2f-b1c650680e77 Site
SearchWebPartsStapler 922ed989-6eb4-4f5e-a32e-27f31f93abfa Farm
SharedServices f324259d-393d-4305-aa48-36e8d9a7a0d6 Farm
ShareWithEveryone 10f73b29-5779-46b3-85a8-4817a6e9a6c2 Site
ShareWithEveryoneStapling 87866a72-efcf-4993-b5b0-769776b5283f Farm
SignaturesWorkflow 6c09612b-46af-4b2f-8dfc-59185c962a29 Site
SignaturesWorkflowSPD c4773de6-ba70-4583-b751-2a7b1dc67e3a Site
SignaturesWorkflowSPD1033 a42f749f-8633-48b7-9b22-403b40190409 Site
SiteAssets 98d11606-9a9b-4f44-b4c2-72d72f867da9 Web
SiteFeed 15a572c6-e545-4d32-897a-bab6f5846e18 Web
SiteFeedController 5153156a-63af-4fac-b557-91bd8c315432 Web
SiteFeedStapling 6301cbb8-9396-45d1-811a-757567d35e91 Farm
SiteHelp 57ff23fc-ec05-4dd8-b7ed-d93faa7c795d Site
SiteNotebook f151bb39-7c3b-414f-bb36-6bf18872052f Web
SiteServicesAddins b21c5a20-095f-4de2-8935-5efde5110ab3 Site
SiteSettings fead7313-4b9e-4632-80a2-98a2a2d83297 Farm
SitesList a311bf68-c990-4da3-89b3-88989a3d7721 Web
SiteStatusBar 001f4bd7-746d-403b-aa09-a6cc43de7999 Farm
SiteUpgrade b63ef52c-1e99-455f-8511-6a706567740f WebApplication
SkuUpgradeLinks 937f97e9-d7b4-473d-af17-b03951b2c66b Farm
SlideLibrary 0be49fe9-9bc9-409d-abf9-702753bd878d Web
SlideLibraryActivation 65d96c6b-649a-4169-bf1d-b96505c60375 Farm
SmallBusinessWebsite 48c33d5d-acff-4400-a684-351c2beda865 Site
SocialDataStore fa8379c9-791a-4fb0-812e-d0cfcac809c8 Site
SocialRibbonControl 756d8a58-4e24-4288-b981-65dc93f9c4e5 Farm
SocialSite 4326e7fc-f35a-4b0f-927c-36264b0a4cf0 Site
SPAppAnalyticsUploaderJob abf42bbb-cd9b-4313-803b-6f4a7bd4898f Farm
SpellChecking 612d671e-f53d-4701-96da-c3a4ee00fdc5 Farm
SPSBlog d97ded76-7647-4b1e-b868-2af51872e1b3 Web
SPSBlogStapling 6d503bb6-027e-44ea-b54c-a53eac3dfed8 Farm
SPSDisco 713a65a1-2bc7-4e62-9446-1d0b56a8bf7f Farm
SPSearchFeature 2ac1da39-c101-475c-8601-122bc36e3d67 WebApplication
SRPProfileAdmin c43a587e-195b-4d29-aba8-ebb22b48eb1a Farm
SSSvcAdmin 35f680d4-b0de-4818-8373-ee0fca092526 Web
StapledWorkflows ee21b29b-b0d0-42c6-baff-c97fd91786e6 Farm
SurveysList 00bfea71-eb8a-40b1-80c7-506be7590102 Web
TaskListNewsFeed ff13819a-a9ac-46fb-8163-9d53357ef98d Web
TasksList 00bfea71-a83e-497e-9ba0-7a5c597d0107 Web
TaxonomyFeatureStapler 415780bf-f710-4e2c-b7b0-b463c7992ef0 Farm
TaxonomyFieldAdded 73ef14b1-13a9-416b-a9b5-ececa2b0604c Site
TaxonomyTenantAdmin 7d12c4c3-2321-42e8-8fb6-5295a849ed08 Web
TaxonomyTenantAdminStapler 8fb893d6-93ee-4763-a046-54f9e640368d Farm
TaxonomyTimerJobs 48ac883d-e32e-4fd6-8499-3408add91b53 WebApplication
TeamCollab 00bfea71-4ea5-48d4-a4ad-7ea5c011abe5 Web
TemplateDiscovery ff48f7e6-2fa1-428d-9a15-ab154762043d Farm
TenantAdminBDC 0a0b2e8f-e48e-4367-923b-33bb86c1b398 Web
TenantAdminBDCStapling b5d169c9-12db-4084-b68d-eef9273bd898 Farm
TenantAdminDeploymentLinks 99f380b4-e1aa-4db0-92a4-32b15e35b317 Web
TenantAdminLinks 98311581-29c5-40e8-9347-bd5732f0cb3e Web
TenantAdminSecureStore b738400a-f08a-443d-96fa-a852d0356bba Web
TenantAdminSecureStoreStapling 6361e2a8-3bc4-4ca4-abbb-3dfbb727acd7 Farm
TenantProfileAdmin 32ff5455-8967-469a-b486-f8eaf0d902f9 Web
TenantProfileAdminStapling 3d4ea296-0b35-4a08-b2bf-f0a8cabd1d7f Farm
TenantSearchAdmin 983521d7-9c04-4db0-abdc-f7078fc0b040 Web
TenantSearchAdminStapling 08ee8de1-8135-4ef9-87cb-a4944f542ba3 Farm
TimeCardList d5191a77-fa2d-4801-9baf-9f4205c9e9d2 Web
TopicPageLayouts 742d4c0e-303b-41d7-8015-aad1dfd54cbd Site
TopicPages 5ebe1445-5910-4c6e-ac27-da2e93b60f48 Web
Translation 4e7276bc-e7ab-4951-9c4b-a74d44205c32 Site
TranslationTimerJobs d085b8dc-9205-48a4-96ea-b40782abba02 WebApplication
TranslationWorkflow c6561405-ea03-40a9-a57f-f25472942a22 Site
TransMgmtFunc 82e2ea42-39e2-4b27-8631-ed54c1cfc491 Farm
TransMgmtLib 29d85c25-170c-4df9-a641-12db0b9d4130 Web
UPAClaimProvider 5709886f-13cc-4ffc-bfdc-ec8ab7f77191 Farm
UpgradeOnlyFile 2fa4db13-4109-4a1d-b47c-c7991d4cc934 Web
UserMigrator f0deabbb-b0f6-46ba-8e16-ff3b44461aeb Farm
UserProfileUserSettingsProvider 0867298a-70e0-425f-85df-7f8bd9e06f15 Farm
V2VPublishedLinks f63b7696-9afc-4e51-9dfd-3111015e9a60 Site
V2VPublishingLayouts 2fbbe552-72ac-11dc-8314-0800200c9a66 Site
VideoAndRichMedia 6e1e5426-2ebd-4871-8027-c5ca86371ead Site
ViewFormPagesLockDown 7c637b23-06c4-472d-9a9a-7c175762c5c4 Site
VisioProcessRepository 7e0aabee-b92b-4368-8742-21ab16453d01 Web
VisioProcessRepositoryContentTypes 12e4f16b-8b04-42d2-90f2-aef1cc0b65d9 Web
VisioProcessRepositoryContentTypesUs b1f70691-6170-4cae-bc2e-4f7011a74faa Web
VisioProcessRepositoryFeatureStapling 7e0aabee-b92b-4368-8742-21ab16453d00 Farm
VisioProcessRepositoryUs 7e0aabee-b92b-4368-8742-21ab16453d02 Web
VisioServer 5fe8e789-d1b7-44b3-b634-419c531cfdca Farm
VisioWebAccess 9fec40ea-a949-407d-be09-6cba26470a0c Site
WAWhatsPopularWebPart 8e947bf0-fe40-4dff-be3d-a8b88112ade6 Site
WebPageLibrary 00bfea71-c796-4402-9f2f-0eb9a6e71b18 Web
WebPartAdderGroups 2ed1c45e-a73b-4779-ae81-1524e4de467a Site
WhatsNewList d7670c9c-1c29-4f44-8691-584001968a74 Web
WhereaboutsList 9c2ef9dc-f733-432e-be1c-2e79957ea27b Web
WikiPageHomePage 00bfea71-d8fe-4fec-8dad-01c19a6e4053 Web
WikiWelcome 8c6a6980-c3d9-440e-944c-77f93bc65a7e Web
WordServerViewing 1663ee19-e6ab-4d47-be1b-adeb27cfd9d2 Site
WorkflowAppOnlyPolicyManager ec918931-c874-4033-bd09-4f36b2e31fef Web
WorkflowHistoryList 00bfea71-4ea5-48d4-a4ad-305cf7030140 Web
workflowProcessList 00bfea71-2d77-4a75-9fca-76516689e21a Web
Workflows 0af5989a-3aea-4519-8ab0-85d91abe39ff Site
WorkflowServiceStapler 8b82e40f-2001-4f0e-9ce3-0b27d1866dff Farm
WorkflowServiceStore 2c63df2b-ceab-42c6-aeff-b3968162d4b1 Web
WorkflowTask 57311b7a-9afd-4ff0-866e-9393ad6647b1 Web
XmlFormLibrary 00bfea71-1e1d-4562-b56a-f05371bb0115 Web
XmlSitemap 77fc9e13-e99a-4bd3-9438-a3f69670ed97 Site