Microsoft ® Official Course Implementing Enterprise Content Management Microsoft SharePoint 2013 SharePoint Practice.

Slides:



Advertisements
Similar presentations
Microsoft ® Official Course Client-Side SharePoint Development SharePoint Practice Microsoft SharePoint 2013.
Advertisements

Implementing and Administering AD FS
Microsoft ® Official Course Interacting with the Search Service Microsoft SharePoint 2013 SharePoint Practice.
Microsoft SharePoint 2013 SharePoint 2013 as a Developer Platform
Managing Identity and Permissions
Microsoft ® Official Course Developing Remote-hosted Apps for SharePoint Microsoft SharePoint 2013 SharePoint Practice.
Microsoft ® Official Course Developing Optimized Internet Sites Microsoft SharePoint 2013 SharePoint Practice.
Microsoft ® Official Course Introducing Apps for SharePoint SharePoint Practice Microsoft SharePoint 2013.
Microsoft ® Official Course Developing Managed Metadata Solutions Microsoft SharePoint 2013 SharePoint Practice.
Tutorial 11: Connecting to External Data
SharePoint 2010 Business Intelligence Module 3: Business Intelligence Center.
PreserveDiscover In-Place Archive with secondary quota Available on-prem, online, or EOA Lync Archives into Exchange Search across Primary & Archive –
Understanding Active Directory
THE NEW WAY TO WORK TOGETHER Share 4 CreateControlProtect Create and organize content easily with the help of relevant discovered information Manage.
Welcome to the Nebraska SharePoint User Group May 7 th, 2008 Enterprise Content Management (ECM) in SharePoint Corey Erkes.
Module 4 Managing Client Access. Module Overview Configuring the Client Access Server Role Configuring Client Access Services for Outlook Clients Configuring.
Microsoft ® Official Course Module 9 Configuring Applications.
Implementing Dynamic Host Configuration Protocol
What’s New for IT Professionals in Microsoft® SharePoint® Server 2013 (Day 2) Sayed Ali (MCTS, MCITP, MCT, MCSA, MCSE ) Senior SharePoint.
Implementing Dynamic Host Configuration Protocol
Classroom User Training June 29, 2005 Presented by:
Module 8 Configuring and Securing SharePoint Services and Service Applications.
DocuShare Training Welcome to DocuShare Training.
Databases and Education Access Access Course Progression Access courses can be designed for intensive immersion or semester-long courses. Basic.
SharePoint and Open XML Using SharePoint as a Data Source for your custom Open XML Documents Presented by Becky Bertram MCSD, MCAD, MCTS
Configuring Encryption and Advanced Auditing
Module 14: Configuring Server Security Compliance
Managing User Desktops with Group Policy
Module 9 Configuring Messaging Policy and Compliance.
Module 10: Monitoring ISA Server Overview Monitoring Overview Configuring Alerts Configuring Session Monitoring Configuring Logging Configuring.
WCM Platform Improvements ECM and Enterprise Metadata Advanced Routing and Document Sets In Place Records Management.
Module 9 Planning a Disaster Recovery Solution. Module Overview Planning for Disaster Mitigation Planning Exchange Server Backup Planning Exchange Server.
Module 5 Configuring Authentication. Module Overview Lesson 1: Understanding Classic SharePoint Authentication Providers Lesson 2: Understanding Federated.
The SharePoint Shepherd’s Course for End Users Based on the book by Robert L. Bogue Copyright 2011 AvailTek LLC All Rights Reserved.
HOW SHAREPOINT WORKS By Gary Newman. Root Folder Virtual Directories SP Farm DNS Iterative Forward DNS query for A host record HTTP request HTML & JS.
Module 9 Configuring Messaging Policy and Compliance.
Module 7: Implementing Business Intelligence Solutions.
Ankur Kothari Microsoft Corporation. In-Place Archive with secondary quota Access documents with SkyDrive Pro Site Mailboxes enable better collaboration.
Module 10 Administering and Configuring SharePoint Search.
Module 5: Configuring Internet Explorer and Supporting Applications.
Module 14 Monitoring and Optimizing SharePoint Performance.
Module 6 Securing Content. Module Overview Administering SharePoint Groups Implementing SharePoint Roles and Role Assignments Securing and Auditing SharePoint.
Module 3 Configuring File Access and Printers on Windows 7 Clients.
Module 7 Planning and Deploying Messaging Compliance.
Module 6: Deploying and Managing Software by Using Group Policy.
Copyright © 2006 Pilothouse Consulting Inc. All rights reserved. Office Server Specific Web content management –Page structure, layouts, and controls –Publishing.
THE NEW WAY TO WORK TOGETHER Share 4 CreateControlProtect Create and organize content easily with the help of relevant discovered information Manage.
Information explosion 1.4X 44X Empower the UserEnable the Compliance Officer In Place and Extensible Easy for IT Exchange, SharePoint, Windows Outlook,
1 | SharePoint Saturday St. Louis 2015 EDISOVERY IN SHAREPOINT 2013 JODY SOCHA.
Copyright © 2006 Pilothouse Consulting Inc. All rights reserved. Search Overview Search Features: WSS and Office Search Architecture Content Sources and.
1 © Xchanging 2010 no part of this document may be circulated, quoted or reproduced without prior written approval of Xchanging. MOSS Training – UI customization.
Microsoft ® Official Course Structuring and Publishing Websites for All Users Microsoft SharePoint 2013 SharePoint Practice.
Microsoft ® Official Course Developing a Publishing Site for Web Content Microsoft SharePoint 2013 SharePoint Practice.
Coding Compliance Components Writing Custom Policies for Auditing, Expiration and More Jason Morrill Program Manager Windows SharePoint Services.
Module 1: Overview of Microsoft Office SharePoint Server 2007.
The SharePoint Shepherd’s Course for End Users Based on the book by Robert L. Bogue Copyright 2011 AvailTek LLC All Rights Reserved.
Microsoft ® Official Course Designing and Managing Features and Solutions Microsoft SharePoint 2013 SharePoint Practice.
NOTE: To change the image on this slide, select the picture and delete it. Then click the Pictures icon in the placeholder to insert your own image. Documents.
Microsoft ® Official Course Module 9 Working with Business Connectivity Services.
Krum Haesli, BotsBits SA Implementing Digital Asset Management with SharePoint 2013.
Implementing SharePoint 2013 ECM Solutions Robert Bogue, MVP The SharePoint Shepherd
Microsoft Virtual Academy Chris Oakman | Managing Partner Infrastructure Team | Eastridge Technology Curtis Sawin | Technical Solutions Professional |
Microsoft Office System 2007: Records Management Wes Preston Inetium.
Project Management: Messages
Dumps Questions
Microsoft Office System 2007: Records Management
SharePoint 2010 ECM Under the Hood Brian Caauwe
Links Launch Outlook Launch Skype Place Skype on Do Not Disturb.
03 | Basic Admin Capabilities
Objectives. Objectives Objectives Content Configure Microsoft Azure monitor.
Presentation transcript:

Microsoft ® Official Course Implementing Enterprise Content Management Microsoft SharePoint 2013 SharePoint Practice

Module Overview Working with eDiscovery Working with Content Management Automating Records Management

Lesson 1: Working with eDiscovery eDiscovery Overview eDiscovery Processes Objects in the eDiscovery API Creating Cases Creating Sets and Applying Holds Querying and Exporting Content

eDiscovery Overview eDiscovery Infrastructure eDiscovery Center eDiscovery Cases Configuring the Search Service Integrating with Exchange Installing the Exchange Web Services Managed API Configure a server-to-server trust relationship Add authorized users to the Discovery Management role

eDiscovery Processes eDiscovery Case Process: Create eDiscovery Sets Define content sources Define Filters Impose In-Place Holds Query Content Export Content Electronic Data Reference Model

Objects in the eDiscovery API Microsoft.Office.Server.Discovery Case SourceGroup Source SavedSearch Export Microsoft.Office.RecordsManagement.Preservation HoldInfo HoldSettings

Creating Cases using (SPSite discoveryCenter = new SPSite(" { SPWeb discoveryWeb = discoveryCenter.AllWebs.Add( "Cases/NewCase", "An Example Case", "This site is to demonstrate creating cases", 1033, "EDISC#1", false, false); Case discoveryCase = new Case (discoveryWeb); TimeSpan caseDuration = new TimeSpan(31, 0, 0, 0); DateTime closingDate = DateTime.Now.Add(caseDuration); discoveryCase.CloseCase(closingDate); discoveryWeb.Dispose(); }

Creating Sets and Applying Holds Creating a Set and Adding Content Sources Create a new list item in the eDiscovery Sets list Pass the item to the SourceGroup() constructor Create a new list item in the Sources list Pass the item to the Source() constructor Set properties on the Source object Call Update() on the source and set Applying Holds Get the eDiscovery set Loop through all the sources in the set Call the SiteHoldSettings.Add() method for each source

Querying and Exporting Content Creating Queries Add an SPItem to the Queries list. Use the SavedSearch class to set eDiscovery properties Creating Exports Add an SPItem to the Exports list.

Lesson 2: Working with Content Management Overview of Information Management Policy Components of Policies Demonstration: Creating and Exporting a Policy Programming Policy Introducing Document Sets Creating Document Sets in Code

Overview of Information Management Policy Policy Features: Retention Auditing Barcodes Labeling Configuring Audit Logs Configure the Secure Store Service Application Start the Secure Store Service Viewing Audit Logs

Components of Policies Policy XML Files Exporting Policies Importing Policies The Structure of a Policy Policy Collection Policy Policy Item Policy Feature Policy Resources

Demonstration: Creating and Exporting a Policy In this demonstration, you will see how to: Create an information management policy. Add a retention policy item. Add an auditing policy item. Add a barcode policy item. Export a policy and understand the policy XML file

Demonstration: Creating and Exporting a Policy

Programming Policy Importing a Policy Associating a Policy with a Content Type PolicyCollection.Add(siteCollection, policyXml); PolicyCatalog = new PolicyCatalog(siteCollection); Policy policy = policyCatalog.PolicyList[ "b6ff57d1-586c-4df5-b781-2a2865b75575"]; SPContentType docContentType = siteCollection.RootWeb.ContentTypes["Document"]; Policy.CreatePolicy(docContentType, policy);

Introducing Document Sets Why use document sets? Document Set Content Types Allowed Content Types Default Content Shared Columns Welcome Page

Creating Document Sets in Code Document Set APIs Creating a Document Set Obtain the parent folder Obtain the document set content type ID Call the DocumentSet.Create() method

Lesson 3: Automating Records Management Understanding the Content Organizer Creating Content Organizer Rules Introducing Document IDs Creating a Custom Document ID Provider Discussion: Document ID Scenarios

Understanding the Content Organizer Content Organizer The Drop Off Library Content Organizer Settings Content Organizer Rules

Creating Content Organizer Rules EcmDocumentRoutingWeb contentOrganizerSite = new EcmDocumentRoutingWeb(site); SPContentType contentType = site.ContentTypes["Document"]; SPList destinationLibrary = site.Lists["Archive"]; EcmDocumentRouterRule newRule = new EcmDocumentRouterRule(site); newRule.Name = "Move all documents to archive"; newRule.RouteToExternalLocation = false; newRule.Priority = "9"; newRule.ContentTypeString = contentType.Name; newRule.TargetPath = destinationLibrary.RootFolder.ServerRelativeUrl; newRule.Update();

Introducing Document IDs Document IDs and Static URLs Configuring Document IDs Document ID Service feature Document ID Settings Configuring the Search Service Document ID Providers Generating Document IDs Locating a document: By using the Search Service By using the document ID provider

Creating a Custom Document ID Provider Custom Document ID Provider GenerateDocumentId GetDocumentUrlsById GetSampleDocumentIdText DoCustomSearchBeforeDefaultSearch Installing and Uninstalling a Document ID Provider DocumentId.SetProvider() DocumentId.SetDefaultProvider()

Discussion: Document ID Scenarios Discuss the following scenarios with the class: Integrating Document Libraries with an External System Generating Bar Codes Locating Documents without Using Search

Lab: Implementing Content Management Functionality Exercise 1: Creating a Custom Document ID Provider Exercise 2: Registering a Custom Document ID Provider Exercise 3: Applying a Custom Audit Policy

Lab Scenario The Finance team at Contoso uses a proprietary accounting system to manage sales ledgers and purchase ledgers. At the same time, invoices are stored in various document libraries on the SharePoint intranet portal. The team wants to make it easier to correlate invoices on SharePoint with items on the sales ledger. To assist the team, you will implement various document management features on the SharePoint intranet portal. First, you will implement a document ID provider to generate a unique document ID for every document. The

Lab Scenario Sales team can record the document ID on the sales ledger, and use the ID to retrieve the document quickly from SharePoint even if it has been moved. Next, you will configure and apply an auditing policy that ensures document reading and writing operations are recorded.

Lab Review

Lab Discussion Questions Discuss the following questions with the students: The custom document ID provider you created assigned documents IDs in the format "Contoso123456". Is it possible to create these document IDs by using the default provider? You have installed your solution in a site collection. The audit policy seems to have been created and assigned to the Document content type correctly. However no information appears in the audit logs. What do you think is prevented the auditing from working correctly?

Module Review and Takeaways Review Question(s)