Tintri Automation Toolkit Quick Start & Overview Guide

Size: px
Start display at page:

Download "Tintri Automation Toolkit Quick Start & Overview Guide"

Transcription

1 QUICK START & OVERVIEW GUIDE Tintri Automation Toolkit Quick Start & Overview Guide Windows PowerShell is Microsoft s command-line shell and scripting language for system administrators. In PowerShell, administrative tasks are performed by specialized cmdlets (pronounced command-lets). The Tintri Automation Toolkit is a set of cmdlets for Windows PowerShell that assists in task automation and serves as a Command Line Interface (CLI) and high-level API. These cmdlets let you easily perform a wide variety of Tintri specific tasks and integrate components from other vendors within PowerShell scripts. The cmdlets cover many aspects of Tintri operations. Tintri cmdlets operate with both VMstore and Tintri Global Center products; however, all cmdlets do not work for all products. Please check the cmdlet documentation for specific interactions. Note: The Tintri Automation Toolkit does not support Hyper-V (new in Tintri OS x), except for the Get-TintriVM and Restore-TintriVM cmdlets. Requirements Windows 7 and Windows Server 2008 R2 or later, x64 Microsoft PowerShell 3.0 Microsoft.NET Framework 4.5 or later Tintri VMstore running Tintri OS 3.0 or later How this documentation is organized This document contains the following sections: Initial Setup on page 3 provides instruction on how to download and install the Tintri Automation Toolkit, verify installation, get help and common use cases. Authentication on page 7 describes three methods to authenticate the Tintri Automation Toolkit to a Tintri server. Hello World Sample on page 9 provides a script used to verify the Tintri server is responding. Collect VM Information on page 10 provides a cmdlet for collecting VM information. Restoring a Hyper-V VM on page 11 provides a code example for restoring VMs. Obtain Snapshot Creation Times on page 13 provides a code example for obtaining snapshot creation times for a specific VM. Automation Toolkit PowerShell Examples on page 15 provides additonal examples for alert collection, cloning, disk information, etc Rev. C

2 Contact Tintri technical support If you encounter any trouble, please contact Tintri Technical Support via the web, , or phone: Web: Tintri, Inc Ravendale Drive Phone Local: , option 2 Mountain View, CA Phone Toll free: Tintri ( ), option 2 International: for local numbers. 2

3 Initial Setup This section provides step-by-step instruction on setting up the Tintri Automation Toolkit. Before you begin, first download the toolkit from the Tintri Support Portal. Downloading the Tintri Automation Toolkit The PowerShell Toolkit is available on the Tintri Support Portal. 1. Login to the Tintri Support Portal. 2. Click Downloads and select the Releases tab. 3. Click More Info in the Tintri Automation Toolkit section. 4. Click and save the toolkit to your local machine. Figure 1-1 Downloading the Tintri PowerShell Toolkit. Installing the Tintri Automation Toolkit To setup deployment: 1. Double-click the Tintri Automation Toolkit installer. 2. Click Next in the Welcome window. 3. Click Install. Figure 1-2 Click Next in the Welcome window (Left) and Click Install (Right). 3

4 4. Select I accept the terms in the License Agreement and click Next. 5. Select the way you want features to be installed and click Next. Figure 1-3 Select the License Agreement (Left) and select the way you want features to be installed (Right). 6. Please wait while the Setup Wizard installs the toolkit, and click Next. 7. Click Finish. Figure 1-4 Installing the Tintri PowerShell Toolkit (Left) and click Finish (Right). Verifying installation Before you can verify the installation, you first need to import the module: 1. To import the module, enter the following: Import-Module C:\Program Files\TintriPSToolKit\ TintriPSToolKit.psd1 2. To verify the installation, enter the following cmdlet: PS> get-command -Module TintriPSToolKit All commands in the toolkit are displayed. Connect-TintriServer Disconnect-TintriServer Get-TintriAlerts Get-TintriApiVersion Get-TintriAppliance Get-TintriApplianceDns 4

5 Get-TintriDashboard Get-TintriDatastore Get-TintriDatastoreReplConfiguration Get-TintriDatastoreReplPath Get-TintriDatastoreStat Get-TintriDatastoreVMSnapshotSchedule Get-TintriHypervisorDatastore Get-TintriPSToolkitConfiguration Get-TintriServerSession Get-TintriTaskStatus Get-TintriUserAccount Get-TintriVDisk Get-TintriVirtualHostResource Get-TintriVM Get-TintriVMByReplStatus Get-TintriVMReplConfiguration Get-TintriVMSnapshot Get-TintriVMSnapshotSchedule Get-TintriVMStat Get-TintriVMVDiskStat New-TintriDatastoreReplPath New-TintriVMClone New-TintriVMCloneMany New-TintriVMNameSequence New-TintriVMRemoteCopy New-TintriVMReplConfiguration New-TintriVMSnapshot New-TintriVMSnapshotSchedule Remove-TintriCachedServerCertificate Remove-TintriDatastoreReplPath Remove-TintriVMReplConfiguration Restore-TintriVM Resume-TintriDatastoreReplication Resume-TintriVMReplication Set-TintriDatastoreReplConfiguration Set-TintriDatastoreReplPath Set-TintriDefaultServer Set-TintriPSToolkitConfiguration Set-TintriUserPassword Set-TintriVMSnapshotSchedule Set-TintriVMSnapshotScheduleToDefault Suspend-TintriDatastoreReplication Suspend-TintriVMReplication 5

6 Getting help To get help for any command, use the Get-help cmdlet, for example: PS> Get-Help Get-TintriApiVersion The following details are displayed: NAME Get-TintriApiVersion SYNOPSIS Queries one or more Tintri Servers for their Tintri REST API version. SYNTAX Get-TintriApiVersion [-All [<SwitchParameter>]] [<CommonParameters>] Get-TintriApiVersion [-TintriServer] <ITintriServer> [-All [<SwitchParameter>]] [<CommonParameters>] Get-TintriApiVersion [-HostNameOrIp] <String> [-All [<SwitchParameter>]] [<CommonParameters>] Common use cases There are many possible use cases for the toolkit, including: Collect VM information from VMstore or Tintri Global Center (TGC). Snapshot management, create a manual snapshot or setup a snapshot schedule for one or more VMs. Perform backups from snapshots. Collect VMstore or TGC performance, capacity, and data protection metrics. Clone virtual disks with VM consistency. Note: Was this section helpful? Click Documentation Feedback and let us know. 6

7 Authentication There are three methods to authorize to a Tintri server (currently Tintri VMstore or Tintri Global Center): Interactively from a script Single line with user name and password Using PSCredential Interactively from a script To perform authorization interactively from a script: 1. Enter the following cmdlet in either the command line or in a script: PS> Connect-TintriServer Server mytintriserver 2. Enter your User name and Password credentials in the pop-up window. Figure 2.1 Enter your User name and Password credentials. An authentication confirmation response is displayed. Figure 2.2 Authentication confirmation response. Note: The above confirmation response is the same for all authentication methods. 7

8 Single line with a user name and password The Single Line method includes both the user name and password in the line itself. The downside of this method is that passwords in a script file are frowned upon by IT security. To perform authorization using the single line method, enter the following cmdlet: PS> Connect-TintriServer Server mytintriserver User- Name admin Password tintri987 There is no Credentials Required pop-up window. An authentication confirmation response is displayed (See Figure 2.2). Using PSCredential This method includes the PowerShell Credential object, PSCredential. To perform authorization using PSCredential, enter the following cmdlet: PS> Connect-TintriServer Server mytintriserver Credential $mycredentials There is no Credentials Required pop-up window. An authentication confirmation response is displayed (See Figure 2.2). Example: PSCredential object To create a PSCredential object: PS> $password = (ConvertTo-SecureString tintri987 -AsPlainText -Force) PS> $mycredentials = new-object System.Management.Automation.PSCredential -ArgumentList admin, $password Note: Was this section helpful? Click Documentation Feedback and let us know. 8

9 Hello World Sample The first script to verify the Tintri server is responding: PS> Connect-TintriServer Server mytintriserver User- Name admin Password tintri987 The following output is displayed: HostNameOrIp : ttvm38.tintri.com ApplianceHostName : ttvm38.tintri.com Uuid : 420E1A5BC9A PLT ApiVersion : v310 ServerType : VMstore SessionId : JSESSIONID=30640CD29FF468F599CA18 3C51B8F2A9; Path=/; Secure; HttpOnly SessionStartZoned : T11:56:01 Pacific Standard Time (-07) SessionStartLocal : 6/13/ :56:01 AM LastUsed : 6/13/ :56:02 AM SessionDuration : 0:00:00:00 (d:hh:mm:ss) ApiMethodCallCount : 2 IsDefaultServer : True PS> Get-TintriApiVersion Tintri Server Type : Tintri VMstore API Version : v310 Note: Was this section helpful? Click Documentation Feedback and let us know. 9

10 Collect VM Information To collect VM information, enter the following cmdlet: PS> Get-TintriVm The following details are displayed below (the list may be long due to the number of VMs attached to the Tintri server). Name : ttvm38-01-vm-1 VCenterName : dom.tintri.com Host : maith.tintri.com FolderPath : dc-pri Uuid : 68FABB62-5D69-22ED-BE9C- 88F938DA6717-VIM F IsLive : True IsTemplate : False IsInInventory : True IsPoweredOn : False ReplicationEnabled : True ReplicationState : RUNNING Note: Was this section helpful? Click Documentation Feedback and let us know. 10

11 Restoring a Hyper-V VM This version of the Tintri Automation Toolkit supports restoration of Hyper-V VMs from only the latest VM snapshot. To obtain the list of VMs with VM type (VMware, Hyper-V or RHEV) associated with each VM, enter the following cmdlet. PS> Get-TintriVM Use Restore-TintriVM -Name <VMName> -UseLatestSnapshot -DestinationDirectory <Hyper-V share\vmnamedir> with the following conditions: The destination directory must be directly under any VMstore Hyper-V share. A list of shares can be viewed on the VMstore UI under Settings-> HyperV Shares. The directory should not already exist. If it does, the cmdlet will fail. Once completed, the Hyper-V Import-VM cmdlet can be used to import the cloned VM into the Hyper-V host. The following example illustrates the use of the Get-TintriVM and Restore-TintriVM cmdlets to restore a Hyper-V VM: # Import module import-module C:\Program Files\TintriPSToolkit\ TintriPSToolkit.psd1 # Connect to server $server = Connect-TintriServer -Server <EnterServerName> -UserName <EnterUserName> -Password <EnterPassword> # Get VM $vm = Get-TintriVM -Name <EnterVMName> # See VM Object $vm # Restore Tintri VM Restore-TintriVM -VM $vm -DestinationDirectory <EnterHypervShare> -UseLatestSnapshot -TintriServer $server For example: Restore-TintriVM -VM $vm -DestinationDirectory hyperv\1234 -UseLatestSnapshot -TintriServer $server 11

12 # Import VM to resurrect it $vmdestpath = <Enter UNC_FQDN Of Tintri Box\hyperv\ Enter Destination Directory> $vmsourcepath = <Enter UNC_FQDN Of Tintri Box\hyperv\ Enter Source Directory Used Before> For example: $vmdestpath = \\My VMStore FQDN\hyperv\1234Restore $vmsourcepath = \\My VMStore FQDN\hyperv\1234 # Get XML File $xmlfile = Get-ChildItem $vmsourcepath\* -include *.xml $vmfile = $vmsourcepath + \ + $xmlfile.name $importedvm = Import-VM -Path $vmfile -vhdsourcepath $vmsourcepath -copy -GenerateNewId -VhdDestinationPath $vmdestpath -SmartPagingFilePath $vmdestpath -SnapshotFilePath $vmdestpath -VirtualMachinePath $vmdestpath Note: Was this section helpful? Click Documentation Feedback and let us know. 12

13 Obtain Snapshot Creation Times The code example below obtains the Snapshot creation times for a specific VM: # Displays the creation time of the first VM on the Tintri Server. # # Input positional parameters: # 1. Tintri server name or IP address # 2. Optional user name which defaults to admin param([string]$tintriserver, [String]$user= admin ) # Connect to the Tintri server. $conn = connect-tintriserver -Server $tintriserver -UserName $user $myhost = $conn.appliancehostname $myapiversion = $conn.apiversion write-verbose Connected to $myhost at $myapiversion. # Obtain all the VMs associated with this Tintri server. $vms = get-tintrivm # Extract the name of the first VM. $vmname = $vms[0].vmware.name Write-verbose Getting Snapshot create times for $vm- Name. $ss = get-tintrivmsnapshot -Name $vmname $ss.createdate # Disconnect from the Tintri server. disconnect-tintriserver -TintriServer $conn write-verbose Disconnected from $myhost. Notice the VM name is inside the VMware data structure, returned from get-tintrivm. PS>.\get_vm_snapshots ttvm38.tintri.com The following output is displayed: Connected to ttvm38.tintri.com at v310. Getting Snapshot create timess for ttvm38-01-vm-1 (2). 5/30/2014 2:43:25 PM 6/4/ :05:05 PM 6/16/2014 5:05:26 PM 13

14 6/16/2014 6:05:26 PM 6/16/2014 7:05:27 PM 6/16/2014 8:05:27 PM 6/16/2014 9:05:22 PM 6/16/ :05:23 PM 6/16/ :05:23 PM 6/17/ :05:23 AM 6/17/2014 1:05:24 AM 6/17/2014 2:05:24 AM 6/17/2014 3:05:24 AM 6/17/2014 4:05:25 AM 6/17/2014 5:05:25 AM 6/17/2014 6:05:25 AM 6/17/2014 7:05:26 AM 6/17/2014 8:05:26 AM 6/17/2014 9:05:26 AM 6/17/ :05:27 AM 6/17/ :05:27 AM 6/17/ :05:22 PM 6/17/2014 1:05:23 PM 6/17/2014 2:05:23 PM 6/17/2014 3:05:23 PM 6/17/2014 4:05:24 PM Disconnected from ttvm38.tintri.com. Note: Was this section helpful? Click Documentation Feedback and let us know. 14

15 Automation Toolkit PowerShell Examples Automation Toolkit PowerShell Examples are available on the Tintri Support Portal. Select the Downloads tab > Utilities tab. Examples cover topics such as: alert collection, cloning, disk information, replication, snapshot control and VM monitoring. Modification of these examples may be necessary to make them work in your specific environment. Note: Was this section helpful? Click Documentation Feedback and let us know. Tintri, the Tintri logo, Tintri VMstore, and FlashFirst are trademarks or registered trademarks of Tintri, Inc. All other trademarks or service marks are the property of their respective holders and are hereby acknowledged. Copyright 2014 Tintri, Incorporated. All Rights Reserved. 303 Ravendale Dr., Mt. View CA

Tintri Cloud Connector

Tintri Cloud Connector TECHNICAL WHITE PAPER Tintri Cloud Connector Technology Primer & Deployment Guide www.tintri.com Revision History Version Date Description Author 1.0 12/15/2017 Initial Release Bill Roth Table 1 - Revision

More information

Tintri VMstore for Dev/Test Environment

Tintri VMstore for Dev/Test Environment Technical White Paper Tintri VMstore for Dev/Test Environment December 2015 www.tintri.com Contents Executive Summary... 1 Snapshots... 2 Use Cases.... 2 Tintri VMstore Snapshot Benefits... 2 Clones....

More information

Tintri VMstore with Hyper-V Best Practice Guide

Tintri VMstore with Hyper-V Best Practice Guide TECHNICAL WHITE PAPER Tintri VMstore with Hyper-V Best Practice Guide Author: Dominic Cheah (Technical Marketing Engineer) Technical Best Practices Paper, Rev 1.3, Nov 4th, 2015 www.tintri.com Contents

More information

Quality of Service (QOS) With Tintri VM-Aware Storage

Quality of Service (QOS) With Tintri VM-Aware Storage TECHNICAL WHITE PAPER Quality of Service (QOS) With Tintri VM-Aware Storage Dominic Cheah Technical Marketing Engineer (TME) Oct 2015 www.tintri.com Contents Intended Audience... 3 Consolidated List of

More information

Clearswift SECURE Exchange Gateway Installation & Setup Guide. Version 1.0

Clearswift SECURE Exchange Gateway Installation & Setup Guide. Version 1.0 Clearswift SECURE Exchange Gateway Installation & Setup Guide Version 1.0 Copyright Revision 1.0, December, 2013 Published by Clearswift Ltd. 1995 2013 Clearswift Ltd. All rights reserved. The materials

More information

Storage Manager 2018 R1. Installation Guide

Storage Manager 2018 R1. Installation Guide Storage Manager 2018 R1 Installation Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION indicates either

More information

Tintri Deployment and Best Practices Guide

Tintri Deployment and Best Practices Guide TECHNICAL WHITE PAPER Tintri Deployment and Best Practices Guide for VMware vcenter Site Recovery Manager www.tintri.com Revision History Version Date Description Author 1.3 12/15/2017 Updated Bill Roth

More information

efolder BDR for Quest Rapid Recovery / VMware Continuity Cloud Guide

efolder BDR for Quest Rapid Recovery / VMware Continuity Cloud Guide efolder BDR for Quest Rapid Recovery / VMware Continuity Cloud Guide Accessing Continuity Cloud via VSphere Restore Your VM/Point in time restore Setting up Virtual Standby efolder BDR Guide for Veeam

More information

Backup and Recovery Best Practices with Tintri VMstore and Commvault Simpana Software

Backup and Recovery Best Practices with Tintri VMstore and Commvault Simpana Software TECHNICAL WHITE PAPER Backup and Recovery Best Practices with Tintri VMstore and Commvault Simpana Software Author: Dominic Cheah (TME) August 2015 www.tintri.com Contents Intended Audience... 3 Introduction...

More information

Application Layer Capture and Assignment

Application Layer Capture and Assignment Application Layer Capture and Assignment A step-by-step guide to capturing and assigning an application layer using WSM and vworkspace Dell Cloud Client-Computing August 2015 A Dell Deployment and Configuration

More information

VMware Mirage Web Manager Guide

VMware Mirage Web Manager Guide Mirage 5.3 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of this document,

More information

Data Protection Guide

Data Protection Guide SnapCenter Software 4.0 Data Protection Guide For Microsoft Exchange Server March 2018 215-12936_C0 doccomments@netapp.com Table of Contents 3 Contents Deciding whether to read the SnapCenter Data Protection

More information

ZettaMirror Install Guide

ZettaMirror Install Guide ZettaMirror Install Guide March 2014 Table of Contents Planning Your ZettaMirror Deployment...3 Where to install ZettaMirror?...3 Do I need extra retention policies?...3 How to Download & Install ZettaMirror...4

More information

Executing PowerShell Agent Commands

Executing PowerShell Agent Commands This chapter contains the following sections: Cisco UCS Director Orchestrator Workflow and PowerShell Command, page 1 Execute PowerShell Command Task, page 2 Execute Native PowerShell Command Task, page

More information

LIVENX UPGRADE GUIDE (AIO)

LIVENX UPGRADE GUIDE (AIO) LIVEACTION, INC. LIVENX UPGRADE GUIDE 7.0.1 (AIO) UPGRADE LiveAction, Inc. 3500 Copyright WEST BAYSHORE 2017 LiveAction, ROAD Inc. All rights reserved. LiveAction, LiveNX, LiveUX, the LiveAction Logo and

More information

PowerShell-Module Documentation. Release sql

PowerShell-Module Documentation. Release sql PowerShell-Module Documentation Release sql Apr 02, 2017 User Documentation 1 Requirements 3 2 Installation 5 2.1 Option 1: Installer Script......................................... 5 2.2 Option 2: Manual

More information

Executing PowerShell Agent Commands

Executing PowerShell Agent Commands This chapter contains the following sections: Cisco UCS Director Orchestrator Workflow and PowerShell Command, page 1 Execute PowerShell Command Task, page 2 Execute Native PowerShell Command Task, page

More information

Databases in Azure Practical Exercises

Databases in Azure Practical Exercises Databases in Azure Practical Exercises Overview This course includes optional exercises where you can try out the techniques demonstrated in the course for yourself. This guide lists the steps for the

More information

Migrating vrealize Automation 6.2 to 7.2

Migrating vrealize Automation 6.2 to 7.2 Migrating vrealize Automation 6.2 to 7.2 vrealize Automation 7.2 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition.

More information

Dell Storage Manager 2016 R3 Installation Guide

Dell Storage Manager 2016 R3 Installation Guide Dell Storage Manager 2016 R3 Installation Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION indicates either

More information

Install and Manage Windows Nano Server 2016 Step by Step

Install and Manage Windows Nano Server 2016 Step by Step Complete Lab (V2.0) Ahmed Abdelwahed Microsoft Certified Trainer Ahmed_abdulwahed@outlook.com Table of Contents Lab Objective... 3 Windows Nano Server 2016 overview... 3 Current infrastructure environment...

More information

Arcserve Replication and High Availability

Arcserve Replication and High Availability Arcserve Replication and High Availability PowerShell Commands Guide r16.5 Pre-release Document, only for reference This Documentation, which includes embedded help systems and electronically distributed

More information

vrealize Operations Manager Management Pack for vrealize Hyperic Release Notes

vrealize Operations Manager Management Pack for vrealize Hyperic Release Notes vrealize Operations Manager Management Pack for vrealize Hyperic Release Notes vrealize Operations Manager Management Pack for Hyperic 6.0 Last document update: 04 December 2014. Contents: New Features

More information

AppCapture 3.4 Administration

AppCapture 3.4 Administration This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of this document, see http://www.vmware.com/support/pubs.

More information

User Guide Eaton Load Shedding Module for VMware vcenter

User Guide Eaton Load Shedding Module for VMware vcenter User Guide Eaton Load Shedding Module for VMware vcenter Version: 1.03 Page 1 Contents 1. Introduction... 4 2. VMware/IPM architecture... 5 3. Installation... 7 2.1 Supported Operating Systems:... 7 2.2

More information

Data Protection Guide

Data Protection Guide SnapCenter Software 4.1 Data Protection Guide For VMs and Datastores using the SnapCenter Plug-in for VMware vsphere September 2018 215-13399_B0 doccomments@netapp.com Table of Contents 3 Contents Deciding

More information

Double-Take Move. Double-Take Move System Center Integration Toolkit User's Guide

Double-Take Move. Double-Take Move System Center Integration Toolkit User's Guide Double-Take Move Double-Take Move System Center Integration Toolkit User's Guide Notices Double-Take Move System Center Integration Toolkit User's Guide Version 7.1, Tuesday, March 03, 2015 Check the Vision

More information

LiveNX Upgrade Guide 8.0.x to 8.1.x

LiveNX Upgrade Guide 8.0.x to 8.1.x LIVEACTION, INC. LiveNX Upgrade Guide 8.0.x to 8.1.x UPGRADE LiveAction, Inc. 3500 Copyright WEST BAYSHORE 2016 LiveAction, ROAD Inc. All rights reserved. LiveAction, LiveNX, LiveUX, the LiveAction Logo

More information

CA Mobile Device Management Configure Access Control for Using Exchange PowerShell cmdlets

CA Mobile Device Management Configure Access Control for  Using Exchange PowerShell cmdlets CA Mobile Device Management Configure Access Control for Email Using Exchange PowerShell cmdlets This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter

More information

Workspace ONE UEM Notification Service. VMware Workspace ONE UEM 1811

Workspace ONE UEM  Notification Service. VMware Workspace ONE UEM 1811 Workspace ONE UEM Email Notification Service VMware Workspace ONE UEM 1811 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments

More information

One Identity Active Roles 7.2. Azure AD and Office 365 Management Administrator Guide

One Identity Active Roles 7.2. Azure AD and Office 365 Management Administrator Guide One Identity Active Roles 7.2 Azure AD and Office 365 Management Administrator Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright.

More information

User Guide. Version R94. English

User Guide. Version R94. English Cloud Backup User Guide Version R94 English March 30, 2017 Copyright Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept EULATOS

More information

Veeam ONE. Version 8.0. Deployment Guide

Veeam ONE. Version 8.0. Deployment Guide Veeam ONE Version 8.0 Deployment Guide April, 2015 2015 Veeam Software. All rights reserved. All trademarks are the property of their respective owners. No part of this publication may be reproduced, transmitted,

More information

Installing and Configuring VMware Identity Manager Connector (Windows) OCT 2018 VMware Identity Manager VMware Identity Manager 3.

Installing and Configuring VMware Identity Manager Connector (Windows) OCT 2018 VMware Identity Manager VMware Identity Manager 3. Installing and Configuring VMware Identity Manager Connector 2018.8.1.0 (Windows) OCT 2018 VMware Identity Manager VMware Identity Manager 3.3 You can find the most up-to-date technical documentation on

More information

Developing and Deploying vsphere Solutions, vservices, and ESX Agents

Developing and Deploying vsphere Solutions, vservices, and ESX Agents Developing and Deploying vsphere Solutions, vservices, and ESX Agents vsphere 6.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

IBM XIV Storage System IBM Hyper-Scale Manager for Virtual Appliance Version 1.4. User Guide GC

IBM XIV Storage System IBM Hyper-Scale Manager for Virtual Appliance Version 1.4. User Guide GC IBM XIV Storage System IBM Hyper-Scale Manager for Virtual Appliance Version 1.4 User Guide GC27-5985-00 Note Before using this information and the product it supports, read the information in Notices

More information

Using ANM With Virtual Data Centers

Using ANM With Virtual Data Centers APPENDIXB Date: 3/8/10 This appendix describes how to integrate ANM with VMware vcenter Server, which is a third-party product for creating and managing virtual data centers. Using VMware vsphere Client,

More information

Developing and Deploying vsphere Solutions, vservices, and ESX Agents

Developing and Deploying vsphere Solutions, vservices, and ESX Agents Developing and Deploying vsphere Solutions, vservices, and ESX Agents vsphere 5.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

Replicator. Enterprise API Guide VERSION January 04,

Replicator. Enterprise API Guide VERSION January 04, Replicator Enterprise API Guide VERSION 7.4.0 January 04, 2018 www.metalogix.com info@metalogix.com 202.609.9100 Copyright International GmbH, 2002-2018. All rights reserved. No part or section of the

More information

Dell Storage Compellent Integration Tools for VMware

Dell Storage Compellent Integration Tools for VMware Dell Storage Compellent Integration Tools for VMware Version 4.0 Administrator s Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your

More information

Centrify Server Suite 2014

Centrify Server Suite 2014 Centrify Server Suite 2014 Access Control and Privilege Management Scripting Guide June 2014 Centrify Corporation Legal notice This document and the software described in this document are furnished under

More information

Quick Start Guide For Ipswitch Failover v9.0.1

Quick Start Guide For Ipswitch Failover v9.0.1 For Ipswitch Failover v9.0.1 Copyright 1991-2015 All rights reserved. This document, as well as the software described in it, is furnished under license and may be used or copied only in accordance with

More information

SimpliVity RapidDR Guide

SimpliVity RapidDR Guide SimpliVity RapidDR Guide Version 1.2.0 www.simplivity.com Trademarks SimpliVity, SimpliVity cube logo, The SimpliVity Data Virtualization Company, OmniCube, OmniStack, Global Federated Architecture, Data

More information

AppCapture 3.5 Administration. VMware Horizon Cloud Service with Hosted Infrastructure 17.1 VMware Horizon Cloud Service

AppCapture 3.5 Administration. VMware Horizon Cloud Service with Hosted Infrastructure 17.1 VMware Horizon Cloud Service AppCapture 3.5 Administration VMware Horizon Cloud Service with Hosted Infrastructure 17.1 VMware Horizon Cloud Service You can find the most up-to-date technical documentation on the VMware website at:

More information

Dell Storage Compellent Integration Tools for VMware

Dell Storage Compellent Integration Tools for VMware Dell Storage Compellent Integration Tools for VMware Administrator s Guide Version 3.1 Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your

More information

Deploy the ExtraHop Discover Appliance with Hyper-V

Deploy the ExtraHop Discover Appliance with Hyper-V Deploy the ExtraHop Discover Appliance with Hyper-V Published: 2018-12-14 The following procedures explain how to deploy the ExtraHop Discover EDA 1000v and EDA 2000v virtual appliance on the Microsoft

More information

Dell EMC Ready Architectures for VDI

Dell EMC Ready Architectures for VDI Dell EMC Ready Architectures for VDI Designs for VMware Horizon 7 on Dell EMC XC Family September 2018 H17387 Deployment Guide Abstract This deployment guide provides instructions for deploying VMware

More information

Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com.

Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com. VMware AirWatch Email Notification Service Installation Guide Providing real-time email notifications to ios devices with AirWatch Inbox and VMware Boxer AirWatch v9.1 Have documentation feedback? Submit

More information

Automating vcloud Director with OnCommand Workflow Automation

Automating vcloud Director with OnCommand Workflow Automation Automating vcloud Director with OnCommand Workflow Automation Pirate Pack for vcloud v1.0 Jeremy Goodrum, NetApp February 2013 Abstract The purpose of this document is to guide administrators through the

More information

Deploy the ExtraHop Discover Appliance with VMware

Deploy the ExtraHop Discover Appliance with VMware Deploy the ExtraHop Discover Appliance with VMware Published: 2018-07-17 The ExtraHop virtual appliance can help you to monitor the performance of your applications across internal networks, the public

More information

Dell Storage Integration Tools for VMware

Dell Storage Integration Tools for VMware Dell Storage Integration Tools for VMware Version 4.1 Administrator s Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION:

More information

Developing and Deploying vsphere Solutions, vservices, and ESX Agents. 17 APR 2018 vsphere Web Services SDK 6.7 vcenter Server 6.7 VMware ESXi 6.

Developing and Deploying vsphere Solutions, vservices, and ESX Agents. 17 APR 2018 vsphere Web Services SDK 6.7 vcenter Server 6.7 VMware ESXi 6. Developing and Deploying vsphere Solutions, vservices, and ESX Agents 17 APR 2018 vsphere Web Services SDK 6.7 vcenter Server 6.7 VMware ESXi 6.7 You can find the most up-to-date technical documentation

More information

Backup and Restore of the vcenter Server using the Avamar VMware Image Protection Solution

Backup and Restore of the vcenter Server using the Avamar VMware Image Protection Solution - Backup and Restore of the vcenter Server using the Avamar VMware Image Protection Solution December 2017 ABSTRACT This whitepaper defines how to protect the vcenter Server Appliance (VCSA) and the Platform

More information

HPE StoreVirtual Storage Application Aware Snapshot Manager Deployment Guide

HPE StoreVirtual Storage Application Aware Snapshot Manager Deployment Guide HPE StoreVirtual Storage Application Aware Snapshot Manager Deployment Guide Abstract This guide contains instructions for installing and deploying the StoreVirtual Application Aware Snapshot Manager to

More information

Backup and Recovery Best Practices with Veeam Backup & Replication

Backup and Recovery Best Practices with Veeam Backup & Replication TECHNICAL WHITE PAPER Backup and Recovery Best Practices with Veeam Backup & Replication www.tintri.com Revision History Version Date Description Author 1.2 01/05/2018 Updated Release Bill Roth 1.1 07/11/2016

More information

Backup Tab. User Guide

Backup Tab. User Guide Backup Tab User Guide Contents 1. Introduction... 2 Documentation... 2 Licensing... 2 Overview... 2 2. Create a New Backup... 3 3. Manage backup jobs... 4 Using the Edit menu... 5 Overview... 5 Destination...

More information

Site Recovery Manager Security

Site Recovery Manager Security Site Recovery Manager 6.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions

More information

Hyper-V Rapid Recovery - Recovery in Place

Hyper-V Rapid Recovery - Recovery in Place Applicable Products These instructions apply to the following products: Barracuda Intronis Backup - MSP Hyper-V Rapid Recovery Restore Tabs The following table provides a description of the page features.

More information

Data Protection Guide

Data Protection Guide SnapCenter Software 4.0 Data Protection Guide For Custom Plug-ins March 2018 215-12932_C0 doccomments@netapp.com Table of Contents 3 Contents Deciding on whether to read the SnapCenter Data Protection

More information

Developing and Deploying vsphere Solutions, vservices, and ESX Agents

Developing and Deploying vsphere Solutions, vservices, and ESX Agents Developing and Deploying vsphere Solutions, vservices, and ESX Agents Modified on 27 JUL 2017 vsphere Web Services SDK 6.5 vcenter Server 6.5 VMware ESXi 6.5 Developing and Deploying vsphere Solutions,

More information

Backup and Recovery Best Practices With Tintri VMstore

Backup and Recovery Best Practices With Tintri VMstore Backup and Recovery Best Practices With Tintri VMstore Backup and Recovery Best Practices with Tintri VMstore TECHNICAL BEST PRACTICES PAPER, Revision 1.0, April 10, 2014 Contents Contents Introduction

More information

Dell EMC vsan Ready Nodes for VDI

Dell EMC vsan Ready Nodes for VDI Dell EMC vsan Ready Nodes for VDI Integration of VMware Horizon on Dell EMC vsan Ready Nodes April 2018 H17030.1 Deployment Guide Abstract This deployment guide provides instructions for deploying VMware

More information

SnapCenter Software 4.1. Administration Guide. December _C0 Updated for 4.1.1

SnapCenter Software 4.1. Administration Guide. December _C0 Updated for 4.1.1 SnapCenter Software 4.1 Administration Guide December 2018 215-13391_C0 doccomments@netapp.com Updated for 4.1.1 Table of Contents 3 Contents Deciding whether to read the SnapCenter Administration information...

More information

NexentaStor VVOL

NexentaStor VVOL NexentaStor 5.1.1 VVOL Admin Guide Date: January, 2018 Software Version: NexentaStor 5.1.1 VVOL Part Number: 3000-VVOL-5.1.1-000065-A Table of Contents Preface... 3 Intended Audience 3 References 3 Document

More information

Upgrading Cisco UCS Director to Release 6.6

Upgrading Cisco UCS Director to Release 6.6 First Published: 2018-04-27 Overview of the Upgrade to Cisco UCS Director, Release 6.6 The upgrade process to Cisco UCS Director, Release 6.6 depends on the current version of the software that is installed

More information

User Guide Eaton Load Shedding Module for VMware vcenter

User Guide Eaton Load Shedding Module for VMware vcenter User Guide Eaton Load Shedding Module for VMware vcenter Version: 1.02 Page 1 Contents 1. Introduction... 4 2. VMware/IPM architecture... 5 3. Installation... 7 2.1 Supported Operating Systems:... 7 2.2

More information

vcenter Server Installation and Setup Modified on 11 MAY 2018 VMware vsphere 6.7 vcenter Server 6.7

vcenter Server Installation and Setup Modified on 11 MAY 2018 VMware vsphere 6.7 vcenter Server 6.7 vcenter Server Installation and Setup Modified on 11 MAY 2018 VMware vsphere 6.7 vcenter Server 6.7 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

Crestron Fusion Cloud On-Premises Software Enterprise Management Platform. Installation Guide Crestron Electronics, Inc.

Crestron Fusion Cloud On-Premises Software Enterprise Management Platform. Installation Guide Crestron Electronics, Inc. Crestron Fusion Cloud On-Premises Software Enterprise Management Platform Installation Guide Crestron Electronics, Inc. Crestron product development software is licensed to Crestron dealers and Crestron

More information

vcloud Director User's Guide 04 OCT 2018 vcloud Director 9.5

vcloud Director User's Guide 04 OCT 2018 vcloud Director 9.5 vcloud Director User's Guide 04 OCT 2018 vcloud Director 9.5 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about this

More information

efolder BDR for Veeam Hyper-V Continuity Cloud Guide Setup Continuity Cloud Import Backup Copy Job Restore Your VM

efolder BDR for Veeam Hyper-V Continuity Cloud Guide Setup Continuity Cloud Import Backup Copy Job Restore Your VM efolder BDR for Veeam Hyper-V Continuity Cloud Guide Setup Continuity Cloud Import Backup Copy Job Restore Your VM efolder BDR Guide for Veeam Page 1 of 36 INTRODUCTION Thank you for choosing the efolder

More information

Test-King.VMCE_V8.40Q.A

Test-King.VMCE_V8.40Q.A Test-King.VMCE_V8.40Q.A Number: VMCE_V8 Passing Score: 800 Time Limit: 120 min File Version: 2.8 http://www.gratisexam.com/ VMCE_V8 Veeam Certified Engineer v8 1. It put me out from my hurdles and I got

More information

Using the vrealize Orchestrator Operations Client. vrealize Orchestrator 7.5

Using the vrealize Orchestrator Operations Client. vrealize Orchestrator 7.5 Using the vrealize Orchestrator Operations Client vrealize Orchestrator 7.5 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments

More information

Data Protection Guide

Data Protection Guide SnapCenter Software 2.0 Data Protection Guide For Windows File Systems January 2017 215-11356_A0 doccomments@netapp.com Table of Contents 3 Contents Deciding whether to read this information... 5 SnapCenter

More information

USER GUIDE. CTERA Agent for Windows. June 2016 Version 5.5

USER GUIDE. CTERA Agent for Windows. June 2016 Version 5.5 USER GUIDE CTERA Agent for Windows June 2016 Version 5.5 Copyright 2009-2016 CTERA Networks Ltd. All rights reserved. No part of this document may be reproduced in any form or by any means without written

More information

Upgrading Cisco UCS Director to Release 6.5

Upgrading Cisco UCS Director to Release 6.5 First Published: 2017-07-11 Last Modified: 2018-01-02 Overview of the Upgrade to Cisco UCS Director, Release 6.5 The upgrade process to Cisco UCS Director, Release 6.5 depends on the current version of

More information

Shavlik Protect. Upgrade Guide

Shavlik Protect. Upgrade Guide Shavlik Protect Upgrade Guide Copyright and Trademarks Copyright Copyright 2009 2014 LANDESK Software, Inc. All rights reserved. This product is protected by copyright and intellectual property laws in

More information

Azure Security and Compliance Practical Exercises

Azure Security and Compliance Practical Exercises Azure Security and Compliance Practical Exercises Overview This course includes optional practical exercises where you can try out the technologies described in the course for yourself. This guide lists

More information

Installing Cisco CMX in a VMware Virtual Machine

Installing Cisco CMX in a VMware Virtual Machine Installing Cisco CMX in a VMware Virtual Machine This chapter describes how to install and deploy a Cisco Mobility Services Engine (CMX) virtual appliance. Cisco CMX is a prebuilt software solution that

More information

Tintri Deployment and Best Practices Guide for VMware vcenter Site Recovery Manager

Tintri Deployment and Best Practices Guide for VMware vcenter Site Recovery Manager TECHNICAL WHITE PAPER Tintri Deployment and Best Practices Guide for VMware vcenter Site Recovery Manager v1.1 May 2017 www.tintri.com Revision History Version Date Description Author 1.1 05/01/2017 Document

More information

Migrating vrealize Automation 6.2 to 7.1

Migrating vrealize Automation 6.2 to 7.1 Migrating vrealize Automation 6.2 to 7.1 vrealize Automation 7.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition.

More information

Using vrealize Operations Tenant App as a Service Provider

Using vrealize Operations Tenant App as a Service Provider Using vrealize Operations Tenant App as a Service Provider Using vrealize Operations Tenant App as a Service Provider You can find the most up-to-date technical documentation on the VMware Web site at:

More information

Backup Tab User Guide

Backup Tab User Guide Backup Tab User Guide Contents 1. Introduction... 2 Documentation... 2 Licensing... 2 Overview... 2 2. Create a New Backup... 3 3. Manage backup jobs... 4 Using the Edit menu... 5 Overview... 5 Destination...

More information

Quick Start Guide. Takes only a few minutes to read S. De Anza Blvd., Suite #106 San Jose, CA Phone: (408) Fax: (408)

Quick Start Guide. Takes only a few minutes to read S. De Anza Blvd., Suite #106 San Jose, CA Phone: (408) Fax: (408) Quick Start Guide Takes only a few minutes to read 1340 S. De Anza Blvd., Suite #106 San Jose, CA 95129 Phone: (408) 872-3103 Fax: (408) 861-9601 Welcome to AddressGrabber Suite! Thank you for choosing

More information

vcenter Server Installation and Setup Update 1 Modified on 30 OCT 2018 VMware vsphere 6.7 vcenter Server 6.7

vcenter Server Installation and Setup Update 1 Modified on 30 OCT 2018 VMware vsphere 6.7 vcenter Server 6.7 vcenter Server Installation and Setup Update 1 Modified on 30 OCT 2018 VMware vsphere 6.7 vcenter Server 6.7 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

Deploy the ExtraHop Discover Appliance with Hyper-V

Deploy the ExtraHop Discover Appliance with Hyper-V Deploy the ExtraHop Discover Appliance with Hyper-V Published: 2018-07-16 The following procedures explain how to deploy the ExtraHop Discover EDA 1000v and EDA 2000v virtual appliance on the Microsoft

More information

QUICK SETUP GUIDE VIRTUAL APPLIANCE - VMWARE, XEN, HYPERV CommandCenter Secure Gateway

QUICK SETUP GUIDE VIRTUAL APPLIANCE - VMWARE, XEN, HYPERV CommandCenter Secure Gateway QUICK SETUP GUIDE VIRTUAL APPLIANCE - VMWARE, XEN, HYPERV CommandCenter Secure Gateway This Quick Setup Guide explains how to install and configure the CommandCenter Secure Gateway. For additional information

More information

Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com.

Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com. VMware AirWatch Email Notification Service Installation Guide Providing real-time email notifications to ios devices with AirWatch Inbox and VMware Boxer Workspace ONE UEM v9.7 Have documentation feedback?

More information

Security Guide. Connection Broker. Advanced Connection and Capacity Management for Hybrid Clouds

Security Guide. Connection Broker. Advanced Connection and Capacity Management for Hybrid Clouds Security Guide Connection Broker Advanced Connection and Capacity Management for Hybrid Clouds Version 9.0 June 2018 Contacting Leostream Leostream Corporation http://www.leostream.com 271 Waverley Oaks

More information

OnCommand Shift Best Practices Guide

OnCommand Shift Best Practices Guide Technical Report OnCommand Shift Best Practices Guide Brahmanna Chowdary Kodavali and Shashanka S R, NetApp June 2016 TR-4433 1 OnCommand Shift Best Practices Guide 2016 NetApp, Inc. All rights reserved.

More information

Microsoft Official Course

Microsoft Official Course Microsoft Official Course Module 1 Deploying and Managing Microsoft Exchange Server 2013 Module Overview Exchange Server 2013 Prerequisites and Requirements Exchange Server 2013 Deployment Managing Exchange

More information

VMware Mirage Web Management Guide. VMware Mirage 5.9.1

VMware Mirage Web Management Guide. VMware Mirage 5.9.1 VMware Mirage Web Management Guide VMware Mirage 5.9.1 VMware Mirage Web Management Guide You can find the most up-to-date technical documentation on the VMware Web site at: https://docs.vmware.com/ The

More information

Deployment and User Guide Installing and Configuring WhatsUp Gold Failover Manager

Deployment and User Guide Installing and Configuring WhatsUp Gold Failover Manager Deployment and User Guide Installing and Configuring WhatsUp Gold Failover Manager This guide provides information about installing and configuring WhatsUp Gold Failover Manager. Contents CHAPTER 1 Using

More information

1000 User VMware Horizon View 7.x Best Practices

1000 User VMware Horizon View 7.x Best Practices TECHNICAL WHITE PAPER 1000 User VMware Horizon View 7.x Best Practices Tintri VMstore, Cisco UCS and VMware Horizon View 7.x www.tintri.com Revision History Version Date Description Author 1.0 08/04/2016

More information

IBM XIV Storage System IBM Hyper-Scale Manager Installation as application Version 1.4. User Guide GC

IBM XIV Storage System IBM Hyper-Scale Manager Installation as application Version 1.4. User Guide GC IBM XIV Storage System IBM Hyper-Scale Manager Installation as application Version 1.4 User Guide GC27-5984-00 Note Before using this information and the product it supports, read the information in Notices

More information

Partner Integration Portal (PIP) Installation Guide

Partner Integration Portal (PIP) Installation Guide Partner Integration Portal (PIP) Installation Guide Last Update: 12/3/13 Digital Gateway, Inc. All rights reserved Page 1 TABLE OF CONTENTS INSTALLING PARTNER INTEGRATION PORTAL (PIP)... 3 DOWNLOADING

More information

Dynamic Work Order System (DWOS) Installation Guide

Dynamic Work Order System (DWOS) Installation Guide Dynamic Work Order System (DWOS) Installation Guide The Future of Job Shop Software 4506 Hwy. 20 Suite 200 Niceville, FL 32578 Phone (800) 725-7304 Support@ds2corp.com www.getdwos.com Copyright Notice

More information

Examples. This chapter contains the following sections:

Examples. This chapter contains the following sections: This chapter contains the following sections: PowerTool Cmdlet Generation, page 2 Org, page 4 Faults, page 4 Get Cmdlet -Hierarchy Flag, page 5 Get Cmdlet -LimitScope Flag, page 5 Get Cmdlet -UCSCentralPolicyUsage,

More information

Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com.

Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com. VMware AirWatch Email Notification Service Installation Guide Providing real-time email notifications to ios devices with AirWatch Inbox and VMware Boxer Workspace ONE UEM v9.4 Have documentation feedback?

More information

PowerShell Module for Rubrik Documentation. Release latest

PowerShell Module for Rubrik Documentation. Release latest PowerShell Module for Rubrik Documentation Release latest Mar 20, 2018 User Documentation 1 Requirements 3 2 Installation 5 2.1 Option 1: Installer Script......................................... 5 2.2

More information

LIVENX UPGRADE GUIDE 7.2.0

LIVENX UPGRADE GUIDE 7.2.0 LIVEACTION, INC. LIVENX UPGRADE GUIDE 7.2.0 UPGRADE LiveAction, Inc. 3500 Copyright WEST BAYSHORE 2017 LiveAction, ROAD Inc. All rights reserved. LiveAction, LiveNX, LiveUX, the LiveAction Logo and PALO

More information