Sunday, November 13, 2016

Microsoft Teams— The Chat-based WorkSpace in Office 365

Microsoft Teams

The new chat-based workspace in Office 365. Microsoft Teams is an entirely new experience that brings together people, conversations and content—along with the tools that teams need—so they can easily collaborate to achieve more. It’s naturally integrated with the familiar Office applications and is built from the ground up on the Office 365 global, secure cloud. 


Chat for today’s teams

First and foremost, Microsoft Teams provides a modern conversation experience for today’s teams. Microsoft Teams supports not only persistent but also threaded chats to keep everyone engaged. Team conversations are, by default, visible to the entire team, but there is of course the ability for private discussions. Skype is deeply integrated, so teams can participate in voice and video conferences. And everyone can add personality to their digital workspace with emojis, stickers, GIFs and custom memes to make it their own.


A hub for teamwork

Second, Microsoft Teams brings together the full breadth and depth of Office 365 to provide a true hub for teamwork. Word, Excel, PowerPoint, SharePoint, OneNote, Planner, Power BI and Delve are all built into Microsoft Teams so people have all the information and tools they need at their fingertips. Backed by the Microsoft Graph, intelligent services are surfaced throughout the workspace to help with information relevancy, discovery and sharing. Microsoft Teams is also built on Office 365 Groups—our cross-application membership service that makes it easy for people to move naturally from one collaboration tool to another, preserve their sense of context and share with others.


Customizable for each & every team

Third, since all teams are unique, we’ve invested deeply in ways for people to customize their workspace, with rich extensibility and open APIs available at general availability. For example, Tabs provides quick access to frequently used documents and cloud services. Microsoft Teams also shares the same Connector model as Exchange, providing notifications and updates from third-party services like Twitter or GitHub. Further, we are including full support for the Microsoft Bot Framework to bring intelligent first- and third-party services into your team environment.

Security Teams Trust

Finally, Microsoft Teams provides the advanced security and compliance capabilities that our Office 365 customers expect. Data is encrypted in transit and at rest. Like all our commercial services, we have a transparent operational model with no standing access to customer data. Microsoft Teams will support key compliance standards including EU Model Clauses, ISO 27001, SOC 2, HIPAA and more. And, as customers would expect, Microsoft Teams is served out of our hyper-scale global network of data centers, automatically provisioned within Office 365 and managed centrally, just as any other Office 365 service.



Few points to be noted
  • Microsoft Teams is available to Office 365 commercial customers with one of the following plans: Business Essentials, Business Premium, and Enterprise E1, E3 and E5. Microsoft Teams will also be available to customers who purchased E4 prior to its retirement.
  • To turn on Microsoft Teams, IT admins should go to their Office 365 admin center, click Settings Services & Add InsMicrosoft Teams.
  • Platforms - Microsoft Teams runs on Windows, Mac, Android, iOS and web platforms.

Trainings available from MS. Two different trainings currently available for our IT admins. To view the trainings, visit the Microsoft Virtual Academy website. We have a video on Microsoft Mechanics and more information on the Microsoft Teams Tech Community.


Sunday, November 6, 2016

Save site as template option is not available in SharePoint Online in Office 365

Problem

This issue most frequently occurs because the Community Sites Feature site feature, the SharePoint Server Publishing site feature, or the SharePoint Server Publishing Infrastructure site collection feature is currently enabled or was previously enabled for the affected site. 
SharePoint doesn’t support creating a template from a site where publishing or community features were enabled

More Information
Well, since the Save site as a template option is hidden from the publishing sites settings page we all used the following URL to go there directly:
/_layouts/savetmpl.aspx
Or
/_layouts/15/savetmpl.aspx
Well, that is not going to work anymore in SharePoint online (SPO) if your site is a publishing site or have the publishing features activated.
Resolution

In order to get around this issue you need to update a single property page value in your SPWeb object for the site you are trying to save as a template and you are good to go. The property is called SaveSiteAsTemplateEnabled. We need to set that property to true that’s all

You can use the below sample script for the same in SPO
#Load SharePoint CSOM Assemblies
[System.Reflection.Assembly]::LoadFile("C:\***\Microsoft.SharePoint.Client.dll") | Out-Null
[System.Reflection.Assembly]::LoadFile("C:\***\Microsoft.SharePoint.Client.Runtime.dll") | Out-Null
#Variables for Processing
$SiteUrl = "https://sharepointcollabs.sharepoint.com/sites/pdkmtest"
# Get a reference to the target site
$password = Read-Host -Prompt "Enter password" -AsSecureString
$credentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials("****@domain.com", $password)
#Set up the context
$Context = New-Object Microsoft.SharePoint.Client.ClientContext($SiteUrl)
$Context.Credentials = $credentials
# Update the property bag value and set it  to the string value “true”
$Context.Web.AllProperties["SaveSiteAsTemplateEnabled"] = "true"
# Commit the property change to server
$Context.Web.Update()
$Context.ExecuteQuery()
Now if you navigate to the Save site as a template page using the URL directly it will show fine and it will allow you to save the site as a template which stores a copy in the Solution gallery of the site collection

Saturday, November 5, 2016

View SharePoint Online (SPO) Crawl Logs in Office 365

SharePoint Online Search Crawl Logs.


You can view the Crawl Logs in SharePoint Online using the Office 365's eDiscovery site template and by granting the eDiscovery managers security group the appropriate permissions to read crawl logs from your tenant. 
Create  a new subsite of eDiscovery case site template under eDiscovery site.
Navigate to your case site and now create a new eDiscovery set either using the left-side navigation or using the +new item under ‘Identify and Hold’ section.
  •  Give it a name
  •  In the Sources section, click the ‘Add & Manager Source’ link, which will open a popup box. In this popup box, in the Locationssection, ensure you add all the Site Collection URLs that contain searchable content and for which you want to collect the crawl logs. After adding all the sources, then click Ok. Here is a screenshot from my tenant
  • You can click on the ‘Get Statistics’ button to show the Items count and size.
  • You can also click on the ‘Preview Results’ button which open a popup, then click on the ‘SharePoint’ tab to view the results listed.
  •  Finally, ‘Save’ your eDiscovery set.
 Now create a new Query. You can do this from left-side navigation or using the +new item link under ‘Search and Export’.
  • Give it a name
  • For ‘Sources’ click on ‘Modify Query Scope’ and in the pop select the eDiscovery set that was created in step 5.
  • Now click on the ‘Search’ button to see the statistics (items and size) updated under Sources and also check the results listed in theSharePoint tab down below.
  • Save your query.
Open up your Query and click the ‘Export’ button at the bottom of the page. This will lead to Export: New item page. In this page, we don’t have to change anything as we are not concerned with Exchange mailbox logs or the versions of SharePoint documents.
Note: If you checked the ‘Include versions for SharePoint documents’ checkbox, then be aware that this could increase the file size of the export depending on the size of your libraries that has versioning enabled.
Click OK & Download the report

Wednesday, November 2, 2016

Powershell to set Notification/maintenance banner in SharePoint sites

Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue
$maintenanceStartDate  = "10/04/2016 11:00:00 AM" # Date when the maintenance will start
$maintenanceEndDate    = "10/04/2016 12:00:00 PM" # Date when the maintenance will stop
$notificationStartDate = "10/04/2016 10:32:00 AM" # Date when the message will start being displayed
$notificationEndDate   = "10/04/2016 12:00:00 PM" # Date when the message will stop being displayed
$maintenanceLink       = "https://exploresharepointfeatures.com/SitePages/Outage.aspx"     # This link will only appear if the maintenance duration is defined.
$maintenanceType       = "MaintenanceWarning"    # OPTIONS ARE: MaintenancePlanned | MaintenanceWarning
$readOnlyDays          = -1   # duration days
$readOnlyHours         = 0   # duration hours.
$readOnlyMinutes       = 0   # duration minutes only appears if days and minutes are both zero

$maintenanceWindow = New-Object Microsoft.SharePoint.Administration.SPMaintenanceWindow
$maintenanceWindow.MaintenanceEndDate    = $maintenanceEndDate
$maintenanceWindow.MaintenanceStartDate  = $maintenanceStartDate
$maintenanceWindow.NotificationEndDate   = $notificationEndDate
$maintenanceWindow.NotificationStartDate = $notificationStartDate
$maintenanceWindow.MaintenanceType       = $maintenanceType
$maintenanceWindow.Duration              = New-Object System.TimeSpan( $readOnlyDays, $readOnlyHours, $readOnlyMinutes, 0)
$maintenanceWindow.MaintenanceLink       = $maintenanceLink


$webAppln = Get-SPWebApplication https://exploresharepointfeatures.com

# To set notification
foreach ($ContentDb in $webAppln.contentdatabases)
    {
$ContentDb.MaintenanceWindows.add($maintenanceWindow)
$ContentDb.Update()
}

# To clear notification
foreach ($ContentDb in $webAppln.contentdatabases)
    {
$ContentDb.MaintenanceWindows.Clear()
$ContentDb.Update()
}

# To set notification for sites under specific content db

$ContentDB1 = Get-SPContentDatabase -Identity 1244acad-27af-4017-812f-c8dfc3c5ce1a
$ContentDB1.MaintenanceWindows.add($maintenanceWindow)
$ContentDB1.Update()

# To clear notification for sites under specific content db

$ContentDB1 = Get-SPContentDatabase -Identity 1244acad-27af-4017-812f-c8dfc3c5ce1a
$ContentDB1.MaintenanceWindows.Clear()
$ContentDB1.Update()

Tuesday, November 1, 2016

SharePoint Features and GUID's list - Enable Disable Features in SharePoint Powershell

List of SharePoint Features

Feature ID
FeatureName
Scope
Description
DisplayName
1cc4b32c-299b-41aa-9770-67715ea05f25 AccSrvApplication Farm
$Resources:AccsrvWss;
AccSrvApplication
29ea7495-fca1-4dc6-8ac1-500c247a036e AccSrvMSysAso Web
Access Services System Objects
AccSrvMSysAso
a4d4ee2c-a6cb-4191-ab0a-21bb5bde92fb AccSrvRestrictedList Web
Access Services Restricted List Definition
AccSrvRestrictedList
bcf89eb7-bca1-4468-bdb4-ca27f61a2292 AccSrvShell Web
$Resources:AccsrvWss
AccSrvShell
744b5fd3-3b09-4da6-9bd1-de18315b045d AccSrvSolutionGallery Site
$Resources:AccsrvWss;
AccSrvSolutionGallery
d5ff2d2c-8571-4c3c-87bc-779111979811 AccSrvSolutionGalleryStapler Farm
$Resources:AccsrvWss;
AccSrvSolutionGalleryStapler
1a8251a0-47ab-453d-95d4-07d7ca4f8166 AccSrvUserTemplate Web
$Resources:AccsrvWss;
AccSrvUserTemplate
28101b19-b896-44f4-9264-db028f307a62 AccSrvUSysAppLog Web
Access Services User Application Log
AccSrvUSysAppLog
d2b9ec23-526b-42c5-87b6-852bd83e0364 AccSvcAddAccessApp
Access Service App
Access Service App
d250636f-0a26-4019-8425-a5232d592c09 AddDashboard Web
Add Dashboard
AddDashboard
fead7313-ae6d-45dd-8260-13b563cb4c71 AdminLinks Web
Central Administration Links
AdminLinks
b8f36433-367d-49f3-ae11-f7d76b51d251 AdminReportCore Site
Administrative Reporting Infrastructure
AdminReportCore
55312854-855b-4088-b09d-c5efe0fbf9d2 AdminReportCorePushdown Farm
Administrative Reporting Core Pushdown Feature
AdminReportCorePushdown
00bfea71-d1ce-42de-9c63-a44004ce0104 AnnouncementsList Web
Announcements Lists
AnnouncementsList
4bcccd62-dcaf-46dc-a7d4-e38277ef33f4 AssetLibrary Site
Asset Library
AssetLibrary
b21b090c-c796-4b0f-ac0f-7ef1659c20ae BaseSite Site
SharePoint Server Standard Site Collection features
BaseSite
97a2485f-ef4b-401f-9167-fa4fe177c6f6 BaseSiteStapling Farm
Base Site Features Stapling
BaseSiteStapling
99fe402e-89a0-45aa-9163-85342e865dc8 BaseWeb Web
SharePoint Server Standard Site features
BaseWeb
4f56f9fa-51a0-420c-b707-63ecbb494db1 BaseWebApplication WebApplication
SharePoint Server Standard Web application features
BaseWebApplication
00bfea71-1c5e-4a24-b310-ba51c3eb7a57 BasicWebParts Site
Basic Web Parts
BasicWebParts
3f59333f-4ce1-406d-8a97-9ecb0ff0337f BDR Web
Document Center Enhancements
BDR
f979e4dc-1852-4f26-ab92-d1b2a190afc9 BICenterDashboardsLib Web
Dashboards Library
BICenterDashboardsLib
26676156-91a0-49f7-87aa-37b1d5f0c4d0 BICenterDataconnectionsLib Web
DataConnections Library for PerformancePoint
BICenterDataconnectionsLib
3992d4ab-fa9e-4791-9158-5ee32178e88a BICenterSampleData Web
Business Intelligence center sample data
BICenterSampleData
739109bc-6733-4113-8af0-211a77eee402 BICollectionSP_BICollectionFeature Site
BICollectionSPFeature
BICollectionSP_BICollectionFeature
43f41342-1a37-4372-8ca0-b44d881e4434 BizAppsCTypes Site
SharePoint Portal Server Business Appications Content Type Definition
BizAppsCTypes
5a979115-6b71-45a5-9881-cdc872051a69 BizAppsFields Site
SPS Biz Apps Field Definition
BizAppsFields
065c78be-5231-477e-a972-14177cc5b3c7 BizAppsListTemplates Web
SharePoint Portal Server Status Indicator List template
BizAppsListTemplates
4248e21f-a816-4c88-8cab-79d82201da7b BizAppsSiteTemplates Site
BizApps Site Templates
BizAppsSiteTemplates
69cadbef-ac7d-494d-9d0a-39a26e008377 BPOSExtranetFlag Site
Office 365 only BPOSExtranetFlag Feature
aeef8777-70c0-429f-8a13-f12db47a6d47 BulkWorkflow Farm
Bulk workflow process button
BulkWorkflow
d992aeca-3802-483a-ab40-6c9376300b61 BulkWorkflowTimerJob WebApplication
Bulk Workflow Timer Job
BulkWorkflowTimerJob
239650e3-ee0b-44a0-a22a-48292402b8d8 CallTrackList Web
Phone Call Memo List
CallTrackList
a568770a-50ba-4052-ab48-37d8029b3f47 CirculationList Web
Circulation List
CirculationList
5682b40e-efae-4f44-bb04-gf2fdbb447af CmisConsumer Site
$Resources:spcmis;
CmisConsumer
1fce0577-1f58-4fc2-a996-6c4bcf59eeed CmisProducer Web
$Resources:spcmis;
CmisProducer
00bfea71-7e6d-4186-9ba8-c047ac750105 ContactsList Web
Contacts Lists
ContactsList
0f121a23-c6bc-400f-87e4-e6bbddf6916d ContentLightup Farm
Standard User Interface Items
ContentLightup
9a447926-5937-44cb-857a-d3829301c73b ContentTypeHub Site
Content Type Syndication Hub
ContentTypeHub
dd903064-c9d8-4718-b4e7-8ab9bd039fff ContentTypePublish Web
Content type publishing
ContentTypePublish
fead7313-4b9e-4632-80a2-ff00a2d83297 ContentTypeSettings Farm
Standard Content Type Settings Links
ContentTypeSettings
34339dc9-dec4-4256-b44a-b30ff2991a64 ContentTypeSyndication WebApplication
Content type syndication
ContentTypeSyndication
695b6570-a48b-4a8e-8ea5-26ea7fc1d162 CTypes Site
Standard Content Type Definitions
CTypes
00bfea71-de22-43b2-a848-c05709900100 CustomList Web
Custom Lists
CustomList
00bfea71-dbd7-4f72-b8cb-da7ac0440130 DataConnectionLibrary Web
Data Connections Feature
DataConnectionLibrary
cdfa39c6-6413-4508-bccf-bf30368472b3 DataConnectionLibraryStapling Farm
Data Connection Library
DataConnectionLibraryStapling
00bfea71-f381-423d-b9d1-da7a54c50110 DataSourceLibrary Web
Data Source Libraries
DataSourceLibrary
ca2543e6-29a1-40c1-bba9-bd8510a4c17b DeploymentLinks Web
Content Deployment
DeploymentLinks
00bfea71-6a49-43fa-b535-d15c05500108 DiscussionsList Web
Discussion Lists
DiscussionsList
1ec2c859-e9cb-4d79-9b2b-ea8df09ede22 DMContentTypeSettings Farm
DM Content Type Setting Links
DMContentTypeSettings
b50e3104-6812-424f-a011-cc90e6327318 DocId Site
Assigns unique, readable document IDs to documents in the site collection which can be used to retrieve items independent of their current location and helps manage and track information
Document ID Service
00bfea71-e717-4e80-aa17-d0c71b360101 DocumentLibrary Web
Document Libraries
DocumentLibrary
3a4ce811-6fe0-4e97-a6ae-675470282cf2 DocumentManagement WebApplication
Document Sets metadata synchronization
DocumentManagement
7ad5272a-2694-4349-953e-ea5ef290e97c DocumentRouting Web
Content Organizer
DocumentRouting
0c8a9a47-22a9-4798-82f1-00e62a96006e DocumentRoutingResources Site
Document Routing Resources
DocumentRoutingResources
3bae86a2-776d-499d-9db8-fa4cdc7884f8 DocumentSet Site
Provides the content types required for creating and using Document Sets can be used to manage multiple documents as a single entity. Each Document Set has its own version history, workflow, and shared metadata while each content item retains its own specific version history, workflow, and metadata.
DocumentSet
a140a1ac-e757-465d-94d4-2ca25ab2c662 DownloadFromOfficeDotCom Farm
Office.com Entry Points from SharePoint
DownloadFromOfficeDotCom
b6f344b4-1563-416b-96e0-a1c5d7002e5c ECMSPOLiteMarker Site
Office 365 only ECMSPOLiteMarker Feature
d44a1358-e800-47e8-8180-adf2d0f77543 EMailRouting Web
E-mail Integration with Content Organizer
EMailRouting
81ebc0d6-8fb2-4e3f-b2f8-062640037398 EnhancedHtmlEditing Farm
Enhanced Html Editing
EnhancedHtmlEditing
068bc832-4951-11dc-8314-0800200c9a66 EnhancedTheming Site
Enhanced Theming
EnhancedTheming
76d688ad-c16e-4cec-9b71-7b7f0d79b9cd EnterpriseWiki Web
Enterprise Wiki
EnterpriseWiki
a942a218-fa43-4d11-9d85-c01e3e3a37cb EnterpriseWikiLayouts Site
Enterprise Wiki Layouts
EnterpriseWikiLayouts
00bfea71-ec85-4903-972d-ebe475780106 EventsList Web
Events Lists
EventsList
e4e6a041-bc5b-45cb-beab-885a27079f74 ExcelServer Farm
Excel Services Farm Feature
ExcelServer
3cb475e7-4e87-45eb-a1f3-db96ad7cf313 ExcelServerSite Site
Excel Services Site Feature
ExcelServerSite
e15ed6d2-4af1-4361-89d3-2acf8cd485de ExcelServerWebApplication WebApplication
ExcelServerWebApplication
4c42ab64-55af-4c7c-986a-ac216a6e0c0e ExcelServerWebPart Site
Excel Services Site Feature
ExcelServerWebPart
c6ac73de-1936-47a4-bdff-19a6fc3ba490 ExcelServerWebPartStapler Farm
Excel Services Farm Feature
ExcelServerWebPartStapler
c85e5759-f323-4efb-b548-443d2216efb5 ExpirationWorkflow Site
Disposition Approval Workflow
ExpirationWorkflow
d3fdf251-b40e-48ba-9a09-df6905a48046 ExpressSiteComponents Web
Office 365 only ExpressSiteComponents Feature
e152e25a-3845-4499-9c18-62858f8b0a12 ExtendedDiagnosticProviders Farm
Extended Diagnostic Providers
ExtendedDiagnosticProviders
00bfea71-9549-43f8-b978-e47e54a10600 ExternalList Web
External Lists
ExternalList
58160a6b-4396-4d6e-867c-65381fb5fbc9 FacilityList Web
Resources List
FacilityList
d2d98dc8-c7e9-46ec-80a5-b38f039c16be FastFarmFeatureActivation Farm
FAST Search for SharePoint Master Job Provisioning
FastFarmFeatureActivation
08386d3d-7cc0-486b-a730-3b4cfe1b5509 FCGroupsList Web
Manage Resources
FCGroupsList
0125140f-7123-4657-b70a-db9aa1f209e5 FeaturePushdown Farm
Feature Pushdown Links
FeaturePushdown
ca7bd552-10b1-4563-85b9-5ed1d39c962a Fields Site
Standard Column Definitions
Fields
00bfea71-513d-4ca0-96c2-6a47775c0119 GanttTasksList Web
Gantt Chart Tasks Lists
GanttTasksList
6e8a2add-ed09-4592-978e-8fa71e6f117c GBWProvision Web
Group Work Provisioning
GBWProvision
3d25bd73-7cd4-4425-b8fb-8899977f73de GBWWebParts Web
GroupBoardWebParts
GBWWebParts
4AEC7207-0D02-4f4f-AA07-B370199CD0C7 GettingStarted Web
Provides a tile view experience for common SharePoint site actions
GettingStarted
319d8f70-eb3a-4b44-9c79-2087a87799d6 GlobalWebParts Farm
Global Web Parts
GlobalWebParts
00bfea71-3a1d-41d3-a0ee-651d11570120 GridList Web
Grid Lists
GridList
9c03e124-eef7-4dc6-b5eb-86ccd207cb87 GroupWork Web
Group Work Lists
GroupWork
d28bf940-11d3-496c-a9b9-22f60076a879 HelpCollectionLite Site
Office 365 P1 only HelpCollectionLite Feature
232b3f94-9d6e-4ed6-8d55-04d5a44ac449 HelpCollectionRemoveDefault Site
Office 365 only feature
071de60d-4b02-4076-b001-b456e93146fe HelpLibrary Site
Help
HelpLibrary
9e56487c-795a-4077-9425-54a1ecb84282 Hold Web
Hold and eDiscovery
Hold
9ad4c2d4-443b-4a94-8534-49a23f20ba3c HolidaysList Web
Holidays List
HolidaysList
1c6a572c-1b58-49ab-b5db-75caf50692e6 IMEDicList Web
Microsoft IME Dictionary List
IMEDicList
da2e115b-07e4-49d9-bb2c-35e93bb9fca9 InPlaceRecords Site
Enables the definition and declaration of records in-place. Instead of managing records in an archive, you can use in-place records management to manage records in the same document repository as active documents. When you declare that a document is a record, it remains in the same location, but it is managed as a record. You can decide what actions cause an active document to become a record, restrict who can perform records-related operations, restrict what actions users can perform on records, and specify a retention policy for active documents.
InPlaceRecords
a10b6aa4-135d-4598-88d1-8d4ff5691d13 ipfsAdminLinks Farm
Admin Links for InfoPath Forms Services.
ipfsAdminLinks
750b8e49-5213-4816-9fa2-082900c0201a IPFSAdminWeb Web
Admin Links for InfoPath Forms Services.
IPFSAdminWeb
c88c4ff1-dbf5-4649-ad9f-c6c426ebcbf5 IPFSSiteFeatures Site
InfoPath Forms Services support
IPFSSiteFeatures
15845762-4ec4-4606-8993-1c0512a98680 IPFSTenantFormsConfig Web
InfoPath Forms Services Tenant Administration
IPFSTenantFormsConfig
3c577815-7658-4d4f-a347-cfbb370700a7 IPFSTenantWebProxyConfig Web
InfoPath Forms Services Web Service Proxy Administration
IPFSTenantWebProxyConfig
a0e5a010-1329-49d4-9e09-f280cdbed37d IPFSWebFeatures Web
InfoPath Forms Services support
IPFSWebFeatures
00bfea71-5932-4f9c-ad71-1557e5751100 IssuesList Web
Issues Lists
IssuesList
fde5d850-671e-4143-950a-87b473922dc7 IssueTrackingWorkflow Site
Three-state workflow
IssueTrackingWorkflow
fde5d850-671e-4143-950a-87b473922dc7 IssueTrackingWorkflow Site
Office 365 only IssueTrackingWorkflow Feature
6e53dd27-98f2-4ae5-85a0-e9a8ef4aa6df LegacyDocumentLibrary Web
Document Libraries
LegacyDocumentLibrary
c845ed8d-9ce5-448c-bd3e-ea71350ce45b LegacyWorkflows Site
SharePoint 2007 Workflows
LegacyWorkflows
00bfea71-2062-426c-90bf-714c59600103 LinksList Web
Links Lists
LinksList
fc33ba3b-7919-4d7e-b791-c6aeccf8f851 ListTargeting Farm
List Content Targeting
ListTargeting
14aafd3a-fcb9-4bb7-9ad7-d8e36b663bbd LocalSiteDirectoryControl Site
SharePoint Portal Server Local Site Directory Capture Control
LocalSiteDirectoryControl
8f15b342-80b1-4508-8641-0751e2b55ca6 LocalSiteDirectoryMetaData Web
Local Site Directory MetaData Capture Feature
LocalSiteDirectoryMetaData
e978b1a6-8de7-49d0-8600-09a250354e14 LocalSiteDirectorySettingsLink Site
Site Settings Link to Local Site Directory Settings page.
LocalSiteDirectorySettingsLink
063c26fa-3ccc-4180-8a84-b6f98e991df3 LocationBasedPolicy Site
Allows list administrators to override content type retention schedules and set schedules on lists, libraries, and folders
Library and Folder Based Retention
c59dbaa9-fa01-495d-aaa3-3c02cc2ee8ff ManageUserProfileServiceApplication Farm
Manage Profile Service Application
ManageUserProfileServiceApplication
8a663fe0-9d9c-45c7-8297-66365ad50427 MasterSiteDirectoryControl Farm
SharePoint Portal Server Master Site Directory Capture Control
MasterSiteDirectoryControl
7201d6a4-a5d3-49a1-8c19-19c4bac6e668 MetaDataNav Web
Metadata Navigation and Filtering
MetaDataNav
5a020a4f-c449-4a65-b07d-f2cc2d8778dd MobileEwaFarm Farm
$Resources:xlsrv;
MobileEwaFarm
e995e28b-9ba8-4668-9933-cf5c146d7a9f MobileExcelWebAccess Site
Excel Mobile Viewer Feature
MobileExcelWebAccess
893627d9-b5ef-482d-a3bf-2a605175ac36 MobilePowerPointViewer Site
$Resources:pptservercore;
MobilePowerPointViewer
8dfaf93d-4471-9347-07368668ddaf MobileWordViewer Site
$Resources:waccore;
MobileWordViewer
f41cc668-37e5-4743-b4a8-74d1db3fd8a4 MobilityRedirect Web
Mobility Shortcut URL
MobilityRedirect
875d1044-c0cf-4244-8865-d2a0039c2a49 MossChart Site
Chart Web Part
MossChart
39dd29fb-b6f5-4697-b526-4d38de4893e5 MpsWebParts Web
Meetings Workspaces Web Parts
MpsWebParts
69cc9662-d373-47fc-9449-f18d11ff732c MySite Farm
My Site
MySite
863da2ac-3873-4930-8498-752886210911 MySiteBlog Site
My Site Blogs
MySiteBlog
0faf7d1b-95b1-4053-b4e2-19fd5c9bbc88 MySiteCleanup Farm
My Site Cleanup Feature
MySiteCleanup
49571cd1-b6a1-43a3-bf75-955acc79c8d8 MySiteHost Site
My Site Host
MySiteHost
5ede0a86-c772-4f1d-a120-72e734b3400c MySiteHostPictureLibrary Web
Shared Picture Library for Organizations logos
MySiteHostPictureLibrary
6928b0e5-5707-46a1-ae16-d6e52522d52b MySiteLayouts Site
My Site Layouts Feature
MySiteLayouts
6adff05c-d581-4c05-a6b9-920f15ec6fd9 MySiteNavigation Web
My Site Navigation
MySiteNavigation
f661430e-c155-438e-a7c6-c68648f1b119 MySitePersonalSite Site
My Site Personal Site Configuration
MySitePersonalSite
034947cc-c424-47cd-a8d1-6014f0e36925 MySiteQuickLaunch Web
My Site Layouts Feature
MySiteQuickLaunch
89e0306d-453b-4ec5-8d68-42067cdbf98e Navigation Site
Portal Navigation
Navigation
541f5f57-c847-4e16-b59a-b31e90e6f9ea NavigationProperties Web
Portal Navigation Properties
NavigationProperties
00bfea71-f600-43f6-a895-40c0de7b0117 NoCodeWorkflowLibrary Web
No-code Workflow Libraries
NoCodeWorkflowLibrary
683df0c0-20b7-4852-87a3-378945158fab ObaProfilePages Web
BDC Profile Pages Feature
ObaProfilePages
90c6c1e5-3719-4c52-9f36-34a97df596f7 ObaProfilePagesTenantStapling Farm
BDC Profile Pages Tenant Stapling Feature
ObaProfilePagesTenantStapling
d250636f-0a26-4019-8425-a5232d592c01 ObaSimpleSolution Web
Offline Synchronization for External Lists
ObaSimpleSolution
f9cb1a2a-d285-465a-a160-7e3e95af1fdd ObaStaple Farm
Offline Synchronization for External Lists
ObaStaple
0c504a5c-bcea-4376--b05e-cbca5ced7b4f OfficeWebApps Site
$Resources:waccore;
OfficeWebApps
c9c9515d-e4e2-4001-9050-74f980f93160 OffWFCommon Site
Microsoft Office Server workflows
OffWFCommon
8a4b8de2-6fd8-41e9-923c-c7c3c00f8295 OpenInClient Site
Open documents in client applications
OpenInClient
9b0293a7-8942-46b0-8b78-49d29a9edd53 OrganizationsClaimHierarchyProvider Farm
Organizations Claim Hierarchy Provider
OrganizationsClaimHierarchyProvider
bc29e863-ae07-4674-bd83-2c6d0aa5623f OSearchBasicFeature WebApplication
Office Server Site Search
OSearchBasicFeature
c922c106-7d0a-4377-a668-7f13d52cb80f OSearchCentralAdminLinks Farm
Search Central Admin Links
OSearchCentralAdminLinks
4750c984-7721-4feb-be61-c660c6190d43 OSearchEnhancedFeature WebApplication
Office Server Enterprise Search
OSearchEnhancedFeature
e792e296-5d7f-47c7-9dfa-52eae2104c3b OSearchHealthReports Site
$Resources:HealthReportsFeatureTitle;
OSearchHealthReports
09fe98f3-3324-4747-97e5-916a28a0c6c0 OSearchHealthReportsPushdown Farm
Health Reports Pushdown Feature
OSearchHealthReportsPushdown
edf48246-e4ee-4638-9eed-ef3d0aee7597 OSearchPortalAdminLinks Farm
Search Admin Portal Links and Navbar
OSearchPortalAdminLinks
068f8656-bea6-4d60-a5fa-7f077f8f5c20 OsrvLinks Web
Shared Services Administration Links
OsrvLinks
10bdac29-a21a-47d9-9dff-90c7cae1301e OssNavigation Web
Shared Services Navigation
OssNavigation
7acfcb9d-8e8f-4979-af7e-8aed7e95245e OSSSearchSearchCenterUrlFeature Web
Search Center URL
OSSSearchSearchCenterUrlFeature
7ac8cc56-d28e-41f5-ad04-d95109eb987a OSSSearchSearchCenterUrlSiteFeature Site
Site collection level Search Center Url Feature
OSSSearchSearchCenterUrlSiteFeature
14173c38-5e2d-4887-8134-60f9df889bad PageConverters WebApplication
Document to Page Converters
PageConverters
ed5e77f7-c7b1-4961-a659-0de93080fa36 PersonalizationSite Web
Personalization Site
PersonalizationSite
00bfea71-52d4-45b3-b544-b1c71b620109 PictureLibrary Web
Picture Libraries
PictureLibrary
5f3b0127-2f1d-4cfd-8dd2-85ad1fb00bfc PortalLayouts Site
Portal Layouts Feature
PortalLayouts
1a33a234-b4a4-4fc6--96c2-8bdb56388bd5 PowerPivot Feature Integration for Site Collections
PowerPivot Feature Integration for Site Collections
30a6403b-b04f-42cc-805a-bc4d77826253 PowerPointBroadcastServer Site
$Resources:pptservercore;
PowerPointBroadcastServer
5709298b-1876-4686-b257-f101a923f58d PowerPointServer Site
$Resources:pptservercore;
PowerPointServer
5d220570-df17-405e-b42d-994237d60ebf PPSDatasourceLib Web
PerformancePoint Data Source Library Template
PPSDatasourceLib
05891451-f0c4-4d4e-81b1-0dabd840bad4 PPSMonDatasourceCtype Site
PerformancePoint Datasource Content Type definition
PPSMonDatasourceCtype
a1cb5b7f-e5e9-421b-915f-bf519b0760ef PPSSiteCollectionMaster Site
PerformancePoint Services Site Collection Features
PPSSiteCollectionMaster
0b07a7f4-8bb8-4ec0-a31b-115732b9584d PPSSiteMaster Web
PerformancePoint Services Site Features
PPSSiteMaster
8472208f-5a01-4683-8119-3cea50bea072 PPSSiteStapling Farm
PPS Site Stapling
PPSSiteStapling
ee9dbf20-1758-401e-a169-7db0a6bbccb2 PPSWebParts Site
PerformancePoint Monitoring
PPSWebParts
f45834c7-54f6-48db-b7e4-a35fa470fc9b PPSWorkspaceCtype Site
PerformancePoint Content Type Definition
PPSWorkspaceCtype
481333e1-a246-4d89-afab-d18c6fe344ce PPSWorkspaceList Web
PerformancePoint Content List
PPSWorkspaceList
8581a8a7-cf16-4770-ac54-260265ddb0b2 PremiumSite Site
SharePoint Server Enterprise Site Collection features
PremiumSite
a573867a-37ca-49dc-86b0-7d033a7ed2c8 PremiumSiteStapling Farm
Premium Site Features Stapling
PremiumSiteStapling
0806d127-06e6-447a-980e-2e90b03101b8 PremiumWeb Web
SharePoint Server Enterprise Site features
PremiumWeb
0ea1c3b6-6ac0-44aa-9f3f-05e8dbe6d70b PremiumWebApplication WebApplication
SharePoint Server Enterprise Web application features
PremiumWebApplication
af847aa9-beb6-41d4-8306-78e41af9ce25 ProfileSynch Farm
Profile Synchronization Feature
ProfileSynch
192EFA95-E50C-475e-87AB-361CEDE5DD7F PromotedLinksList Web
This feature makes the Promoted Links list template available to this site
PromotedLinksList
22a9ef51-737b-4ff2-9346-694633fe4416 Publishing Web
Publishing
Publishing
d3f51be2-38a8-4e44-ba84-940d35be1566 PublishingLayouts Site
Page Layouts and Master Pages Pack
PublishingLayouts
a392da98-270b-4e85-9769-04c0fde267aa PublishingPrerequisites Site
Publishing Prerequisites
PublishingPrerequisites
aebc918d-b20f-4a11-a1db-9ed84d79c87e PublishingResources Site
Publishing Resources
PublishingResources
f6924d36-2fa8-4f0b-b16d-06b7250180fa PublishingSite Site
SharePoint Server Publishing Infrastructure
PublishingSite
001f4bd7-746d-403b-aa09-a6cc43de7942 PublishingStapling Farm
Publishing Features Stapling
PublishingStapling
20477d83-8bdb-414e-964b-080637f7d99b PublishingTimerJobs WebApplication
Publishing Timer Jobs
PublishingTimerJobs
94c94ca6-b32f-4da9-a9e3-1f3d343d7ecb PublishingWeb Web
SharePoint Server Publishing
PublishingWeb
915c240e-a6cc-49b8-8b2c-0bff8b553ed3 Ratings Site
Ratings
Ratings
5bccb9a4-b903-4fd1-8620-b795fa33c9ba RecordResources Site
Record Resources
RecordResources
e0a45587-1069-46bd-bf05-8c8db8620b08 RecordsCenter Web
Records Center Configuration
RecordsCenter
6d127338-5e7d-4391-8f62-a11e43b1d404 RecordsManagement Farm
Records Management
RecordsManagement
306936fd-9806-4478-80d1-7e397bfa6474 RedirectPageContentTypeBinding Web
SharePoint Portal Server Redirect Page Content Type Binding Feature
RedirectPageContentTypeBinding
e8734bb6-be8e-48a1-b036-5a40ff0b8a81 RelatedLinksScopeSettingsLink Web
Related Links scope settings page
RelatedLinksScopeSettingsLink
c5d947d6-b0a2-4e07-9929-8e54f5a9fff9 ReportCenterSampleData Web
Report Center Sample Data
ReportCenterSampleData
7094bd89-2cfe-490a-8c7e-fbace37b4a34 Reporting Site
Reporting
Reporting
2510d73f-7109-4ccc-8a1c-314894deeb3a ReportListTemplate Web
SharePoint Portal Server Report Library
ReportListTemplate
a44d2aa3-affc-4d58-8db4-f4a3af053188 ReviewPublishingSPD Site
Publishing Approval Workflow
ReviewPublishingSPD
19f5f68e-1b92-4a02-b04d-61810ead0409 ReviewPublishingSPD1033 Site
Publishing Workflow - SharePoint 2010 (en-US)
ReviewPublishingSPD1033
02464c6a-9d07-4f30-ba04-e9035cf54392 ReviewWorkflows Site
Routing Workflows
ReviewWorkflows
b5934f65-a844-4e67-82e5-92f66aafe912 ReviewWorkflowsSPD Site
Routing Workflows - SharePoint 2010
ReviewWorkflowsSPD
3bc0c1e1-b7d5-4e82-afd7-9f7e59b60409 ReviewWorkflowsSPD1033 Site
Routing Workflows - SharePoint 2010 (en-US)
ReviewWorkflowsSPD1033
636287a7-7f62-4a6e-9fcc-081f4672cbf8 ScheduleList Web
Schedule and Reservations List
ScheduleList
c65861fa-b025-4634-ab26-22a23e49808f SearchAdminWebParts Web
Microsoft Search Administration Web Parts
SearchAdminWebParts
1dbf6063-d809-45ea-9203-d3ba4a64f86d SearchAndProcess WebApplication
Search And Process
SearchAndProcess
5eac763d-fbf5-4d6f-a76b-eded7dd7b0a5 SearchExtensions Site
Search extensions
SearchExtensions
e09cefae-2ada-4a1d-aee6-8a8398215905 SearchServerWizardFeature Site
$Resources:SearchServerWizard_Feature_Title;
SearchServerWizardFeature
eaf6a128-0482-4f71-9a2f-b1c650680e77 SearchWebParts Site
Search Server Web Parts
SearchWebParts
f324259d-393d-4305-aa48-36e8d9a7a0d6 SharedServices Farm
Shared Services Infrastructure
SharedServices
5d86fce4-1d23-11df-85a4-a17a56d89593 ShellControl Site
Office 365 only
6c09612b-46af-4b2f-8dfc-59185c962a29 SignaturesWorkflow Site
Collect Signatures Workflow
SignaturesWorkflow
c4773de6-ba70-4583-b751-2a7b1dc67e3a SignaturesWorkflowSPD Site
Collect Signatures Workflow - SharePoint 2010
SignaturesWorkflowSPD
a42f749f-8633-48b7-9b22-403b40190409 SignaturesWorkflowSPD1033 Site
Collect Signatures Workflow - SharePoint 2010 (en-US)
SignaturesWorkflowSPD1033
57ff23fc-ec05-4dd8-b7ed-d93faa7c795d SiteHelp Site
Custom Site Collection Help
SiteHelp
fead7313-4b9e-4632-80a2-98a2a2d83297 SiteSettings Farm
Standard Site Settings Links
SiteSettings
a311bf68-c990-4da3-89b3-88989a3d7721 SitesList Web
Sites List creation feature
SitesList
937f97e9-d7b4-473d-af17-b03951b2c66b SkuUpgradeLinks Farm
Sku Upgrade Links
SkuUpgradeLinks
0be49fe9-9bc9-409d-abf9-702753bd878d SlideLibrary Web
Slide Library
SlideLibrary
65d96c6b-649a-4169-bf1d-b96505c60375 SlideLibraryActivation Farm
Slide Library Activation
SlideLibraryActivation
756d8a58-4e24-4288-b981-65dc93f9c4e5 SocialRibbonControl Farm
Social Tags and Note Board Ribbon Controls
SocialRibbonControl
612d671e-f53d-4701-96da-c3a4ee00fdc5 SpellChecking Farm
Spell Checking
SpellChecking
1f69e37c-7f07-4928-aa91-3a03e019d0e8 SPOUIRemovalPublic Site
Office 365 only SPOUIRemovalPublic Feature
713a65a1-2bc7-4e62-9446-1d0b56a8bf7f SPSDisco Farm
Portal DiscoPage Feature
SPSDisco
2ac1da39-c101-475c-8601-122bc36e3d67 SPSearchFeature WebApplication
Microsoft SharePoint Foundation Search feature
SPSearchFeature
c43a587e-195b-4d29-aba8-ebb22b48eb1a SRPProfileAdmin Farm
User Profile Administration Links
SRPProfileAdmin
35f680d4-b0de-4818-8373-ee0fca092526 SSSvcAdmin Web
Secure Store Service Admin
SSSvcAdmin
ee21b29b-b0d0-42c6-baff-c97fd91786e6 StapledWorkflows Farm
Office Workflows
StapledWorkflows
00bfea71-eb8a-40b1-80c7-506be7590102 SurveysList Web
Surveys Lists
SurveysList
00bfea71-a83e-497e-9ba0-7a5c597d0107 TasksList Web
Tasks Lists
TasksList
415780bf-f710-4e2c-b7b0-b463c7992ef0 TaxonomyFeatureStapler Farm
Taxonomy feature stapler
TaxonomyFeatureStapler
73ef14b1-13a9-416b-a9b5-ececa2b0604c TaxonomyFieldAdded Site
Register taxonomy site wide field added event receiver
TaxonomyFieldAdded
7d12c4c3-2321-42e8-8fb6-5295a849ed08 TaxonomyTenantAdmin Web
Taxonomy Tenant Administration
TaxonomyTenantAdmin
8fb893d6-93ee-4763-a046-54f9e640368d TaxonomyTenantAdminStapler Farm
Taxonomy Tenant Administration Stapler
TaxonomyTenantAdminStapler
48ac883d-e32e-4fd6-8499-3408add91b53 TaxonomyTimerJobs WebApplication
Create the taxonomy timer jobs
TaxonomyTimerJobs
00bfea71-4ea5-48d4-a4ad-7ea5c011abe5 TeamCollab Web
Team Collaboration Lists
TeamCollab
ff48f7e6-2fa1-428d-9a15-ab154762043d TemplateDiscovery Farm
Connect to Office Ribbon Controls
TemplateDiscovery
0a0b2e8f-e48e-4367-923b-33bb86c1b398 TenantAdminBDC Web
Tenant Business Data Connectivity Administration
TenantAdminBDC
b5d169c9-12db-4084-b68d-eef9273bd898 TenantAdminBDCStapling Farm
Tenant Business Data Connectivity Administration Stapling
TenantAdminBDCStapling
99f380b4-e1aa-4db0-92a4-32b15e35b317 TenantAdminDeploymentLinks Web
Tenant Administration Content Deployment Configuration
TenantAdminDeploymentLinks
98311581-29c5-40e8-9347-bd5732f0cb3e TenantAdminLinks Web
Tenant Administration Links
TenantAdminLinks
b738400a-f08a-443d-96fa-a852d0356bba TenantAdminSecureStore Web
$Resources:obacore;
TenantAdminSecureStore
6361e2a8-3bc4-4ca4-abbb-3dfbb727acd7 TenantAdminSecureStoreStapling Farm
Secure Store Service Stapling Feature
TenantAdminSecureStoreStapling
32ff5455-8967-469a-b486-f8eaf0d902f9 TenantProfileAdmin Web
Tenant User Profile Application
TenantProfileAdmin
3d4ea296-0b35-4a08-b2bf-f0a8cabd1d7f TenantProfileAdminStapling Farm
Tenant User Profile Application Stapling
TenantProfileAdminStapling
d5191a77-fa2d-4801-9baf-9f4205c9e9d2 TimeCardList Web
Time Card List
TimeCardList
c6561405-ea03-40a9-a57f-f25472942a22 TranslationWorkflow Site
Translation Management Workflow
TranslationWorkflow
82e2ea42-39e2-4b27-8631-ed54c1cfc491 TransMgmtFunc Farm
Translation Management Library
TransMgmtFunc
29d85c25-170c-4df9-a641-12db0b9d4130 TransMgmtLib Web
Translation Management Library
TransMgmtLib
2fa4db13-4109-4a1d-b47c-c7991d4cc934 UpgradeOnlyFile Web
$Resources:UpgradeOnlyFile_Feature_Title;
UpgradeOnlyFile
f0deabbb-b0f6-46ba-8e16-ff3b44461aeb UserMigrator Farm
Shared Service Provider User Migrator
UserMigrator
f63b7696-9afc-4e51-9dfd-3111015e9a60 V2VPublishedLinks Site
V2V Published Links Upgrade
V2VPublishedLinks
2fbbe552-72ac-11dc-8314-0800200c9a66 V2VPublishingLayouts Site
V2V Publishing Layouts Upgrade
V2VPublishingLayouts
7c637b23-06c4-472d-9a9a-7c175762c5c4 ViewFormPagesLockDown Site
When enabled, permissions for users with “limited access” permissions, such as Anonymous Users, are reduced, preventing access to Application pages including item properties or list views. Additionally, if a document, folder, or library has unique permissions, those users will not be able to:
Limited-access user permission lockdown mode
Use the drag and drop feature to upload documents
Browse to the affected folder
Use the Shared with feature
Open documents in the Office client
Some callout features on documents and folders will not render as expected.
7e0aabee-b92b-4368-8742-21ab16453d01 VisioProcessRepository Web
Visio Process Repository
VisioProcessRepository
7e0aabee-b92b-4368-8742-21ab16453d00 VisioProcessRepositoryFeatureStapling Farm
Visio Process Repository
VisioProcessRepositoryFeatureStapling
7e0aabee-b92b-4368-8742-21ab16453d02 VisioProcessRepositoryUs Web
Visio Process Repository
VisioProcessRepositoryUs
5fe8e789-d1b7-44b3-b634-419c531cfdca VisioServer Farm
Visio Web Access
VisioServer
9fec40ea-a949-407d-be09-6cba26470a0c VisioWebAccess Site
Visio Web Access
VisioWebAccess
3ce24023-95a1-4778-85b0-8e9b2bcacc80 WACentralAdminCustomReports Site
Web Analytics Central Admin Customize Reports
WACentralAdminCustomReports
786eaa5b-85d7-4ea0-8998-0b62c8befd94 WACentralAdminReports Site
Web Analytics Central Admin Reports
WACentralAdminReports
af6d9aec-7c38-4dda-997f-cc1ddbb87c92 WACustomReports Site
Web Analytics Customize Reports functionality
WACustomReports
c0c2628d-0f59-4873-9cba-100dad2313cb WAEnterpriseFeatureStapler Farm
Web Analytics Enterprise Feature Stapler
WAEnterpriseFeatureStapler
9d46d0d4-af7b-4f2e-8f84-9466ab25766c WAFeatureStapler Farm
Web Analytics Feature Stapler
WAFeatureStapler
c04234f4-13b8-4462-9108-b4f5159beae6 WAMaster Site
Advanced Web Analytics
WAMaster
2acf27a5-f703-4277-9f5d-24d70110b18b WAReports Site
Advanced Web Analytics Reports
WAReports
8e947bf0-fe40-4dff-be3d-a8b88112ade6 WAWhatsPopularWebPart Site
Web Analytics Web Part
WAWhatsPopularWebPart
00bfea71-c796-4402-9f2f-0eb9a6e71b18 WebPageLibrary Web
Wiki Page Library
WebPageLibrary
2ed1c45e-a73b-4779-ae81-1524e4de467a WebPartAdderGroups Site
Web Part Adder default groups
WebPartAdderGroups
d7670c9c-1c29-4f44-8691-584001968a74 WhatsNewList Web
What's New List
WhatsNewList
9c2ef9dc-f733-432e-be1c-2e79957ea27b WhereaboutsList Web
$Resources:core;
WhereaboutsList
00bfea71-d8fe-4fec-8dad-01c19a6e4053 WikiPageHomePage Web
Wiki Page Home Page
WikiPageHomePage
8c6a6980-c3d9-440e-944c-77f93bc65a7e WikiWelcome Web
WikiWelcome
WikiWelcome
1663ee19-e6ab-4d47-be1b-adeb27cfd9d2 WordViewer Site
$Resources:waccore;
WordViewer
00bfea71-4ea5-48d4-a4ad-305cf7030140 WorkflowHistoryList Web
Workflow History Lists
WorkflowHistoryList
00bfea71-2d77-4a75-9fca-76516689e21a workflowProcessList Web
WorkflowProcessList Feature
workflowProcessList
0af5989a-3aea-4519-8ab0-85d91abe39ff Workflows Site
Workflows
Workflows
00bfea71-1e1d-4562-b56a-f05371bb0115 XmlFormLibrary Web
XML Form Libraries
XmlFormLibrary