Technical White Paper Information Map. Taking Action on Information Map Insights

Size: px
Start display at page:

Download "Technical White Paper Information Map. Taking Action on Information Map Insights"

Transcription

1 Taking Action on Information Map Insights 1

2 Contents Executive Summary... 3 Copying Files... 4 Identifying the Locations of VBS Files via Information Map... 4 Narrow Down to a Particular Source Location or Filer/File Server... 5 Optionally Previewing the Metadata before Exporting... 6 Exporting the Dataset... 7 Downloading the Exported Dataset... 8 Extracting the List of Files from the Export... 9 Sample Copy Script Moving Files Identifying the Locations of Log Files via Information Map Exporting the Dataset Sample Move Script Deleting Files Identifying the Locations of Tmp Files via Information Map Exporting the Dataset Sample Delete Script Summary For More Information

3 Executive Summary Organizations who use Information Map will discover data sets that they wish to take action on such as delete, move or copy. This whitepaper will talk about these different use cases and describe how to identify information and take action. 3

4 Copying Files Customers may identify data via Information Map that needs to be copied from one location to another for various reasons. In this particular use case example, an administrator has identified some old, forgotten VBScript files (.vbs) that are stored on a file server and needs to copy these script files to a group folder on another server. The steps involved are below: Identifying the Locations of VBS Files via Information Map The administrator will first want to search for vbs files by clicking on the ALL Item Extensions filter and then selecting or searching for vbs as shown in Figure 1. Figure 1 - Searching for item extensions using the All Item Extension filter 4

5 Narrow Down to a Particular Source Location or Filer/File Server Once the vbs files have been identified across the organization, it may be necessary to further filter down to one or two locations and/or filers/file servers. In the Dashboard view of Information Map, the administrator will be able to quickly identify which locations and filers/files servers contain the file type in question as shown in Figure 2. The administrator can then narrow down the dataset by selecting a location or filer/fileserver, or by any of the other reported metadata fields such as owner, file share, date, etc. In some cases, information on reported content may have local file names (such as D:\group_project\filename.vbs) instead of UNC pathnames (\\server\d$\group_project\filename.vbs). In situations where a local path is provided, an administrator is likely to execute copy actions on that same server. Therefore, it will sometimes be necessary to export results from Information Map on a server by server basis. Figure 2- Dashboard View 5

6 Optionally Previewing the Metadata before Exporting Once the administrator has narrowed down the dataset, a sampling of the metadata can be viewed in more detail by clicking on Item List Preview as shown in Figure 3. This helps to give confidence that the data set selected is indeed the correct data set to take action against. Figure 3 - Item List Preview 6

7 Exporting the Dataset Once the administrator is satisfied with the filtered dataset, it can be exported to a text file by performing the following steps: 1. To export the dataset, click on the green New Action button in the upper right corner and select Export as shown in Figure 4. Figure 4 Exporting the dataset 2. A new dialog window will appear that asks for details on the Export as shown in Figure 5. Figure 5 The Export dialog window 7

8 3. As this will be a file copy operation, the administrator will need to change the Export type from Export xxx items (full details) to Export xxx items (file paths only for scripting) as shown in Figure 6. The additional metadata items that Information Map can provide will not be necessary. Figure 6 Selecting the Export type 4. The administrator will need to fill in the Export name box and optionally provide a description. 5. Once completed, the administrator would then click on Export to start the export operation. Downloading the Exported Dataset Once the export process has started, the administrator will go to the Actions section in Information Map to download the ZIP file. Once in the Action section of Information Map, select the export name and then click on Download export file on the right side of the screen as shown in Figure 7. Depending on how many files were identified, the export process may take a few minutes to complete before the ZIP file is ready to download. Figure 7 Downloading the exported metadata set 8

9 Extracting the List of Files from the Export The list of files will be saved in a ZIP file. This file will contain a text file with the filtered dataset from Information Map as well as a manifest file that provides details on the export as shown in Figure 8. The administrator will need to only extract the text file contain list of files (VBSFiles-001.txt in this example) to a temporary location. Figure 8 Viewing the ZIP file The administrator may wish to view the contents of the text file before executing any script to copy files. Ensure that the path names appear valid and that files are not being copied from a system location such as the recycle bin as shown in Figure 9. Figure 9 Examining the list of files 9

10 Sample Copy Script The following sample PowerShell script will copy the files identified by Information Map: #USE SCRIPT AT OWN RISK. Veritas Technologies LLC does not provide a warranty of any kind. $FileList = "C:\temp\scripts\VBSFiles-0001.txt" $DestDir ="D:\group_share\scripts" Get-Content $FileList % { # Create the destination folder path $NewFolder = "$DestDir$(Split-Path $_ -Parent Split-Path -NoQualifier)" } # Check if the path exsists - create if it doesn't exist If(!(Test-Path $NewFolder)){ New-Item -ItemType Directory -Path $NewFolder -Force } # Copy the file to new location Copy-Item $_ $NewFolder -Force The administrator would need to change the following variables to match their environment: - $FileList Full path and file name to text file contain the list of items to copy - $DestDir The destination path for the copied files When executed, the script will automatically create the folder structure that currently exists on the source on the destination. The script assumes that the current user has at least read access to the files and directories that will be copied. 10

11 Moving Files In this use case, customers may be consolidating file servers or file shares. For this example, we will identify log files generated by applications and move them to a new location. The steps will be similar to that of copy files example, but there will be changes to the example PowerShell script. Identifying the Locations of Log Files via Information Map Once again, the administrator will use the All Item Extensions filter. This time, the administrator is filtering by the log extension as shown in Figure 10Figure 10. Figure 10 Filtering by the log file extension Exporting the Dataset Once the administrator is satisfied with the filtered dataset, the dataset can be exported to a text file similar to the manner described in the Copying Files section of this document. 11

12 Sample Move Script The following sample PowerShell script will move the files identified by Information Map: #USE SCRIPT AT OWN RISK. Veritas Technologies LLC does not provide a warranty of any kind. $FileList = "C:\temp\LogFiles-0001.txt" $DestDir="c:\movedfiles" Get-Content $FileList % { # Create the destination folder path $NewFolder = "$DestDir$(Split-Path $_ -Parent Split-Path -NoQualifier)" # Check if the path exsists - create if it doesn't exist If(!(Test-Path $NewFolder)){ New-Item -ItemType Directory -Path $NewFolder -Force } # Move the file to new location Move-Item $_ $NewFolder -Force } The administrator would need to change the following parameters to match their environment: - $FileList Full path and file name to text file contain the list of items to move - $DestDir The destination path for the moved files When executed, the script will automatically create the folder structure that currently exists on the source on the destination. The script assumes that the current user has read-write access to the source directories and files. Note: As this is a move operation, the files will automatically be deleted from the source location. 12

13 Deleting Files Customers have many reasons for deleting files. Perhaps an old project is no longer needed and the files can be deleted. There may be a directory or folder containing an old version of files that is no longer needed. Perhaps a directory or file share contains files types that are not allowed by the organization. Applications can generate a lot of temp files and not clean them up afterwards. In this example, the administrator will identify.tmp files and then delete them. Identifying the Locations of Tmp Files via Information Map The identification process starts once again by filtering the dataset by file extension. The administrator will use the All Item Extensions filter and only select the tmp extension as shown in Figure 11. Figure 11 Identifying tmp files Exporting the Dataset Once the administrator is satisfied with the filtered dataset, the dataset can be exported to a text file similar to the manner described in the Copying Files section of this document. 13

14 Sample Delete Script The following sample PowerShell script will delete the files identified by Information Map. It is highly recommended that files identified by Information Map have a backup before executing the script. #USE SCRIPT AT OWN RISK. Veritas Technologies LLC does not provide a warranty of any kind. $FileList = get-content "C:\temp\TmpFiles-0001.txt" ForEach ($file in $FileList) { Remove-Item $file -Force } The administrator would need to change the following parameters to match their environment: - $FileList Full path and file name to text file contain the list of items to delete Once the script is executed, the script will delete the files listed in the file identified by the $FileList parameter. The script also assumes that the current user has permissions to delete files. It should be noted that the sample script will not delete the folder structure. Summary This whitepaper provides examples of how to copy, move, and delete files identified by Veritas Information Map. The process is straight forward and easy to execute. The script examples provided are for Windows PowerShell. Similar scripts can also be generated for files located on NFS-based file shares for UNIX and Linux systems using other scripting languages such as bash, ksh, etc. 14

15 For More Information Visit VOX for more example scripts: 15

16 About Veritas Technologies LLC. Veritas Technologies LLC enables organizations to harness the power of their information, with solutions designed to serve the world s largest and most complex heterogeneous environments. Veritas works with 86 percent of Fortune 500 companies today, improving data availability and revealing insights to drive competitive advantage Veritas Technologies LLC. All rights reserved. Veritas and the Veritas Logo are trademarks or registered trademarks of Veritas Technologies LLC or its affiliates in the U.S. and other countries. Other names may be trademarks of their respective owners. Visit our website Veritas World Headquarters 500 East Middlefield Road Mountain View, CA (650) This document is provided for informational purposes only and is not intended as advertising. All warranties relating to the information in this document, either express or implied, are disclaimed to the maximum extent allowed by law. The information in this document is subject to change without notice. 16

Technical Brief Veritas Technical Education Services

Technical Brief Veritas Technical Education Services Veritas Desktop and Laptop Option 9.3 The Veritas Desktop and Laptop Option provides automated file protection for Desktops and laptops. Protection is provided regardless of whether the computer is connected

More information

Technical Brief Veritas Technical Education Services

Technical Brief Veritas Technical Education Services Veritas Desktop and Laptop Option 9.2 The Desktop and Laptop Option is a network share-based protection and synchronization solution for Windows and Mac that enhances your current IT desktop and laptop

More information

Technical Brief Enterprise Vault Privileged Delete

Technical Brief Enterprise Vault Privileged Delete 1 Feature Description Enterprise Vault 12.3 and Discovery Accelerator 12.3 offer a new feature called. The feature has the following benefits: This feature will help customers to comply with regulations,

More information

Technical Brief Veritas Technical Education Services

Technical Brief Veritas Technical Education Services Veritas Desktop and Laptop Option 9.3.1 Veritas Desktop and Laptop Option is a user centric backup solution that provides flexible implementation and centralized administration for backup and recovery

More information

NetBackup Collection Quick Start Guide

NetBackup Collection Quick Start Guide NetBackup Collection Quick Start Guide This whitepaper is intended for IT professionals, IT managers, and IT personnel responsible for the planning, setup, and/or administration of Veritas Information

More information

Enterprise Vault Whitepaper Enterprise Vault Integration with Veritas Products

Enterprise Vault Whitepaper Enterprise Vault Integration with Veritas Products Enterprise Vault Whitepaper Enterprise Vault Integration with Veritas Products This document provides an overview of the integration points between Veritas Enterprise Vault and other Veritas products This

More information

Enterprise Vault 12 Feature Briefing Classification

Enterprise Vault 12 Feature Briefing Classification Enterprise Vault 12 Feature Briefing Classification This document is about the new Classification feature in Enterprise Vault 12. If you have any feedback or questions about this document, please email

More information

Technical Brief Enterprise Vault SMTP Enhancements

Technical Brief Enterprise Vault SMTP Enhancements 1 Feature Description Enterprise Vault introduced enhanced SMTP archiving starting with version 11.0.1. These enhanced SMTP archiving features allowed for a more robust solution when archiving from any

More information

Technical White Paper NetBackup 8.1 and later. NetBackup in the AWS Cloud: Required setup to use Amazon EFS as the NetBackup CloudCatalyst cache

Technical White Paper NetBackup 8.1 and later. NetBackup in the AWS Cloud: Required setup to use Amazon EFS as the NetBackup CloudCatalyst cache Technical White Paper NetBackup 8.1 and later NetBackup in the AWS Cloud: Required setup to use Amazon EFS as the NetBackup CloudCatalyst cache 1 Contents 1.0 Summary... 3 2.0 Terminology... 3 3.0 Configuring

More information

USER GUIDE. Veritas NetBackup CloudFormation Template

USER GUIDE. Veritas NetBackup CloudFormation Template USER GUIDE Veritas NetBackup CloudFormation Template Contents Objective... 3 Launching a New Stack... 3 Launching Veritas NetBackup Server in a New VPC... 3 Launching Veritas NetBackup Server in an Existing

More information

Enterprise Vault 12.4 OData Reporting for Auditing

Enterprise Vault 12.4 OData Reporting for Auditing Enterprise Vault 12.4 OData Reporting for Auditing This whitepaper describes the Enterprise Vault 12.4 OData reporting features for auditing. This document applies to the following version(s) of Enterprise

More information

Veritas Access. Installing Veritas Access in VMWare ESx environment. Who should read this paper? Veritas Pre-Sales, Partner Pre-Sales

Veritas Access. Installing Veritas Access in VMWare ESx environment. Who should read this paper? Veritas Pre-Sales, Partner Pre-Sales Installing Veritas Access in VMWare ESx environment Who should read this paper? Veritas Pre-Sales, Partner Pre-Sales Veritas Access Technical Brief Contents OVERVIEW... 3 REQUIREMENTS FOR INSTALLING VERITAS

More information

Data Insight Feature Briefing Box Cloud Storage Support

Data Insight Feature Briefing Box Cloud Storage Support Data Insight Feature Briefing Box Cloud Storage Support This document is about the new Box Cloud Storage Support feature in Symantec Data Insight 5.0. If you have any feedback or questions about this document

More information

Enterprise Vault 11 Whitepaper Deploying IMAP Access to Enterprise Vault

Enterprise Vault 11 Whitepaper Deploying IMAP Access to Enterprise Vault Enterprise Vault 11 Whitepaper Deploying IMAP Access to Enterprise Vault This Whitepaper is intended to assist customers, partners and service providers deploy IMAP access to Enterprise Vault. This document

More information

Doubling Performance in Amazon Web Services Cloud Using InfoScale Enterprise

Doubling Performance in Amazon Web Services Cloud Using InfoScale Enterprise Doubling Performance in Amazon Web Services Cloud Using InfoScale Enterprise Veritas InfoScale Enterprise 7.3 Last updated: 2017-07-12 Summary Veritas InfoScale Enterprise comprises the Veritas InfoScale

More information

Veritas InfoScale Enterprise for Oracle Real Application Clusters (RAC)

Veritas InfoScale Enterprise for Oracle Real Application Clusters (RAC) Veritas InfoScale Enterprise for Oracle Real Application Clusters (RAC) Manageability and availability for Oracle RAC databases Overview Veritas InfoScale Enterprise for Oracle Real Application Clusters

More information

Backup Exec Subscription Licensing Guide

Backup Exec Subscription Licensing Guide Backup Exec Subscription Licensing Guide Last Update: 27 September 2017 CONTENTS Product Overview... 3 Backup Exec Subscription Licensing... 4 Packaging and Licensing Overview....5 Packaging and Licensing

More information

Veritas Data Insight Software Compatibility List 6.1.1

Veritas Data Insight Software Compatibility List 6.1.1 Veritas Data Insight Software Compatibility List 6.1.1 Documentation version: 6.1.1.1 Legal Notice Copyright 2018 Veritas Technologies LLC. All rights reserved. Veritas and the Veritas Logo are trademarks

More information

In-Guest High Availability Configuration in OpenStack Using InfoScale Availability Agents

In-Guest High Availability Configuration in OpenStack Using InfoScale Availability Agents In-Guest High Availability Configuration in OpenStack Using InfoScale Availability Agents Solution Brief Last updated: 2018-01-12 Table of Contents INTRODUCTION... 3 USE CASE... 3 REQUIREMENTS... 5 CONFIGURATION

More information

Veritas Data Insight 6.1 Software Compatibility List 6.1

Veritas Data Insight 6.1 Software Compatibility List 6.1 Veritas Data Insight 6.1 Software Compatibility List 6.1 November 2017 Documentation version: 6.1.0 Legal Notice Copyright 2017 Veritas Technologies LLC. All rights reserved. Veritas and the Veritas Logo

More information

Veritas NetBackup for Lotus Notes Administrator's Guide

Veritas NetBackup for Lotus Notes Administrator's Guide Veritas NetBackup for Lotus Notes Administrator's Guide for UNIX, Windows, and Linux Release 8.0 Veritas NetBackup for Lotus Notes Administrator's Guide Document version: 8.0 Legal Notice Copyright 2016

More information

Enterprise Vault Best Practices

Enterprise Vault Best Practices Enterprise Vault Best Practices Implementing SharePoint Archiving This document contains information on best practices when implementing Enterprise Vault for SharePoint If you have any feedback or questions

More information

Veritas NetBackup Backup, Archive, and Restore Getting Started Guide. Release 8.1.2

Veritas NetBackup Backup, Archive, and Restore Getting Started Guide. Release 8.1.2 Veritas NetBackup Backup, Archive, and Restore Getting Started Guide Release 8.1.2 Veritas NetBackup Backup, Archive, and Restore Getting Started Guide Last updated: 2018-09-19 Legal Notice Copyright 2017

More information

Enterprise Vault Whitepaper

Enterprise Vault Whitepaper Enterprise Vault Whitepaper Configuring Exchange archiving with minimal permissions This document covers the minimal permissions required for Enterprise Vault in order to successfully achieve mailbox,

More information

Enterprise Vault.cloud Feature Briefing

Enterprise Vault.cloud Feature Briefing Enterprise Vault.cloud Feature Briefing Lotus Domino Archiving in May 2012 release This document is one of a set of Feature Briefings which detail major new or changed features in Enterprise Vault.cloud.

More information

In-Guest High Availability (HA) Configuration in Red Hat OpenStack Cloud using Veritas InfoScale Availability (VCS)

In-Guest High Availability (HA) Configuration in Red Hat OpenStack Cloud using Veritas InfoScale Availability (VCS) In-Guest High Availability (HA Configuration in Red Hat OpenStack Cloud using Veritas InfoScale Availability (VCS Who should read this paper Administrators who want to implement in-guest HA architectures

More information

Veritas NetBackup Vault Operator's Guide

Veritas NetBackup Vault Operator's Guide Veritas NetBackup Vault Operator's Guide UNIX, Windows, and Linux Release 8.1.1 Veritas NetBackup Vault Operator's Guide Last updated: 2018-09-19 Document version: NetBackup 8.1 Legal Notice Copyright

More information

DocAve Backup for Salesforce. Release Notes

DocAve Backup for Salesforce. Release Notes DocAve Backup for Salesforce Release Notes Table of Contents DocAve Backup for Salesforce 1.3.4...3 DocAve Backup for Salesforce 1.3.3...4...4 DocAve Backup for Salesforce 1.3.2...5...5 DocAve Backup for

More information

Veritas Backup Exec. Powerful, flexible and reliable data protection designed for cloud-ready organizations. Key Features and Benefits OVERVIEW

Veritas Backup Exec. Powerful, flexible and reliable data protection designed for cloud-ready organizations. Key Features and Benefits OVERVIEW Veritas Backup Exec Powerful, flexible and reliable data protection designed for cloud-ready organizations. OVERVIEW Veritas Backup Exec is the backup solution without barriers, delivered your way. You

More information

Veritas NetBackup and Oracle Cloud Infrastructure Object Storage ORACLE HOW TO GUIDE FEBRUARY 2018

Veritas NetBackup and Oracle Cloud Infrastructure Object Storage ORACLE HOW TO GUIDE FEBRUARY 2018 Veritas NetBackup and Oracle Cloud Infrastructure Object Storage ORACLE HOW TO GUIDE FEBRUARY 2018 0. Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

Enterprise Vault Whitepaper Enterprise Vault Discovery Accelerator Effective Reviewing

Enterprise Vault Whitepaper Enterprise Vault Discovery Accelerator Effective Reviewing Enterprise Vault Whitepaper Enterprise Vault Discovery Accelerator Effective Reviewing This whitepaper is intended for Attorneys, Paralegals, and other ediscovery professionals who use Enterprise Vault

More information

Veritas ediscovery Platform

Veritas ediscovery Platform Veritas ediscovery Platform Release Notes 8.2 Cumulative Hotfix 3 Release Notes PAGE: 2 Veritas ediscovery Platform : Release Notes 8.2 CHF3 The software described in this book is furnished under a license

More information

Protecting Miscrosoft Hyper-V Environments

Protecting Miscrosoft Hyper-V Environments Protecting Miscrosoft Hyper-V Environments Who should read this paper Technical White Papers are designed to introduce Veritas partners and end users to key technologies and technical concepts that are

More information

Hitachi Data Systems and Veritas Empower smarter decisions

Hitachi Data Systems and Veritas Empower smarter decisions Hitachi Data Systems and Veritas Empower smarter decisions Data growth creates a data storage and management headache. Many organizations base their IT strategies and budgets on the volume of data stored

More information

DocAve Backup for Salesforce. Release Notes

DocAve Backup for Salesforce. Release Notes DocAve Backup for Salesforce Release Notes Table of Contents DocAve Backup for Salesforce 1.3...3...3 DocAve Backup for Salesforce 1.2.2...4 New Features and Improvements...4...4 DocAve Backup for Salesforce

More information

DocAve Backup for Salesforce. Release Notes

DocAve Backup for Salesforce. Release Notes DocAve Backup for Salesforce Release Notes DocAve Backup for Salesforce 1.2.2 Release Date: December 18, 2016 There is now support for restoring the values of specific fields. You can define backup date,

More information

Backup-as-a-Service Powered by Veritas

Backup-as-a-Service Powered by Veritas Backup-as-a-Service Powered by Veritas FOCUS MORE ON YOUR BUSINESS, LESS ON YOUR INFRASTRUCTURE Table of Contents Better data protection from the ground up... 3 Significant challenges in the modern enterprise...

More information

Veritas NetBackup Copilot for Oracle Configuration Guide. Release 2.7.3

Veritas NetBackup Copilot for Oracle Configuration Guide. Release 2.7.3 Veritas NetBackup Copilot for Oracle Configuration Guide Release 2.7.3 Veritas NetBackup Copilot for Oracle Configuration Guide Last updated: 2016-05-04 Document version: 2.7.3 Legal Notice Copyright 2016

More information

Veritas NetBackup OpsCenter Reporting Guide. Release 8.0

Veritas NetBackup OpsCenter Reporting Guide. Release 8.0 Veritas NetBackup OpsCenter Reporting Guide Release 8.0 Veritas NetBackup OpsCenter Reporting Guide Legal Notice Copyright 2016 Veritas Technologies LLC. All rights reserved. Veritas and the Veritas Logo

More information

Veritas NetBackup for Microsoft Exchange Server Administrator s Guide

Veritas NetBackup for Microsoft Exchange Server Administrator s Guide Veritas NetBackup for Microsoft Exchange Server Administrator s Guide for Windows Release 8.1.1 Veritas NetBackup for Microsoft Exchange Server Administrator s Guide Last updated: 2018-02-16 Document version:netbackup

More information

Oracle Intelligent Policy

Oracle Intelligent Policy NETBACKUP 7.6 FEATURE BRIEFING ORACLE INTELLIGENT POLICY NetBackup 7.6 Feature Briefing Oracle Intelligent Policy Version number: 1.0 Issue date: 28 th August 2013 This document describes a feature introduced

More information

DocAve Backup for Salesforce. Release Notes

DocAve Backup for Salesforce. Release Notes DocAve Backup for Salesforce Release Notes Table of Contents Table of Contents... 2 DocAve Backup for Salesforce 1.3.8... 4... 4 DocAve Backup for Salesforce 1.3.7... 5... 5 DocAve Backup for Salesforce

More information

Before Searching for Solutions It s All About the Data

Before Searching for Solutions It s All About the Data Before Searching for Solutions It s All About the Data Stephen Watts - Federal Strategist for Information Governance Does your garage look like this? 2 The Real Problem With Data Growth TIME $ PROBLEMS

More information

Veritas SaaS Backup for Salesforce

Veritas SaaS Backup for Salesforce Veritas SaaS Backup for Salesforce Documentation version: 2.0 Legal Notice Copyright 2018 Veritas Technologies LLC. All rights reserved. Veritas and the Veritas Logo are trademarks or registered trademarks

More information

Enterprise Vault Using SQL Database Roles in Enterprise Vault, Compliance Accelerator, and Discovery Accelerator

Enterprise Vault Using SQL Database Roles in Enterprise Vault, Compliance Accelerator, and Discovery Accelerator Enterprise Vault Using SQL Database Roles in Enterprise Vault, Compliance Accelerator, and Discovery Accelerator 12 Enterprise Vault : Using SQL Database Roles in Enterprise Vault, Compliance Accelerator,

More information

Veritas System Recovery 18 Management Solution Administrator's Guide

Veritas System Recovery 18 Management Solution Administrator's Guide Veritas System Recovery 18 Management Solution Administrator's Guide Documentation version: 18 Legal Notice Copyright 2018 Veritas Technologies LLC. All rights reserved. Veritas and the Veritas Logo are

More information

Veritas Access Enterprise Vault Solutions Guide

Veritas Access Enterprise Vault Solutions Guide Veritas Access Enterprise Vault Solutions Guide Linux 7.4.1 Veritas Access Enterprise Vault Solutions Guide Last updated: 2018-07-31 Document version: 7.4.1 Rev 0 Legal Notice Copyright 2018 Veritas Technologies

More information

Veritas NetBackup Copilot for Oracle Configuration Guide. Release 3.1 and 3.1.1

Veritas NetBackup Copilot for Oracle Configuration Guide. Release 3.1 and 3.1.1 Veritas NetBackup Copilot for Oracle Configuration Guide Release 3.1 and 3.1.1 Veritas NetBackup Copilot for Oracle Configuration Guide Legal Notice Copyright 2018 Veritas Technologies LLC. All rights

More information

Veritas Enterprise Vault PST Migration 12.2

Veritas Enterprise Vault PST Migration 12.2 Veritas Enterprise Vault PST Migration 12.2 Veritas Enterprise Vault: PST Migration Last updated: 2017-08-10. Legal Notice Copyright 2017 Veritas Technologies LLC. All rights reserved. Veritas, the Veritas

More information

Veritas System Recovery 16 Management Solution Administrator's Guide

Veritas System Recovery 16 Management Solution Administrator's Guide Veritas System Recovery 16 Management Solution Administrator's Guide Documentation version: 2017 Legal Notice Copyright 2017 Veritas Technologies LLC. All rights reserved. Veritas and the Veritas Logo

More information

AccessData. Forensic Toolkit. Upgrading, Migrating, and Moving Cases. Version: 5.x

AccessData. Forensic Toolkit. Upgrading, Migrating, and Moving Cases. Version: 5.x AccessData Forensic Toolkit Upgrading, Migrating, and Moving Cases Version: 5.x 1 AccessData Legal and Contact Information Document date: March 27, 2014 Legal Information 2014 AccessData Group, Inc. All

More information

AvePoint Cloud Backup for Salesforce. Release Notes

AvePoint Cloud Backup for Salesforce. Release Notes AvePoint Cloud Backup for Salesforce Release Notes Table of Contents AvePoint Cloud Backup for Salesforce April 2018... 3... 3 Known Issues... 3 AvePoint Cloud Backup for Salesforce January 2018... 4...

More information

Enterprise Vault Overview Nedeljko Štefančić

Enterprise Vault Overview Nedeljko Štefančić Enterprise Vault Overview Nedeljko Štefančić 2015 Symantec Corporation. All rights reserved. Symantec, the Symantec Logo, the Checkmark Logo, Veritas, and the Veritas Logo are trademarks or registered

More information

Copilot Deeper Dive. Rasmus Rask Eilersen

Copilot Deeper Dive. Rasmus Rask Eilersen Copilot Deeper Dive Rasmus Rask Eilersen Contents 1 2 3 4 5 Quick Overview of Copilot Terminology Architecture and Process Dump and Sweep Architecture and Process Whole Database and Incremental Merge Video

More information

Veritas Desktop and Laptop Option Mobile Application Getting Started Guide

Veritas Desktop and Laptop Option Mobile Application Getting Started Guide Veritas Desktop and Laptop Option Mobile Application Getting Started Disclaimer Contents The software described in this document is furnished under a license agreement and may be used only in accordance

More information

Veritas NetBackup AdvancedDisk Storage Solutions Guide

Veritas NetBackup AdvancedDisk Storage Solutions Guide Veritas NetBackup AdvancedDisk Storage Solutions Guide UNIX, Windows, Linux Release 8.1 Veritas NetBackup AdvancedDisk Storage Solutions Guide Last updated: 2017-09-25 Legal Notice Copyright 2017 Veritas

More information

NetBackup Self Service Release Notes

NetBackup Self Service Release Notes NetBackup Self Service Release Notes 7.7.3 Document version: 1 Veritas NetBackup Self Service Release Notes Document version: 7.7.3 Legal Notice Copyright 2016 Veritas Technologies LLC. All rights reserved.

More information

Veritas SaaS Backup for Office 365

Veritas SaaS Backup for Office 365 Veritas SaaS Backup for Office 365 Documentation version: 1.0 Legal Notice Copyright 2018 Veritas Technologies LLC. All rights reserved. Veritas and the Veritas Logo are trademarks or registered trademarks

More information

VERITAS NetBackup 6.0 for Microsoft SharePoint Portal Server 2001

VERITAS NetBackup 6.0 for Microsoft SharePoint Portal Server 2001 VERITAS NetBackup 6.0 for Microsoft SharePoint Portal Server 2001 System Administrator s Guide for Windows N152708 September 2005 Disclaimer The information contained in this publication is subject to

More information

Veritas Enterprise Vault Guide for Mac OS X Users 12.2

Veritas Enterprise Vault Guide for Mac OS X Users 12.2 Veritas Enterprise Vault Guide for Mac OS X Users 12.2 Veritas Enterprise Vault: Guide for Mac OS X Users Last updated: 2017-08-10. Legal Notice Copyright 2017 Veritas Technologies LLC. All rights reserved.

More information

Plug-in for VMware vcenter

Plug-in for VMware vcenter NETBACKUP 7.6 FEATURE BRIEFING PLUG-IN FOR VMWARE VCENTER NetBackup 7.6 Feature Briefing Plug-in for VMware vcenter Version number: 1.0 Issue date: 2 nd August 2013 This document describes a feature introduced

More information

Veritas Enterprise Vault Managing Retention 12.1

Veritas Enterprise Vault Managing Retention 12.1 Veritas Enterprise Vault Managing Retention 12.1 Veritas Enterprise Vault: Managing Retention Last updated: 2017-10-24. Legal Notice Copyright 2017 Veritas Technologies LLC. All rights reserved. Veritas,

More information

Oracle Financial Consolidation and Close Cloud

Oracle Financial Consolidation and Close Cloud Oracle Financial Consolidation and Close Cloud October Update (16.10) New Feature Summary September 2016 TABLE OF CONTENTS REVISION HISTORY... 3 ORACLE FINANCIAL CONSOLIDATION AND CLOSE CLOUD, OCTOBER

More information

Oracle Financial Consolidation and Close Cloud. What s New in the February Update (17.02)

Oracle Financial Consolidation and Close Cloud. What s New in the February Update (17.02) Oracle Financial Consolidation and Close Cloud What s New in the February Update (17.02) February 2017 TABLE OF CONTENTS REVISION HISTORY... 3 ORACLE FINANCIAL CONSOLIDATION AND CLOSE CLOUD, FEBRUARY UPDATE...

More information

Crystal Enterprise. Overview. Contents. Installation FAQ: Crystal Enterprise 9 & 10

Crystal Enterprise. Overview. Contents. Installation FAQ: Crystal Enterprise 9 & 10 : Crystal Enterprise 9 & 10 Overview Contents This document has been compiled in an effort to assist you both in determining installation requirements for your Crystal Enterprise (CE) installation as well

More information

Oracle Financial Consolidation and Close Cloud. What s New in the November Update (16.11)

Oracle Financial Consolidation and Close Cloud. What s New in the November Update (16.11) Oracle Financial Consolidation and Close Cloud What s New in the November Update (16.11) November 2016 TABLE OF CONTENTS REVISION HISTORY... 3 ORACLE FINANCIAL CONSOLIDATION AND CLOSE CLOUD, NOVEMBER UPDATE...

More information

Veritas NetBackup Copilot for Oracle Configuration Guide. Release 2.7.2

Veritas NetBackup Copilot for Oracle Configuration Guide. Release 2.7.2 Veritas NetBackup Copilot for Oracle Configuration Guide Release 2.7.2 Veritas NetBackup Copilot for Oracle Configuration Guide Documentation version: 2.7.2 Legal Notice Copyright 2016 Veritas Technologies

More information

Veritas Desktop and Laptop Option 9.2. Disaster Recovery Scenarios

Veritas Desktop and Laptop Option 9.2. Disaster Recovery Scenarios Veritas Desktop and Laptop Option 9.2 Disaster Recovery Scenarios 2 Veritas Desktop and Laptop Option The software described in this document is furnished under a license agreement and may be used only

More information

Veritas NetBackup OpenStorage Solutions Guide for Disk

Veritas NetBackup OpenStorage Solutions Guide for Disk Veritas NetBackup OpenStorage Solutions Guide for Disk UNIX, Windows, Linux Release 8.0 Veritas NetBackup OpenStorage Solutions Guide for Disk Legal Notice Copyright 2016 Veritas Technologies LLC. All

More information

Cluster Server Generic Application Agent Configuration Guide - AIX, Linux, Solaris

Cluster Server Generic Application Agent Configuration Guide - AIX, Linux, Solaris Cluster Server 7.3.1 Generic Application Agent Configuration Guide - AIX, Linux, Solaris Last updated: 2017-11-04 Legal Notice Copyright 2017 Veritas Technologies LLC. All rights reserved. Veritas and

More information

Enterprise Vault.cloud CloudLink Google Account Synchronization Guide. CloudLink to 4.0.3

Enterprise Vault.cloud CloudLink Google Account Synchronization Guide. CloudLink to 4.0.3 Enterprise Vault.cloud CloudLink Google Account Synchronization Guide CloudLink 4.0.1 to 4.0.3 Enterprise Vault.cloud: CloudLink Google Account Synchronization Guide Last updated: 2018-06-08. Legal Notice

More information

Veritas NetBackup Plug-in for VMware vsphere Web Client Guide. Release 8.1.1

Veritas NetBackup Plug-in for VMware vsphere Web Client Guide. Release 8.1.1 Veritas NetBackup Plug-in for VMware vsphere Web Client Guide Release 8.1.1 Veritas NetBackup Plug-in for VMware vsphere Web Client Guide Last updated: 2018-02-16 Document version:netbackup 8.1.1 Legal

More information

Veritas NetBackup Vault Operator s Guide

Veritas NetBackup Vault Operator s Guide Veritas NetBackup Vault Operator s Guide UNIX, Windows, and Linux Release 6.5 12308356 Veritas NetBackup Vault Operator s Guide Copyright 2001-2007 Symantec Corporation. All rights reserved. NetBackup

More information

Symantec VIP Quick Start Guide. Enabling Help Desk. Version 1.0. Author Travis Harmon Symantec. All rights reserved.

Symantec VIP Quick Start Guide. Enabling Help Desk. Version 1.0. Author Travis Harmon Symantec. All rights reserved. Version 1.0 Author Travis Harmon 2017 Symantec. All rights reserved. Table of Contents Introduction... 2 Creating a User in VIP Manager... 3 Locating Users in VIP Manager... 4 Enrolling a User Credential

More information

Veritas ediscovery Platform

Veritas ediscovery Platform Veritas ediscovery Platform Utility Node Guide 9.1 Veritas ediscovery Platform : Utility Node Guide The software described in this book is furnished under a license agreement and may be used only in accordance

More information

Veritas Desktop and Laptop Option 9.2

Veritas Desktop and Laptop Option 9.2 1. Veritas Desktop and Laptop Option 9.2 Quick Reference Guide for DLO Installation and Configuration 24-Jan-2018 Veritas Desktop and Laptop Option: Quick Reference Guide for DLO Installation and Configuration.

More information

Veritas Backup Exec Quick Installation Guide

Veritas Backup Exec Quick Installation Guide Veritas Backup Exec Quick Installation Guide Legal Notice Copyright 2017 Veritas Technologies LLC. All rights reserved. Veritas and the Veritas Logo are trademarks or registered trademarks of Veritas Technologies

More information

Veritas Desktop and Laptop Option 9.1 Qualification Details with Cloud Service Providers (Microsoft Azure and Amazon Web Services)

Veritas Desktop and Laptop Option 9.1 Qualification Details with Cloud Service Providers (Microsoft Azure and Amazon Web Services) Veritas Desktop and Laptop Option 9.1 Qualification Details with Cloud Service Providers (Microsoft Azure and Amazon Web Services) Veritas Desktop and Laptop Option: Qualification Details with Cloud Service

More information

VERITAS Cluster Server Agent 1.0 for IBM HTTP Server

VERITAS Cluster Server Agent 1.0 for IBM HTTP Server VERITAS Cluster Server Agent 1.0 for IBM HTTP Server Installation and Configuration Guide Solaris February 2003 Disclaimer The information contained in this publication is subject to change without notice.

More information

Oracle Financial Consolidation and Close Cloud. What s New in the December Update (16.12)

Oracle Financial Consolidation and Close Cloud. What s New in the December Update (16.12) Oracle Financial Consolidation and Close Cloud What s New in the December Update (16.12) December 2016 TABLE OF CONTENTS REVISION HISTORY... 3 ORACLE FINANCIAL CONSOLIDATION AND CLOSE CLOUD, DECEMBER UPDATE...

More information

Veritas NetBackup for Microsoft SQL Server Administrator's Guide

Veritas NetBackup for Microsoft SQL Server Administrator's Guide Veritas NetBackup for Microsoft SQL Server Administrator's Guide for Windows Release 8.1.1 Veritas NetBackup for Microsoft SQL Server Administrator's Guide Last updated: 2018-04-10 Document version:netbackup

More information

Laserfiche 8.1 New Features Quick Reference. White Paper

Laserfiche 8.1 New Features Quick Reference. White Paper Laserfiche 8.1 New Features Quick Reference White Paper May 2009 The information contained in this document represents the current view of Compulink Management Center, Inc on the issues discussed as of

More information

Veritas Desktop and Laptop Option Mac Getting Started Guide

Veritas Desktop and Laptop Option Mac Getting Started Guide Veritas Desktop and Laptop Option 9.3.1 Mac Getting Started Guide 20-Nov-18 The software described in this document is furnished under a license agreement and may be used only in accordance with the terms

More information

Veritas Desktop Agent for Mac Getting Started Guide

Veritas Desktop Agent for Mac Getting Started Guide Veritas Desktop Agent for Mac Getting Started Guide The software described in this document is furnished under a license agreement and may be used only in accordance with the terms of the agreement. Documentation

More information

AvePoint Cloud Records. Release Notes

AvePoint Cloud Records. Release Notes AvePoint Cloud Records Release Notes Table of Contents New Features and Improvements... 2 AvePoint Cloud Records July 2018... 2 AvePoint Cloud Records May 2018... 3 AvePoint Cloud Records March 2018...

More information

Veritas NetBackup for Oracle Administrator's Guide

Veritas NetBackup for Oracle Administrator's Guide Veritas NetBackup for Oracle Administrator's Guide UNIX, Windows, and Linux Release 8.1 Veritas NetBackup for Oracle Administrator's Guide Last updated: 2017-09-26 Legal Notice Copyright 2017 Veritas Technologies

More information

Veritas NetBackup for SQLite Administrator's Guide

Veritas NetBackup for SQLite Administrator's Guide Veritas NetBackup for SQLite Administrator's Guide Windows and Linux Release 8.1.1 Documentation version: 8.1.1 Legal Notice Copyright 2018 Veritas Technologies LLC. All rights reserved. Veritas and the

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Getting Started with Oracle Data Integrator 12c Virtual Machine Installation Guide July 2017 Oracle Fusion Middleware Getting Started with Oracle Data Integrator, 12c Copyright

More information

Veritas ediscovery Platform

Veritas ediscovery Platform Veritas ediscovery Platform Utility Node Guide 8.3 Veritas ediscovery Platform : Utility Node Guide The software described in this book is furnished under a license agreement and may be used only in accordance

More information

Veritas ediscovery Platform

Veritas ediscovery Platform Veritas ediscovery Platform Release Notes 9.0.1 Release Notes PAGE: 2 Veritas ediscovery Platform : Release Notes 9.0.1 The software described in this book is furnished under a license agreement and may

More information

Veritas Access NetBackup Solutions Guide

Veritas Access NetBackup Solutions Guide Veritas Access 7.2.1 NetBackup Solutions Guide Linux 7.2.1 Veritas Access NetBackup Solutions Guide Last updated: 2019-04-04 Document version: 7.2.1 Rev 1 Legal Notice Copyright 2017 Veritas Technologies

More information

Storage Foundation and High Availability Solutions HA and Disaster Recovery Solutions Guide for Microsoft SharePoint 2013

Storage Foundation and High Availability Solutions HA and Disaster Recovery Solutions Guide for Microsoft SharePoint 2013 Storage Foundation and High Availability Solutions HA and Disaster Recovery Solutions Guide for Microsoft SharePoint 2013 Windows 7.1 April 2016 Storage Foundation and High Availability Solutions HA and

More information

Enterprise Vault Versions of FSA Agent and Enterprise Vault Reporting or later

Enterprise Vault Versions of FSA Agent and Enterprise Vault Reporting or later Versions of FSA Agent and 2007 or later : Versions of FSA Agent and Last updated: 2018-04-05. Legal Notice Copyright 2018 Veritas Technologies LLC. All rights reserved. Veritas, the Veritas Logo,, Compliance

More information

Enterprise Vault Requesting and Applying an SSL Certificate and later

Enterprise Vault Requesting and Applying an SSL Certificate and later Enterprise Vault Requesting and Applying an SSL Certificate 10.0.3 and later Enterprise Vault : Requesting and Applying an SSL Certificate Last updated: 2018-04-12. Legal Notice Copyright 2018 Veritas

More information

Veritas NetBackup for Microsoft Exchange Server Administrator s Guide

Veritas NetBackup for Microsoft Exchange Server Administrator s Guide Veritas NetBackup for Microsoft Exchange Server Administrator s Guide for Windows Release 8.0 Veritas NetBackup for Microsoft Exchange Server Administrator s Guide Last updated: 2016-11-07 Legal Notice

More information

AccessData. Forensic Toolkit. Upgrading, Migrating, and Moving Cases. Version: 5.x

AccessData. Forensic Toolkit. Upgrading, Migrating, and Moving Cases. Version: 5.x AccessData Forensic Toolkit Upgrading, Migrating, and Moving Cases Version: 5.x 1 AccessData Legal and Contact Information Document date: February 11, 2015 Legal Information 2015 AccessData Group, Inc.

More information

VERITAS Storage Migrator 3.4 VERITAS Storage Migrator Remote 3.4

VERITAS Storage Migrator 3.4 VERITAS Storage Migrator Remote 3.4 VERITAS Storage Migrator 3.4 VERITAS Storage Migrator Remote 3.4 Release Notes UNIX June 2000 100-001494 Disclaimer The information contained in this publication is subject to change without notice. VERITAS

More information

ORACLE SERVICES FOR APPLICATION MIGRATIONS TO ORACLE HARDWARE INFRASTRUCTURES

ORACLE SERVICES FOR APPLICATION MIGRATIONS TO ORACLE HARDWARE INFRASTRUCTURES ORACLE SERVICES FOR APPLICATION MIGRATIONS TO ORACLE HARDWARE INFRASTRUCTURES SERVICE, SUPPORT AND EXPERT GUIDANCE FOR THE MIGRATION AND IMPLEMENTATION OF YOUR ORACLE APPLICATIONS ON ORACLE INFRASTRUCTURE

More information

User s Guide April 2017

User s Guide April 2017 User s Guide April 2017 OCR 2017 Table of Contents Contents Welcome... 3 Audience... 3 What is kiteworks?... 4 Supported Browsers... 4 Notification emails... 5 Sign In... 6 Get Oriented: A Guided Tour...

More information

TIBCO Spotfire Clinical Graphics Connector for SAS Installation and Administration Guide. Software Release 2.2 August 2012

TIBCO Spotfire Clinical Graphics Connector for SAS Installation and Administration Guide. Software Release 2.2 August 2012 TIBCO Spotfire Clinical Graphics Connector for SAS Installation and Administration Guide Software Release 2.2 August 2012 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE.

More information