Audit Management for EMC Documentum Web Development Kit 6.7-based Applications

Size: px
Start display at page:

Download "Audit Management for EMC Documentum Web Development Kit 6.7-based Applications"

Transcription

1 White Paper Audit Management for EMC Documentum Abstract This white paper explains the process of enabling, searching, and purging audit on specific types of objects in Web Development Kit-based applications. June 2011

2 Copyright 2011 EMC Corporation. All Rights Reserved. EMC believes the information in this publication is accurate as of its publication date. The information is subject to change without notice. The information in this publication is provided as is. EMC Corporation makes no representations or warranties of any kind with respect to the information in this publication, and specifically disclaims implied warranties of merchantability or fitness for a particular purpose. Use, copying, and distribution of any EMC software described in this publication requires an applicable software license. For the most up-to-date listing of EMC product names, see EMC Corporation Trademarks on EMC.com. VMware is a registered trademark of VMware, Inc. in the United States and/or other jurisdictions. All other trademarks used herein are the property of their respective owners. Part Number h8823 2

3 Table of Contents Executive summary... 4 Audience...4 User Privilege Requirements... 4 Auditing by Object Type...7 Use case for auditing by Object type...10 Auditing by Object instance...13 Auditing by events for all objects in the repository...15 dm_auditmgt and Job Performance Impact...18 Search audit...19 Viewing, verifying, or purging audit trails...21 Audit policy...22 Conclusion

4 Executive summary This white paper explains the process of enabling, searching, and purging audit on specific types of objects in Web Development Kit-based applications. Critical documents must be monitored, and changes must be logged to enable changes to be tracked and verified later. This paper describes use cases and behavior of content stored in audit records. Auditing is a security feature for monitoring events that occur in a repository or application. Auditing an event creates an audit trail, a history in the repository of the occurrence of the event. Audit information can be used to analyze the pattern to access an object, monitor the activity of a specific user, record all or specific events in the repository, and so on. An audit trail is a recorded history of event occurrences that have been marked for auditing. Each occurrence is recorded in one audit trail record. The server stores audit trail records as objects in the repository. Depending on the event, the objects are dm_audittrail, dm_audittrail_acl, and dm_audittrail_group objects. Auditing an event stores pertinent data in the audit trail object, such as when the event occurred and what object was involved. Audience This white paper is intended for customers, partners, and consultants who are planning to track and monitor changes to their critical documents, effectively. User Privilege Requirements Audit management requires extended privileges. The user who does not have the extended privileges can only search and view the audit trail created in the repository. Audit management, administration functionality, is available as a node in Documentum Administrator. Users who do not have extended privileges, can view only the Search Audit and Audit Policies options in the Audit Management page. 4

5 Figure 1. User without extended privileges A user with the Config, View and Purge audit extended privileges can create audit rules. This privilege is granted when the user is created. To create a user with the required audit privileges: 1. Log in to Documentum Administrator as an Admin user. 2. Navigate to Administration > User Management > Users. 3. Select File > New User. The New user creation page appears. 4. Enter the required fields such as User Name, Login Name, Address, and so on. 5. In the Extended Privileges drop-down list, select the Config, View and Purge Audit privilege. 5

6 Figure 2. New User creation page with extended privileges 6. Click OK. The new user can create audit rules based on object type, object instance, and events. An existing user can also grant extended audit privileges. To grant the extended audit privileges: 1. Log in to Documentum Administrator as an Admin user. 2. Navigate to Administration > User Management > Users. 3. Right-click a user name and select Properties. 4. In the Extended Privileges drop-down list, select the Config, View and Purge Audit privilege. 6

7 Figure 3. User with extended privileges Users with extended privileges or permissions can create audit rules based on object type, object instance, and events. Auditing by Object Type Auditing by object type creates audit trails for events for all objects of a specific type. You must have the Config Audit privileges to configure auditing, view audit privileges to view audit trails, and purge audit privileges to remove audit trails from a repository. To audit by object type: 1. Log in to Documentum Administrator as a user with the extended privilege for auditing. 2. Navigate to Administration > Audit Management. The Audit Management list page appears. 3. Click Manage Auditing by Object Type. The Choose a type page appears. The object locator lists aspect types and existing standard types. Note: To audit object instances with aspect attributes, you must register the related aspect type for auditing. 7

8 Figure 4. Object type selector 4. Select a type to audit, and click OK. The Register Audit page appears with the selected object type. Figure 5. Register audit before event selection 5. Click Add Audit. A detailed Register Audit page appears. 8

9 Figure 6. Event and attribute selection for the dm_document object type 6. Click the Select attributes link to select specific attributes to audit. All attributes specific to the type selected in Step 2 are listed. All attributes are audited if you do not select any attribute. 7. Click Add to select an event on which the audit trail must be generated. You can select more than one event. 8. Select the required attributes and events and click OK. The summary of the audit is displayed. You can edit the audit or unaudit the audit. Using the summary, all objects of type dm_document will generate an audit trail when attributes, keywords, and title are edited and saved. 9. Select the type to unaudit and click Unaudit to remove the audit. 9

10 Figure 7. Register audit summary after event and attribute selection 10. Click OK to save your changes. Use case for auditing by Object type You have registered an audit based on the dm_document object type. As a result, when you create an object of type dm_document and add or edit keywords and title, an audit trail is generated. To create an object of type dm_document and add or edit keywords and title: 1. Select File > New document. 2. Specify an object name and click Next. 3. Add the title and keywords. For example, specify instance, title1 and key1, key2, and key3, respectively. 10

11 Figure 8. New document creation 4. Click Finish. Now, a new audit trail record is generated. You can use the Search Audit option to set the query criteria that retrieve the required audit trails. Execute the following DQL command in the DQL editor: Select * from dm_audittrail where object_type = 'dm_document' and event_name='dm_save' order by time_stamp desc If you want to run a search based on attributes added in the audit rule, modify the query as follows: Select attribute_list_old, attribute_list from dm_audittrail where object_type = 'dm_document' and event_name='dm_save' order by time_stamp desc The attribute_list_old attribute contains the previous value(s) for the attribute and the attribute_list attribute contains the current value(s). In the example, we added the single-valued Title attribute, and a repeating attribute, Keyword, in the attributes to audit. When you modify these values and save the dm_document object, an audit trail is generated. For example, an object is created with the title as title1 and keyword values as key1, key2, key3. If you change the value of the title from title1 to title1updated and the value of keywords from key2 to key2updated, the following audit trail is generated for the specified query: 11

12 Select attribute_list_old, attribute_list from dm_audittrail where object_type = 'dm_document' and event_name='dm_save' and object_name= audit_test1 attribute_list_old keywords="'','',''", title="word 97/2000 Document" keywords=, key2, title= title1 attribute_list keywords="'key1','key2','key3'", title="title1" keywords=, key2updated, title= title1updated The attribute_list_old attribute contains the previous values of the audited attributes and the attribute_list attribute contains the current values. In the case of single-valued attributes, if you consider the values in the audit trail, the old value is replaced by the new value. In the case of repeating attributes, only the index in which the value is modified is displayed. The common values or unchanged values should not be part of any list. If the index positions [0] and [2] of keywords are not modified, only position [1] is modified from key2 to key2updated. Hence, the index position [1] of keywords contains the previous value and the current value, and the other index positions that are unchanged, are blank. Let us consider some more examples by appending, deleting, and shuffling values to the keywords attribute. attribute_list_old attribute_list keywords="'','',''", title="word 97/2000 Document" keywords=, key2, title= title1 keywords=,,,, keywords="'key1','key2','key3'", title="title1" keywords=, key2updated, title= title1updated keywords=,,, key4, key5 The third entry in the table is the result displayed where two values are added to the keywords indices [3] and [4] whose previous values were blank. Since you have not modified the value for title, it is not reflected in the attribute_lists. attribute_list_old attribute_list keywords="'','',''", title="word 97/2000 Document" keywords=, key2, title= title1 keywords=,,,, keywords=,, key3, key4 keywords="'key1','key2','key3'", title="title1" keywords=, key2updated, title= title1updated keywords=,,, key4, key5 keywords=,, key4, key5 The fourth entry in the table shows the search result after the index position [2] is deleted, when the value key3 is deleted from keywords. When a value in the index position [2] is deleted, the value at [3] and [4] are copied to the positions [2] and [3]. Hence, the positions [2] and [3] are indicated as modified values and the lists show the previous and current values of these indices. 12

13 attribute_list_old keywords="'','',''", title="word 97/2000 Document" keywords=, key2, title= title1 keywords=,,,, keywords=,, key3, key4 keywords= key1, key2, key4, key5 attribute_list keywords="'key1','key2','key3'", title="title1" keywords=, key2updated, title= title1updated keywords=,,, key4, key5 keywords=,, key4, key5 keywords= key5, key4, key1, key2 The fifth entry is the result of shuffling the values. Since each index position has changed, all values are included in the list. Auditing by Object instance Auditing by object instance creates audit trails for events for a specific object in the repository. You must have the Config Audit privilege to audit object instances. To audit by object instance: 1. Log in to Documentum Administrator as a user with the extended privilege for auditing. 2. Navigate to Administration > Audit Management. The Audit Management list page appears. 3. Click Manage Auditing by Object Instances. The Choose Objects page appears. 4. Select the required objects using the object selector and click OK. By default, the Choose Objects page displays the cabinets in the repository. Click a cabinet name or folder name within a cabinet to browse to the required documents. 13

14 Figure 9. Object selector 5. Select an object in the list on the left and move it to the list on the right. Each selected object is audited separately. 6. Click OK. The Register Audit page where you can select the events for the selected objects, appears. Figure 10. Register audit before event selection 14

15 7. When you select one of the objects in the list, the Edit and Unaudit buttons are enabled so that the events and the attributes on which the audit trail must be generated, can be added to the audit trail. Note: All attributes are audited if you do not select any attribute. 8. Click Edit. A detailed Register Audit page appears. 9. Specify the audit criteria and audit events for the object instances. Figure 11. Events and attribute selector for the object instance 10. Click OK after selecting the required events and attributes. In the example we are currently considering, the image001.jpg object generates an audit trail on the dm_save event, and the data structures and algorithms.pdf object generates an audit trail when a checkout or checkin operation is performed. 11. Select the objects to unaudit and click Remove to remove the selected audit. 12. Click OK to register/unregister the audit. The use case described for auditing by object type is valid for auditing by instance and audit trail will be generated whenever the object image001.jpg is saved. Auditing by events for all objects in the repository You must have Config Audit privileges to audit all objects in the repository. To enable auditing for all objects in the repository: 1. Log in to Documentum Administrator as a user with extended privileges for auditing. 15

16 2. Navigate to Administration > Audit Management. The Audit Management list page appears. 3. Click Manage Auditing by events selected for all objects in the repository. The Register Audit page appears. Figure 12. Register audit before event selection 4. Click Add to add events. The Event Selector page appears. 16

17 Figure 13. Event selector page 5. Select the events required for auditing and click OK. For instance, select dm_save. All objects in the repository will generate audit trail when the object is saved. 6. Select the event to be unaudited and click Remove to remove the audit. Figure 14. Register audit after event selection 17

18 7. Click OK to register or unregister the audit. dm_auditmgt and Job Performance Impact Auditing by events for all objects in the repository will affect the performance of the application, considerably, because an audit trail is generated every time the specified event occurs (dm_save in the above example). If the audit trail entries are not removed periodically, the tables for the dm_audittrail object type can grow unwieldy, and performance will degrade when audited events occur. To delete audit entries that are not required or audit entries that occurred within a specified time frame, you can use the dm_auditmgt job. Navigate to Job Management > Jobs to locate this job. Auditing by events for all objects in the repository will affect the performance of the application, considerably, because an audit trail is generated every time the specified event occurs (dm_save in the above example). If the audit trail entries are not removed periodically, the tables for the dm_audittrail object type can grow unwieldy, and performance will degrade when audited events occur. To delete audit entries that are not required or audit entries that occurred within a specified time frame, you can use the dm_auditmgt job. Navigate to Job Management > Jobs to locate this job. Figure 15. dm_auditmgt Audit Job You can pass the following arguments to this job: Cutoff days: A minimum age in days, of objects to delete. All audit trail objects older than the specified number of days, which meet the specified qualification, are deleted. 18

19 Custom predicate: A where clause qualification for the query that selects audit trail entries for deletion. If you do not specify a value for the custom_predicate or cutoff_days argument, all system-generated dm_audittrail entries older than 90 days, are deleted. For more information about all arguments, see the Content Server Administrator Guide. Search audit The Search audit feature enables you to search and view audit trails. You must have the View Audit extended privileges to search and view existing audit trails. To search an audit trail: 1. Log in to Documentum Administrator as a user with extended privileges for auditing. 2. Navigate to Administration > Audit Management. The Audit Management list page appears. 3. Click Search Audit. The Search Criteria page appears. Figure 16. Search by criteria defined 4. Select the DQL option, for which you can use the clause in DQL statements specified in the Use case for auditing by Object type section. 19

20 Figure 17. Search by DQL 5. Click OK. All audit trails matching the DQL query or selection criteria are displayed. You can sort the audit trails by clicking the Object Name, Event Name, User Name, or Date Created column. Figure 18. Audit trail listing page 20

21 Viewing, verifying, or purging audit trails You can view the properties of an audit trail after performing a search operation. To view the audit trail: 1. Select the audit trail in the Audit Trails page. 2. Select View > Properties > Info. Alternatively, you can right-click and select Properties to view the audit trail. The Info page with attribute name and value, appears. Figure 19. View audit properties Note: You can verify only signed audit trails. To verify an audit record: 1. Select an audit trail in the Audit Trails page. 2. Select Tools > Verify audit trail. Alternatively, right-click an audit trail and select Tools > Verify Audit Record. You must have Purge Audit privileges to purge audit records. If the audit record is protected by an audit policy, you can purge the record only if the purge policy is assigned to you or the group to which you belong. To purge an audit record: 1. Select one or more audit trails in the Audit Trails page. 2. Select Tools > Purge Audit Record(s). 21

22 Alternatively, right-click an audit trail and select Tools > Purge Audit Record(s). Note: To purge all audit records, without selecting any object in the Audit Trails page, select Tools > Purge all audit records. Audit policy An audit policy ensures that only users or groups that are specified in the Purge policy can delete an audit record. If an unauthorized user or group attempts to delete the audit record, Content Server throws an error message. If multiple policies are associated with a user, the policy with the highest permissions, is in effect. Audit policies specify users, groups, or roles that can purge audit trails. You must be an Install Owner to access and manage audit policies. Other users can only view the list of audit policies. To find the Install owner later, dm_server_config can be used. (The value of attribute r_install_owner ). To create an audit policy: 1. Log in to Documentum Administrator as a user with the extended privilege for auditing. 2. Navigate to Administration > Audit Management. The Audit Management list page appears. 3. Click the Audit policies link. The available audit policies are displayed in the datagrid. Figure 20. Audit policy listing page 4. Select File > New > Audit policy. The New Audit policy page appears. 22

23 5. Specify the name of the audit policy, the user/group/role to which this audit policy is assigned, and the policy rules. Figure 21. New audit policy page For example, consider the following audit policy where the accessor name is set to Administrator, and object_type and event name are added to the Audit policy rules. Figure 22. Audit Policy example 23

24 After the audit policy is created, whenever an audit trial is generated for the sample_type object type on the dm_save event, those records can be processed (verified/purged) only by the Administrator. Conclusion The paper explains the user privileges required to configure, view and purge audit. You can use it as a step-by-step guide to enable audit for repository objects based on object type, object instance, and user events specific to one or all objects. It explains configuring audit policies, a set of use cases on how effectively an attribute change can be captured on critical documents, and the different ways to search for audit trail records that are logged for a particular object. If all the objects in the repository are audited, it may cause performance issues based on the system load, because every event generates an audit trail record. You can run the dm_auditmgt Job to purge old records after specifying a duration. 24

EMC Documentum Business Process Suite

EMC Documentum Business Process Suite EMC Documentum Business Process Suite Version 6.5 SP1 Sample Application Tutorial P/N 300-008-170 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright

More information

EMC Documentum Content Services for SAP CRM Usage and Future Prospects

EMC Documentum Content Services for SAP CRM Usage and Future Prospects EMC Documentum Content Services for SAP CRM Usage and Future Prospects A Detailed Review Abstract The EMC Documentum Content Services for SAP (CSSAP) application integrates the Documentum content management

More information

EMC Documentum Interactive Delivery Services Accelerated: Step-by-Step Setup Guide

EMC Documentum Interactive Delivery Services Accelerated: Step-by-Step Setup Guide White Paper EMC Documentum Interactive Delivery Services Accelerated: Step-by-Step Setup Guide A Detailed Review Abstract This white paper is a step-by-step setup guide for users who would like to utilize

More information

DEPLOYING WEBTOP 6.8 ON JBOSS 6.X APPLICATION SERVER

DEPLOYING WEBTOP 6.8 ON JBOSS 6.X APPLICATION SERVER DEPLOYING WEBTOP 6.8 ON JBOSS 6.X APPLICATION SERVER ABSTRACT This white paper explains how to deploy Webtop 6.8 on JBoss 6.x application server. November 2014 EMC WHITE PAPER To learn more about how EMC

More information

DEPLOYING EMC DOCUMENTUM BUSINESS ACTIVITY MONITOR SERVER ON IBM WEBSPHERE APPLICATION SERVER CLUSTER

DEPLOYING EMC DOCUMENTUM BUSINESS ACTIVITY MONITOR SERVER ON IBM WEBSPHERE APPLICATION SERVER CLUSTER White Paper DEPLOYING EMC DOCUMENTUM BUSINESS ACTIVITY MONITOR SERVER ON IBM WEBSPHERE APPLICATION SERVER CLUSTER Abstract This white paper describes the process of deploying EMC Documentum Business Activity

More information

EMC Documentum Content Services for SAP iviews for Related Content

EMC Documentum Content Services for SAP iviews for Related Content EMC Documentum Content Services for SAP iviews for Related Content Version 6.0 Administration Guide P/N 300 005 446 Rev A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000

More information

Using Group Policy to Manage and Enforce ACL on VNX for File P/N 300-011-877 REV A01 February 2011

Using Group Policy to Manage and Enforce ACL on VNX for File P/N 300-011-877 REV A01 February 2011 EMC VNX Series Release 7.0 Using Group Policy to Manage and Enforce ACL on VNX for File P/N 300-011-877 REV A01 February 2011 This technical note contains information on these topics: Business problem...

More information

REMOTE KEY MANAGEMENT (RKM) ENABLEMENT FOR EXISTING DOCUMENTUM CONTENT SERVER DEPLOYMENTS

REMOTE KEY MANAGEMENT (RKM) ENABLEMENT FOR EXISTING DOCUMENTUM CONTENT SERVER DEPLOYMENTS REMOTE KEY MANAGEMENT (RKM) ENABLEMENT FOR EXISTING DOCUMENTUM CONTENT SERVER DEPLOYMENTS White Paper ABSTRACT This white paper provides detailed overview of how to enable Remote Key Management (RKM) for

More information

EMC ApplicationXtender Server

EMC ApplicationXtender Server EMC ApplicationXtender Server 6.5 Monitoring Guide P/N 300-010-560 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 1994-2010 EMC Corporation. All

More information

EMC Documentum Webtop

EMC Documentum Webtop EMC Documentum Webtop Version 6.5 User Guide P/N 300 007 239 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 1994 2008 EMC Corporation. All rights

More information

Process Integrator Deployment on IBM Webspher Application Server Cluster

Process Integrator Deployment on IBM Webspher Application Server Cluster White Paper Process Integrator Deployment on IBM Webspher Application Server Cluster A user guide for deploying Process integrator on websphere application server 7.0.0.9 cluster Abstract This paper describes

More information

EMC ViPR Controller. Version 2.4. User Interface Virtual Data Center Configuration Guide 302-002-416 REV 01 DRAFT

EMC ViPR Controller. Version 2.4. User Interface Virtual Data Center Configuration Guide 302-002-416 REV 01 DRAFT EMC ViPR Controller Version 2.4 User Interface Virtual Data Center Configuration Guide 302-002-416 REV 01 DRAFT Copyright 2014-2015 EMC Corporation. All rights reserved. Published in USA. Published November,

More information

APPLE PUSH NOTIFICATION IN EMC DOCUMENTUM MOBILE APPLICATION

APPLE PUSH NOTIFICATION IN EMC DOCUMENTUM MOBILE APPLICATION White Paper R APPLE PUSH NOTIFICATION IN EMC R DOCUMENTUM MOBILE APPLICATION Abstract This white paper explains the Integration of Apple push notification service in EMC Documentum Mobile application.

More information

EMC Documentum Content Management Interoperability Services

EMC Documentum Content Management Interoperability Services EMC Documentum Content Management Interoperability Services Version 6.7 SP1 Release Notes EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com EMC believes the information

More information

EMC Documentum Business Activity Monitor

EMC Documentum Business Activity Monitor EMC Documentum Business Activity Monitor Version 6.5 SP1 Implementation Guide P/N 300-008-214 A02 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 2009

More information

EMC Documentum Connector for Microsoft SharePoint

EMC Documentum Connector for Microsoft SharePoint EMC Documentum Connector for Microsoft SharePoint Version 7.1 Installation Guide EMC Corporation Corporate Headquarters Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Legal Notice Copyright 2013-2014

More information

Configuring and Monitoring Event Logs

Configuring and Monitoring Event Logs Configuring and Monitoring Event Logs eg Enterprise v5.6 Restricted Rights Legend The information contained in this document is confidential and subject to change without notice. No part of this document

More information

EMC ApplicationXtender Server

EMC ApplicationXtender Server EMC ApplicationXtender Server 6.0 Monitoring Guide P/N 300 008 232 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 1994 2009 EMC Corporation. All

More information

EMC ViPR Controller Add-in for Microsoft System Center Virtual Machine Manager

EMC ViPR Controller Add-in for Microsoft System Center Virtual Machine Manager EMC ViPR Controller Add-in for Microsoft System Center Virtual Machine Manager Version 2.3 Installation and Configuration Guide 302-002-080 01 Copyright 2013-2015 EMC Corporation. All rights reserved.

More information

BusinessObjects Enterprise XI Release 2

BusinessObjects Enterprise XI Release 2 BusinessObjects Enterprise XI Release 2 How to configure an Internet Information Services server as a front end to a WebLogic application server Overview Contents This document describes the process of

More information

AvePoint SearchAll 3.0.2 for Microsoft Dynamics CRM

AvePoint SearchAll 3.0.2 for Microsoft Dynamics CRM AvePoint SearchAll 3.0.2 for Microsoft Dynamics CRM Installation and Configuration Guide Revision C Issued February 2014 1 Table of Contents Overview... 3 Before You Begin... 4 Supported and Unsupported

More information

Copyright 2013 EMC Corporation. All Rights Reserved.

Copyright 2013 EMC Corporation. All Rights Reserved. White Paper INSTALLING AND CONFIGURING AN EMC DOCUMENTUM CONTENT TRANSFORMATION SERVICES 7.0 CLUSTER TO WORK WITH A DOCUMENTUM CONTENT SERVER 7.0 CLUSTER IN SECURE SOCKETS LAYER Abstract This white paper

More information

IBM WEBSPHERE LOAD BALANCING SUPPORT FOR EMC DOCUMENTUM WDK/WEBTOP IN A CLUSTERED ENVIRONMENT

IBM WEBSPHERE LOAD BALANCING SUPPORT FOR EMC DOCUMENTUM WDK/WEBTOP IN A CLUSTERED ENVIRONMENT White Paper IBM WEBSPHERE LOAD BALANCING SUPPORT FOR EMC DOCUMENTUM WDK/WEBTOP IN A CLUSTERED ENVIRONMENT Abstract This guide outlines the ideal way to successfully install and configure an IBM WebSphere

More information

DELETE DUPLICATE EMAILS IN THE EMC EMAILXTENDER ARCHIVE SYSTEM USING THE MSGIDCRACKER UTILITY

DELETE DUPLICATE EMAILS IN THE EMC EMAILXTENDER ARCHIVE SYSTEM USING THE MSGIDCRACKER UTILITY White Paper DELETE DUPLICATE EMAILS IN THE EMC EMAILXTENDER ARCHIVE SYSTEM USING THE MSGIDCRACKER UTILITY Abstract This white paper describes the process of using the EmailXtender Customized MsgIdCracker

More information

AvePoint SearchAll 3.0.2 for Microsoft Dynamics CRM

AvePoint SearchAll 3.0.2 for Microsoft Dynamics CRM AvePoint SearchAll 3.0.2 for Microsoft Dynamics CRM Installation and Configuration Guide Revision E Issued April 2014 1 Table of Contents Overview... 3 Before You Begin... 4 Supported and Unsupported Web

More information

Tool Tip. SyAM Management Utilities and Non-Admin Domain Users

Tool Tip. SyAM Management Utilities and Non-Admin Domain Users SyAM Management Utilities and Non-Admin Domain Users Some features of SyAM Management Utilities, including Client Deployment and Third Party Software Deployment, require authentication credentials with

More information

SETTING UP ACTIVE DIRECTORY (AD) ON WINDOWS 2008 FOR DOCUMENTUM @ EROOM

SETTING UP ACTIVE DIRECTORY (AD) ON WINDOWS 2008 FOR DOCUMENTUM @ EROOM SETTING UP ACTIVE DIRECTORY (AD) ON WINDOWS 2008 FOR DOCUMENTUM @ EROOM Abstract This paper explains how to setup Active directory service on windows server 2008.This guide also explains about how to install

More information

EMC Smarts Network Configuration Manager

EMC Smarts Network Configuration Manager EMC Smarts Network Configuration Manager Version 9.4.1 Advisors User Guide P/N 302-002-279 REV 01 Copyright 2013-2015 EMC Corporation. All rights reserved. Published in the USA. Published October, 2015

More information

AvePoint Tags 1.1 for Microsoft Dynamics CRM. Installation and Configuration Guide

AvePoint Tags 1.1 for Microsoft Dynamics CRM. Installation and Configuration Guide AvePoint Tags 1.1 for Microsoft Dynamics CRM Installation and Configuration Guide Revision G Issued August 2014 Table of Contents About AvePoint Tags for Microsoft Dynamics CRM... 3 Required Permissions...

More information

EMC Documentum Repository Services for Microsoft SharePoint

EMC Documentum Repository Services for Microsoft SharePoint EMC Documentum Repository Services for Microsoft SharePoint Version 6.5 SP2 Installation Guide P/N 300 009 829 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com

More information

EMC VIPR SRM: VAPP BACKUP AND RESTORE USING EMC NETWORKER

EMC VIPR SRM: VAPP BACKUP AND RESTORE USING EMC NETWORKER EMC VIPR SRM: VAPP BACKUP AND RESTORE USING EMC NETWORKER ABSTRACT This white paper provides a working example of how to back up and restore an EMC ViPR SRM vapp using EMC NetWorker. October 2015 WHITE

More information

Greenplum Database (software-only environments): Greenplum Database (4.0 and higher supported, 4.2.1 or higher recommended)

Greenplum Database (software-only environments): Greenplum Database (4.0 and higher supported, 4.2.1 or higher recommended) P/N: 300-014-087 Rev: A01 Updated: April 3, 2012 Welcome to Command Center Command Center is a management tool for the Big Data Platform. Command Center monitors system performance metrics, system health,

More information

Technical Notes TECHNICAL NOTES. Release number 8.2 Service Pack 1 302-001-239 REV 01. January, 2015

Technical Notes TECHNICAL NOTES. Release number 8.2 Service Pack 1 302-001-239 REV 01. January, 2015 EMC NetWorker Module for Microsoft: Exchange Server Granular Level Recovery (GLR) using EMC NetWorker Module for Microsoft with Ontrack PowerControls Release number 8.2 Service Pack 1 TECHNICAL NOTES 302-001-239

More information

Quest ChangeAuditor 5.1 FOR ACTIVE DIRECTORY. User Guide

Quest ChangeAuditor 5.1 FOR ACTIVE DIRECTORY. User Guide Quest ChangeAuditor FOR ACTIVE DIRECTORY 5.1 User Guide Copyright Quest Software, Inc. 2010. All rights reserved. This guide contains proprietary information protected by copyright. The software described

More information

Technical Notes. EMC NetWorker Performing Backup and Recovery of SharePoint Server by using NetWorker Module for Microsoft SQL VDI Solution

Technical Notes. EMC NetWorker Performing Backup and Recovery of SharePoint Server by using NetWorker Module for Microsoft SQL VDI Solution EMC NetWorker Performing Backup and Recovery of SharePoint Server by using NetWorker Module for Microsoft SQL VDI Solution Release number 9.0 TECHNICAL NOTES 302-001-760 REV 01 September, 2015 These technical

More information

EMC SourceOne for Microsoft SharePoint Storage Management Version 7.1

EMC SourceOne for Microsoft SharePoint Storage Management Version 7.1 EMC SourceOne for Microsoft SharePoint Storage Management Version 7.1 Installation Guide 302-000-227 REV 01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright

More information

How To Create A Document On A Pc Or Macbook

How To Create A Document On A Pc Or Macbook ApplicationXtender 6.5 Document Manager User Guide (version 1.0) CCS Computing and Communications Service June 2013 Table of Contents OVERVIEW... 3 Logging in to AppXtender Document Manager... 4 Changing

More information

CA Nimsoft Monitor. Probe Guide for NT Event Log Monitor. ntevl v3.8 series

CA Nimsoft Monitor. Probe Guide for NT Event Log Monitor. ntevl v3.8 series CA Nimsoft Monitor Probe Guide for NT Event Log Monitor ntevl v3.8 series Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and

More information

EMC Documentum Composer

EMC Documentum Composer EMC Documentum Composer Version 6.5 User Guide P/N 300 007 217 A02 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 2008 EMC Corporation. All rights

More information

Using Windows Administrative Tools on VNX

Using Windows Administrative Tools on VNX EMC VNX Series Release 7.0 Using Windows Administrative Tools on VNX P/N 300-011-833 REV A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 2011 -

More information

Working with the ERP Integration Service of EMC Documentum Process Services for SAP

Working with the ERP Integration Service of EMC Documentum Process Services for SAP Working with the ERP Integration Service of EMC Documentum Process Services for SAP Applied Technology Abstract EMC Documentum Process Services for SAP is a new product that integrates with EMC Documentum

More information

SQL Express to SQL Server Database Migration MonitorIT v10.5

SQL Express to SQL Server Database Migration MonitorIT v10.5 SQL Express to SQL Server Database Migration MonitorIT v10.5 (v10.5) March 2013 www.goliathtechnologies.com Legal Notices MonitorIT v10.5 Installation Guide Inc. All rights reserved. www.goliathtechnologies.com

More information

EMC Replication Manager and Kroll Ontrack PowerControls for Granular Recovery of SharePoint Items

EMC Replication Manager and Kroll Ontrack PowerControls for Granular Recovery of SharePoint Items EMC Replication Manager and Kroll Ontrack PowerControls for Granular Recovery of SharePoint Items Applied Technology Abstract This white paper discusses how Kroll Ontrack PowerControls integrates with

More information

Welcome to Collage (Draft v0.1)

Welcome to Collage (Draft v0.1) Welcome to Collage (Draft v0.1) Table of Contents Welcome to Collage (Draft v0.1)... 1 Table of Contents... 1 Overview... 2 What is Collage?... 3 Getting started... 4 Searching for Images in Collage...

More information

Introduction to XML Applications

Introduction to XML Applications EMC White Paper Introduction to XML Applications Umair Nauman Abstract: This document provides an overview of XML Applications. This is not a comprehensive guide to XML Applications and is intended for

More information

www.dfcconsultants.com 800-277-5561 Microsoft Dynamics GP Audit Trails

www.dfcconsultants.com 800-277-5561 Microsoft Dynamics GP Audit Trails www.dfcconsultants.com 800-277-5561 Microsoft Dynamics GP Audit Trails Copyright Copyright 2010 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and

More information

EMC DOCUMENTUM xplore 1.1 DISASTER RECOVERY USING EMC NETWORKER

EMC DOCUMENTUM xplore 1.1 DISASTER RECOVERY USING EMC NETWORKER White Paper EMC DOCUMENTUM xplore 1.1 DISASTER RECOVERY USING EMC NETWORKER Abstract The objective of this white paper is to describe the architecture of and procedure for configuring EMC Documentum xplore

More information

LepideAuditor Suite for File Server. Installation and Configuration Guide

LepideAuditor Suite for File Server. Installation and Configuration Guide LepideAuditor Suite for File Server Installation and Configuration Guide Table of Contents 1. Introduction... 4 2. Requirements and Prerequisites... 4 2.1 Basic System Requirements... 4 2.2 Supported Servers

More information

FOR WINDOWS FILE SERVERS

FOR WINDOWS FILE SERVERS Quest ChangeAuditor FOR WINDOWS FILE SERVERS 5.1 User Guide Copyright Quest Software, Inc. 2010. All rights reserved. This guide contains proprietary information protected by copyright. The software described

More information

Integrating Symantec Endpoint Protection

Integrating Symantec Endpoint Protection Integrating Symantec Endpoint Protection EventTracker Version 7.x Publication Date: Nov 8, 2013 EventTracker 8815 Centre Park Drive Columbia MD 21045 www.eventtracker.com About this Guide This guide provides

More information

EMC Documentum Content Services for SAP Document Controllers

EMC Documentum Content Services for SAP Document Controllers EMC Documentum Content Services for SAP Document Controllers Version 6.0 User Guide P/N 300 005 439 Rev A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright

More information

DCA. Document Control & Archiving USER S GUIDE

DCA. Document Control & Archiving USER S GUIDE DCA Document Control & Archiving USER S GUIDE Decision Management International, Inc. 1111 Third Street West Suite 250 Bradenton, FL 34205 Phone 800-530-0803 FAX 941-744-0314 www.dmius.com Copyright 2002,

More information

System Administration and Log Management

System Administration and Log Management CHAPTER 6 System Overview System Administration and Log Management Users must have sufficient access rights, or permission levels, to perform any operations on network elements (the devices, such as routers,

More information

Replicating VNXe3100/VNXe3150/VNXe3300 CIFS/NFS Shared Folders to VNX Technical Notes P/N h8270.1 REV A01 Date June, 2011

Replicating VNXe3100/VNXe3150/VNXe3300 CIFS/NFS Shared Folders to VNX Technical Notes P/N h8270.1 REV A01 Date June, 2011 Replicating VNXe3100/VNXe3150/VNXe3300 CIFS/NFS Shared Folders to VNX Technical Notes P/N h8270.1 REV A01 Date June, 2011 Contents Introduction... 2 Roadmap... 3 What is in this document... 3 Test Environment...

More information

EMC Documentum xcelerated Composition Platform

EMC Documentum xcelerated Composition Platform EMC Documentum xcelerated Composition Platform Version 6.5 SP2 Grants Management Sample Application Technical Reference Guide P/N 300-009-604 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103

More information

Version 9 Client Workflow Interface (Dashboard) Quick Start

Version 9 Client Workflow Interface (Dashboard) Quick Start Version 9 Client Workflow Interface (Dashboard) Quick Start Client Workflow Interface (Dashboard) Quick Start Copyright Limit of Liability Trademarks Customer Support 2015. Progeny Genetics, LLC, All rights

More information

EMC Celerra Network Server

EMC Celerra Network Server EMC Celerra Network Server Release 5.6.47 Using Windows Administrative Tools with Celerra P/N 300-004-139 REV A02 EMC Corporation Corporate Headquarters: Hopkintons, MA 01748-9103 1-508-435-1000 www.emc.com

More information

Lepide Software. LepideAuditor for File Server [CONFIGURATION GUIDE] This guide informs How to configure settings for first time usage of the software

Lepide Software. LepideAuditor for File Server [CONFIGURATION GUIDE] This guide informs How to configure settings for first time usage of the software Lepide Software LepideAuditor for File Server [CONFIGURATION GUIDE] This guide informs How to configure settings for first time usage of the software Lepide Software Private Limited, All Rights Reserved

More information

VMWARE PROTECTION USING VBA WITH NETWORKER 8.1

VMWARE PROTECTION USING VBA WITH NETWORKER 8.1 Technical Note VMWARE PROTECTION USING VBA WITH NETWORKER 8.1 Complete Deployment and Implementation procedure Abstract This technical note describes the integration of EMC NetWorker with VMware vcenter

More information

WINDOWS SERVER 2008 OFFLINE SYSTEM RECOVERY USING WINDOWS SERVER BACKUP WITH NETWORKER

WINDOWS SERVER 2008 OFFLINE SYSTEM RECOVERY USING WINDOWS SERVER BACKUP WITH NETWORKER TECHNICAL NOTES WINDOWS SERVER 2008 OFFLINE SYSTEM RECOVERY USING WINDOWS SERVER BACKUP WITH NETWORKER NETWORKER RELEASE 7.4 SERVICE PACK 2 AND LATER TECHNICAL NOTE P/N 300-010-339 REV A02 Table of Contents

More information

IN EMC DOCUMENTUM WEBTOP

IN EMC DOCUMENTUM WEBTOP TROUBLESHOOTING DRAG AND DROP ISSUES IN EMC DOCUMENTUM WEBTOP EMC INFORMATION INTELLIGENCE GROUP Abstract This white paper provides information to handle issues arising out of the use of the Drag and Drop

More information

EMC SourceOne Auditing and Reporting Version 7.0

EMC SourceOne Auditing and Reporting Version 7.0 EMC SourceOne Auditing and Reporting Version 7.0 Installation and Administration Guide 300-015-186 REV 01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright

More information

ENABLING SINGLE SIGN-ON FOR EMC DOCUMENTUM WDK-BASED APPLICATIONS USING IBM WEBSEAL ON AIX

ENABLING SINGLE SIGN-ON FOR EMC DOCUMENTUM WDK-BASED APPLICATIONS USING IBM WEBSEAL ON AIX White Paper ENABLING SINGLE SIGN-ON FOR EMC DOCUMENTUM WDK-BASED APPLICATIONS USING IBM WEBSEAL ON AIX Abstract This white paper explains how you can use the IBM Tivoli Access Manager for e-business WebSEAL

More information

EMC ApplicationXtender Web Access

EMC ApplicationXtender Web Access EMC ApplicationXtender Web Access 6.5 User s Guide P/N 300-010-573 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 2002-2010 EMC Corporation. All

More information

EMC Documentum Quality and Manufacturing

EMC Documentum Quality and Manufacturing EMC Documentum Quality and Manufacturing Version 3.1 User Guide EMC Corporation Corporate Headquarters Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Legal Notice Copyright 2012-2016 EMC Corporation.

More information

ecopy Connector for EMC Documentum

ecopy Connector for EMC Documentum ecopy Connector for EMC Documentum Version 4.0 for ecopy ShareScan OP Administrator s Guide Part Number: 73-00218 (4/2007) Licensing, Copyright, and Trademark Information The information in this document

More information

Technical Note. Performing Exchange Server Granular Level Recovery by using the EMC Avamar 7.1 Plug-in for Exchange VSS with Ontrack PowerControls

Technical Note. Performing Exchange Server Granular Level Recovery by using the EMC Avamar 7.1 Plug-in for Exchange VSS with Ontrack PowerControls Performing Exchange Server Granular Level Recovery by using the EMC Avamar 7.1 Plug-in for Exchange VSS with Ontrack PowerControls Technical Note 302-001-437 REV 01 December, 2014 This technical note describes

More information

AvePoint CallAssist 3.2.5 for Microsoft Dynamics CRM. Installation and Configuration Guide

AvePoint CallAssist 3.2.5 for Microsoft Dynamics CRM. Installation and Configuration Guide AvePoint CallAssist 3.2.5 for Microsoft Dynamics CRM Installation and Configuration Guide Revision K Issued November 2014 Table of Contents Overview... 4 Prerequisites... 5 Environment Requirements...

More information

Tracking Network Changes Using Change Audit

Tracking Network Changes Using Change Audit CHAPTER 14 Change Audit tracks and reports changes made in the network. Change Audit allows other RME applications to log change information to a central repository. Device Configuration, Inventory, and

More information

Acronis Backup & Recovery 11.5 Quick Start Guide

Acronis Backup & Recovery 11.5 Quick Start Guide Acronis Backup & Recovery 11.5 Quick Start Guide Applies to the following editions: Advanced Server for Windows Virtual Edition Advanced Server SBS Edition Advanced Workstation Server for Linux Server

More information

LANDESK Service Desk. Desktop Manager

LANDESK Service Desk. Desktop Manager LANDESK Service Desk Desktop Manager LANDESK SERVICE DESK DESKTOP MANAGER GUIDE This document contains information, which is the confidential information and/or proprietary property of LANDESK Software,

More information

RSA Security Analytics Netflow Collection Configuration Guide

RSA Security Analytics Netflow Collection Configuration Guide RSA Security Analytics Netflow Collection Configuration Guide Copyright 2010-2015 RSA, the Security Division of EMC. All rights reserved. Trademarks RSA, the RSA Logo and EMC are either registered trademarks

More information

RSA Security Analytics Netflow Collection Configuration Guide

RSA Security Analytics Netflow Collection Configuration Guide RSA Security Analytics Netflow Collection Configuration Guide Copyright 2010-2015 RSA, the Security Division of EMC. All rights reserved. Trademarks RSA, the RSA Logo and EMC are either registered trademarks

More information

Audit Management Reference

Audit Management Reference www.novell.com/documentation Audit Management Reference ZENworks 11 Support Pack 3 February 2014 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or use of

More information

EMC Documentum Interactive Delivery Services Accelerated Overview

EMC Documentum Interactive Delivery Services Accelerated Overview White Paper EMC Documentum Interactive Delivery Services Accelerated A Detailed Review Abstract This white paper presents an overview of EMC Documentum Interactive Delivery Services Accelerated (IDSx).

More information

Setting Up a Unisphere Management Station for the VNX Series P/N 300-011-796 Revision A01 January 5, 2010

Setting Up a Unisphere Management Station for the VNX Series P/N 300-011-796 Revision A01 January 5, 2010 Setting Up a Unisphere Management Station for the VNX Series P/N 300-011-796 Revision A01 January 5, 2010 This document describes the different types of Unisphere management stations and tells how to install

More information

JovianDSS Evaluation and Product Training. Presentation updated: October 2015

JovianDSS Evaluation and Product Training. Presentation updated: October 2015 JovianDSS Evaluation and Product Training JovianDSS High Availability Cluster running in a virtual environment on VMware ESXi Step-by-Step Presentation updated: October 2015 www.open-e.com 1 The aim of

More information

vcenter Operations Management Pack for SAP HANA Installation and Configuration Guide

vcenter Operations Management Pack for SAP HANA Installation and Configuration Guide vcenter Operations Management Pack for SAP HANA Installation and Configuration Guide This document supports the version of each product listed and supports all subsequent versions until a new edition replaces

More information

SQL Express to SQL Server Database Migration Goliath Performance Monitor v11.5

SQL Express to SQL Server Database Migration Goliath Performance Monitor v11.5 Goliath Performance Monitor v11.5 (v11.5) July 2015 www.goliathtechnologies.com Legal Notices Guide for Goliath Performance Monitor v11.5 Copyright 2014 Goliath Technologies Inc. All rights reserved. www.goliathtechnologies.com

More information

Leverage Your EMC Storage Investment with User Provisioning for Syncplicity:

Leverage Your EMC Storage Investment with User Provisioning for Syncplicity: Leverage Your EMC Storage Investment with User Provisioning for Syncplicity: Automate and simplify Syncplicity user/group management tasks EMC Global Solutions Abstract Make the most of your existing EMC

More information

Installing Management Applications on VNX for File

Installing Management Applications on VNX for File EMC VNX Series Release 8.1 Installing Management Applications on VNX for File P/N 300-015-111 Rev 01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright

More information

Moving the Web Security Log Database

Moving the Web Security Log Database Moving the Web Security Log Database Topic 50530 Web Security Solutions Version 7.7.x, 7.8.x Updated 22-Oct-2013 Version 7.8 introduces support for the Web Security Log Database on Microsoft SQL Server

More information

For Active Directory Installation Guide

For Active Directory Installation Guide For Active Directory Installation Guide Version 2.5.2 April 2010 Copyright 2010 Legal Notices makes no representations or warranties with respect to the contents or use of this documentation, and specifically

More information

Backup Assistant. User Guide. NEC NEC Unified Solutions, Inc. March 2008 NDA-30282, Revision 6

Backup Assistant. User Guide. NEC NEC Unified Solutions, Inc. March 2008 NDA-30282, Revision 6 Backup Assistant User Guide NEC NEC Unified Solutions, Inc. March 2008 NDA-30282, Revision 6 Liability Disclaimer NEC Unified Solutions, Inc. reserves the right to change the specifications, functions,

More information

EMC SourceOne Offline Access

EMC SourceOne Offline Access EMC SourceOne Offline Access Version 7.2 User Guide 302-000-963 REV 01 Copyright 2005-2015 EMC Corporation. All rights reserved. Published April 30, 2015 EMC believes the information in this publication

More information

User Manual for Web. Help Desk Authority 9.0

User Manual for Web. Help Desk Authority 9.0 User Manual for Web Help Desk Authority 9.0 2011ScriptLogic Corporation ALL RIGHTS RESERVED. ScriptLogic, the ScriptLogic logo and Point,Click,Done! are trademarks and registered trademarks of ScriptLogic

More information

DOCUMENTUM CONTENT SERVER CERTIFICATE BASED SSL CONFIGURATION WITH CLIENTS

DOCUMENTUM CONTENT SERVER CERTIFICATE BASED SSL CONFIGURATION WITH CLIENTS DOCUMENTUM CONTENT SERVER CERTIFICATE BASED SSL CONFIGURATION WITH CLIENTS ABSTRACT This white paper is step-by-step guide for Content Server 7.2 and above versions installation with certificate based

More information

HyperFS PC Client Tools

HyperFS PC Client Tools SAN Management Software HyperFS PC Client Tools This guide provides step-by-step instructions for setup, configuration, and maintenance of the Rorke Data HyperFS SAN Management Software Ver 2.1 May 11,

More information

Horizon Debt Collect. User s and Administrator s Guide

Horizon Debt Collect. User s and Administrator s Guide Horizon Debt Collect User s and Administrator s Guide Microsoft, Windows, Windows NT, Windows 2000, Windows XP, and SQL Server are registered trademarks of Microsoft Corporation. Sybase is a registered

More information

Decommissioning the original Microsoft Exchange

Decommissioning the original Microsoft Exchange Decommissioning the original Microsoft Exchange Originally posted: March 2002 Affected software versions BlackBerry Enterprise Server version 2.0 and version 2.1 for Microsoft Exchange (all service pack

More information

Business Portal for Microsoft Dynamics GP 2010. Field Service Suite

Business Portal for Microsoft Dynamics GP 2010. Field Service Suite Business Portal for Microsoft Dynamics GP 2010 Field Service Suite Copyright Copyright 2010 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and views

More information

NETWRIX CHANGE NOTIFIER

NETWRIX CHANGE NOTIFIER NETWRIX CHANGE NOTIFIER FOR SQL SERVER QUICK-START GUIDE Product Version: 2.6.194 February 2014. Legal Notice The information in this publication is furnished for information use only, and does not constitute

More information

Config Guide. Gimmal Smart Tiles (SharePoint-Hosted) Software Release 4.4.0

Config Guide. Gimmal Smart Tiles (SharePoint-Hosted) Software Release 4.4.0 Config Guide Gimmal Smart Tiles (SharePoint-Hosted) Software Release 4.4.0 November 2014 Title: Gimmal Smart Tiles (SharePoint-Hosted) Configuration Guide Copyright 2014 Gimmal, All Rights Reserved. Gimmal

More information

SQL Server 2014 BI. Lab 04. Enhancing an E-Commerce Web Application with Analysis Services Data Mining in SQL Server 2014. Jump to the Lab Overview

SQL Server 2014 BI. Lab 04. Enhancing an E-Commerce Web Application with Analysis Services Data Mining in SQL Server 2014. Jump to the Lab Overview SQL Server 2014 BI Lab 04 Enhancing an E-Commerce Web Application with Analysis Services Data Mining in SQL Server 2014 Jump to the Lab Overview Terms of Use 2014 Microsoft Corporation. All rights reserved.

More information

Documentum Content Distribution Services TM Administration Guide

Documentum Content Distribution Services TM Administration Guide Documentum Content Distribution Services TM Administration Guide Version 5.3 SP5 August 2007 Copyright 1994-2007 EMC Corporation. All rights reserved. Table of Contents Preface... 7 Chapter 1 Introducing

More information

VMware vcenter Discovered Machines Import Tool User's Guide Version 5.3.0.25 for vcenter Configuration Manager 5.3

VMware vcenter Discovered Machines Import Tool User's Guide Version 5.3.0.25 for vcenter Configuration Manager 5.3 VMware vcenter Discovered Machines Import Tool User's Guide Version 5.3.0.25 for vcenter Configuration Manager 5.3 This document supports the version of each product listed and supports all subsequent

More information

Use QNAP NAS for Backup

Use QNAP NAS for Backup Use QNAP NAS for Backup BACKUP EXEC 12.5 WITH QNAP NAS Copyright 2010. QNAP Systems, Inc. All Rights Reserved. V1.0 Document revision history: Date Version Changes Apr 2010 1.0 Initial release Note: Information

More information

SNMP Adapter Installation and Configuration Guide

SNMP Adapter Installation and Configuration Guide SNMP Adapter Installation and Configuration Guide vcenter Operations Manager 1.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

PRODUCT WHITE PAPER LABEL ARCHIVE. Adding and Configuring Active Directory Users in LABEL ARCHIVE

PRODUCT WHITE PAPER LABEL ARCHIVE. Adding and Configuring Active Directory Users in LABEL ARCHIVE PRODUCT WHITE PAPER LABEL ARCHIVE Adding and Configuring Active Directory Users in LABEL ARCHIVE TEKLYNX International March 19, 2010 Introduction Now more than ever, businesses large and small alike are

More information

EMC ViPR SRM. Alerting Guide. Version 3.7.1.0 302-002-455 01

EMC ViPR SRM. Alerting Guide. Version 3.7.1.0 302-002-455 01 EMC ViPR SRM Version 3.7.1.0 Alerting Guide 302-002-455 01 Copyright 2015-2016 EMC Corporation. All rights reserved. Published in the USA. Published February, 2016 EMC believes the information in this

More information