Run ALM Test Sets from VB script
|
|
|
- Jack Black
- 9 years ago
- Views:
Transcription
1 Summary This example demonstrates how to launch an ALM Test Set from a VB Script for running automation testing at a schedule time. Using Window Task Scheduler can aid to schedule execution of the VBscript. This example was verified with QuickTest Professional (QTP) 11 and ALM 11 patch 4. Currently this script will not work with 64 bit OS. The following is example code will run ALM/Q C Test Set on a remote testing machine as long as the variables have been set within the script ( not covered in this example are other ways of setting these variables). This script will open a connection and login to the ALM/QC server. Once logged in the script will open the path to the Test Set and parse thru all of the Test Sets to find the correct one to run. The Test Run Scheduler will be loaded with the Test Set and the machine to run the Test Set. The Test Run Scheduler must run on the machine that is running the Vbscript. The script will enter a sleep routine to wait for the Test Set to complete and report completion. After the Test Set has completed, the script will check each test to see if there was a failures and set the error code flag. This example assumes you are a Project Administrator with programming skills, proficient in vbscript and Quality Center objects and methods. It is necessary to read and follow the Disclaimer section at the end of this document. In addition, the following environment was used to make this document: 1. Knowledge of ALM Open Test Architecture (OTA) 2. The scripting language is vbscript. 3. The OS is Windows Server 2003 SP2 4. Using Windows Task Scheduler included in Windows Server You are proficient in the use of Microsoft Windows Task Scheduler. Business Rules 1) When the Task Scheduler launches the vbscript, the specified Test Set is launched. Implementation STEP 1 Create the vbscript 1) Open Notepad 2) Copy the script below into the notepad. 3) In Notepad save the file type as VBS. Example runtestsetremote.vbs Page 1
2 ########################## ' ' Script : Run the ALM/QC Test Sets ' ########################## Dim objtdcon, objtreemgr, objtestsetfolder, objtestsetlist Dim objtestset, objscheduler, objexecstatus, objtestexecstatus Dim strtestsetfolderpath, strtestsetname, strreportstatus, intcounter 'Declare the Test Folder, Test and Host you wish to run the test on 'Enter the URL to QC server strqcurl = " 'Enter Domain to use on QC server strqcdomain = "DEFAULT" 'Enter Project Name strqcproject = "ALM_Demo_Project" 'Enter the User name to log in and run test strqcuser = "alex_tester" 'Enter user password for the account above. strqcpassword = "password" 'Enter the path to the Test set folder strtestsetfolderpath = "Root\Auto Test" 'Enter the test set to be run strtestsetname = "Test One" 'Enter the target machine to run test strhostname="almdemo" 'Connect to Quality Center and login. Set objtdcon = CreateObject("TDApiOle80.TDConnection") 'Make connection to QC server objtdcon.initconnectionex strqcurl 'Login in to QC server objtdcon.login strqcuser, strqcpassword 'select Domain and project objtdcon.connect strqcdomain, strqcproject 'Select the test to run Set objtreemgr = objtdcon.testsettreemanager Set objtestsetfolder = objtreemgr.nodebypath(strtestsetfolderpath) Set objtestsetlist = objtestsetfolder.findtestsets (strtestsetname) intcounter = 1 'find test set object While intcounter <= objtestsetlist.count Page 2
3 Set objtestset = objtestsetlist.item( intcounter) Wend If objtestset.name = strtestsetname Then intcounter = objtestsetlist.count + 1 End If intcounter = intcounter + 1 'Set the Host name to run on and run the test. set objscheduler = objtestset.startexecution ("") ' Set this empty to run local for automation run agent objscheduler.tdhostname = strhostname objscheduler.run 'Wait for the test to run to completion. Set objexecstatus = objscheduler.executionstatus While objexecstatus.finished = False objexecstatus.refreshexecstatusinfo "all", True If objexecstatus.finished = False Then WScript.sleep 5 End If Wend 'Below is example to determine if execution failed for error reporting. strreportstatus = "Passed" For intcounter = 1 To objexecstatus.count Set objtestexecstatus = objexecstatus.item(intcounter ) 'msgbox intcounter & " " & objtestexecstatus.status If Not ( Instr (1, Ucase( objtestexecstatus.status ), Ucase ( "Passed" ) ) > 0 ) Then strreportstatus = "Failed" testspassed = 0 Exit For Else testspassed = 1 End If Next objtdcon.disconnectproject If (Err.Number > 0) Then 'MsgBox "Run Time Error. Unable to complete the test execution!! " & Err.Description WScript.Quit 1 ElseIf testspassed >0 Then 'Msgbox "Tests Passed!!" WScript.Quit 0 Else 'Msgbox "Tests Failed!!" WScript.Quit 1 End If Page 3
4 STEP 2 Configure the vbscript for running Run ALM Test Sets from VB script 1) Open the vbscript file created above in Notepad. 2) Change the variables listed below in the script for your own environment. Note there are other methods to set variables that are outside the scope of this example. Variable strqcurl strqcdomain strqcproject strqcuser strqcpassword strtestsetfolderpath strtestsetname strhostname Description URL to ALM/QC server Domain to use on ALM/QC server Project Name User name to log in and run test Password for the account Path to the Test set folder Test Set to run Target machine to run Test Set STEP 3 Configure ALM/QC Client 1) Start Internet Explorer 2) Navigate to the ALM/QC server. 3) Go to the Add in page ( QC Server>/qcbin/addins.html). 4) Select the HP Quality Center Connectivity link 5) Follow instruction provided 6) Go to the Add in page ( QC Server>/qcbin/addins.html). 7) Select the HP ALM Client Registration link 8) Follow instruction provided 9) Go to the Add in page ( QC Server>/qcbin/addins.html). 10) Select the More HP ALM Add-ins link. 11) Under HP Tool Add-ins 12) Select the QuickTest Professional Add-in link 13) Follow instruction provided 14) Once the above items are install close all instances of IE. STEP 4 Configure Windows Task scheduler 1) The following is setup is for Windows 2003 Windows Task Schedule and your task schedule tool may be different. 2) Go to Start > Control Panel > Scheduled Task > Add schedule Task Page 4
5 3) New window labeled Scheduled Task Wizard will appear. 4) Click on the Next button. Page 5
6 5) Click on the Browse button and find the location of the VBscript created above. 6) Provide a name for this task. 7) Determine the interval that the script should run (Daily, Weekly, Monthly, and ) 8) Click on the Next button. 9) Enter the Start time. 10) Determine when to execute the task. 11) Enter the Start Date. Page 6
7 12) Click on the Next button. 13) Enter user name and password for the account to have this VBscript run against. 14) Click on the Next button 15) Click the Finish button. Test Run from command prompt or double clicking and use Microsoft Task Scheduler to run at designated times. Page 7
8 Keywords QTP, Test Set, ALM, QC, Automation, VBscript, schedule, remote, launch Page 8
9 Disclaimer While this example may meet the needs of your organization, the sole responsibility for modification and maintenance of the logic is yours and NOT that of the Support Organization. The decision to use the information contained herein is done at your own risk. The support organization is NOT responsible for any issues encountered as a result of implementing all or any part of the information contained or inferred herein. The intent of the information provided here is for educational purposes only. As such, the topics in this document are only guidelines NOT a comprehensive solution, as your own environment will be different. This example DOES NOT state or in any way imply that the information conveyed herein provides the solution for your environment. The appropriate system technical resources for your enterprise should perform all customization activities. Best Practice dictates NO direct changes to be made to any production environment. It is imperative to perform and thoroughly validate ALL modifications in a Test Environment. Use the results and knowledge garnered from the Test Environment experience to create a customized Production Deployment Plan for your own environment. Always ensure you have a current backup before implementing any solution. Page 9
Excel Report - Test Plan Report
Summary This Excel Report example demonstrates the use of Dashboard Excel Report Feature to create a lists of tests for a project. This example assumes you are a Project Administrator with programming
Keynote DeviceAnywhere/HP Application Lifecycle Management (HP ALM/QC) Integration Guide. TCE Automation 5.2
Keynote DeviceAnywhere/HP Application Lifecycle Management (HP ALM/QC) Integration Guide TCE Automation 5.2 Copyright Copyright 2012 Keynote DeviceAnywhere. All Rights Reserved. August 2012. Notice 2012
Installing Autodesk Vault Server 2012 on Small Business Server 2008
Installing Autodesk Vault Server 2012 on Small Business Server 2008 Please follow the following steps to ensure a successful installation of the Autodesk Vault Server 2012 on Microsoft Small Business Server
HP Application Lifecycle Management
HP Application Lifecycle Management Software Version: 11.00 Microsoft Word Add-in Guide Document Release Date: November 2010 Software Release Date: October 2010 Legal Notices Warranty The only warranties
CentreWare for Microsoft Operations Manager. User Guide
CentreWare for Microsoft Operations Manager User Guide Copyright 2006 by Xerox Corporation. All rights reserved. Copyright protection claimed includes all forms and matters of copyright material and information
CONFIGURING MICROSOFT SQL SERVER REPORTING SERVICES
CONFIGURING MICROSOFT SQL SERVER REPORTING SERVICES TECHNICAL ARTICLE November/2011. Legal Notice The information in this publication is furnished for information use only, and does not constitute a commitment
Option 1 Using the Undelete PushInstall Wizard.
Installing Undelete on Your Network Undelete can be installed in a variety of ways. If you are installing Undelete onto a single computer, no special actions are needed. Simply double-click the Undelete
Universal Management Service 2015
Universal Management Service 2015 UMS 2015 Help All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording,
NTP Software File Auditor for Windows Edition
NTP Software File Auditor for Windows Edition An NTP Software Installation Guide Abstract This guide provides a short introduction to installation and initial configuration of NTP Software File Auditor
NovaBACKUP xsp Version 15.0 Upgrade Guide
NovaBACKUP xsp Version 15.0 Upgrade Guide NovaStor / November 2013 2013 NovaStor, all rights reserved. All trademarks are the property of their respective owners. Features and specifications are subject
JAVS Scheduled Publishing. Installation/Configuration... 4 Manual Operation... 6 Automating Scheduled Publishing... 7 Windows XP... 7 Windows 7...
1 2 Copyright JAVS 1981-2010 Contents Scheduled Publishing... 4 Installation/Configuration... 4 Manual Operation... 6 Automating Scheduled Publishing... 7 Windows XP... 7 Windows 7... 12 Copyright JAVS
HP Quality Center. Software Version: 10.00. Microsoft Word Add-in Guide
HP Quality Center Software Version: 10.00 Microsoft Word Add-in Guide Document Release Date: February 2012 Software Release Date: January 2009 Legal Notices Warranty The only warranties for HP products
This Deployment Guide is intended for administrators in charge of planning, implementing and
YOUR AUTOMATED EMPLOYEE Foxtrot Deployment Guide Enterprise Edition Introduction This Deployment Guide is intended for administrators in charge of planning, implementing and maintaining the deployment
User guide. Business Email
User guide Business Email June 2013 Contents Introduction 3 Logging on to the UC Management Centre User Interface 3 Exchange User Summary 4 Downloading Outlook 5 Outlook Configuration 6 Configuring Outlook
ACTIVE DIRECTORY DEPLOYMENT
ACTIVE DIRECTORY DEPLOYMENT CASAS Technical Support 800.255.1036 2009 Comprehensive Adult Student Assessment Systems. All rights reserved. Version 031809 CONTENTS 1. INTRODUCTION... 1 1.1 LAN PREREQUISITES...
DocAve Upgrade Guide. From Version 4.1 to 4.5
DocAve Upgrade Guide From Version 4.1 to 4.5 About This Guide This guide is intended for those who wish to update their current version of DocAve 4.1 to the latest DocAve 4.5. It is divided into two sections:
How to configure the DBxtra Report Web Service on IIS (Internet Information Server)
How to configure the DBxtra Report Web Service on IIS (Internet Information Server) Table of Contents Install the DBxtra Report Web Service automatically... 2 Access the Report Web Service... 4 Verify
Installation and Deployment
Installation and Deployment Help Documentation This document was auto-created from web content and is subject to change at any time. Copyright (c) 2016 SmarterTools Inc. Installation and Deployment SmarterStats
Setting up a Scheduled task to upload pupil records to ParentPay
Setting up a Scheduled task to upload pupil records to ParentPay To ensure that your setup goes ahead without any issues please first check that you are setting the scheduled task up on the SIMS server
HP Enterprise Integration module for SAP applications
HP Enterprise Integration module for SAP applications Software Version: 2.50 User Guide Document Release Date: May 2009 Software Release Date: May 2009 Legal Notices Warranty The only warranties for HP
Technical Support Set-up Procedure
Technical Support Set-up Procedure How to Setup the Amazon S3 Application on the DSN-320 Amazon S3 (Simple Storage Service) is an online storage web service offered by AWS (Amazon Web Services), and it
SETTING UP ACTIVE DIRECTORY (AD) ON WINDOWS 2008 FOR DOCUMENTUM @ EROOM
SETTING UP ACTIVE DIRECTORY (AD) ON WINDOWS 2008 FOR DOCUMENTUM @ EROOM Abstract This paper explains how to setup Active directory service on windows server 2008.This guide also explains about how to install
Acunetix Web Vulnerability Scanner. Getting Started. By Acunetix Ltd.
Acunetix Web Vulnerability Scanner Getting Started V8 By Acunetix Ltd. 1 Starting a Scan The Scan Wizard allows you to quickly set-up an automated scan of your website. An automated scan provides a comprehensive
How To Install Vembu Onlinebackup On Windows 7.1.1 (Windows) (Windows 7) (For Windows) (Powerbook) (Winstone) (Vembu) (Program) (Procedure) (
Vembu OnlineBackup Windows client installation user guide Copyright 2014 Vembu Technologies Inc. All Rights Reserved Vembu OnlineBackup in windows machines is currently supported for below versions (Please
Automated backup. of the LumaSoft Gas database
Automated backup of the LumaSoft Gas database Contents How to enable automated backup of the LumaSoft Gas database at regular intervals... 2 How to restore the LumaSoft Gas database... 13 BE6040-11 Addendum
PCLaw Scheduled Backup
Contents About PCLaw Scheduled Backup Enabling Connection Settings Creating a Backup Schedule Viewing Backup Logs PCLaw Scheduled Backup About PCLaw Scheduled Backup Use PCLaw Scheduled Backup to automate
GE Intelligent Platforms. Activating Licenses Online Using a Local License Server
GE Intelligent Platforms Activating Licenses Online Using a Local License Server January 2016 Introduction: This document is an introduction to activating licenses online using a GE-IP Local License Server.
NSi Mobile Installation Guide. Version 6.2
NSi Mobile Installation Guide Version 6.2 Revision History Version Date 1.0 October 2, 2012 2.0 September 18, 2013 2 CONTENTS TABLE OF CONTENTS PREFACE... 5 Purpose of this Document... 5 Version Compatibility...
Creating client-server setup with multiple clients
Creating client-server setup with multiple clients Coffalyser.Net uses a SQL client server database model to store all project/experiment- related data. The client-server model has one main application
Installing GFI Network Server Monitor
Installing GFI Network Server Monitor System Requirements Machines running GFI Network Server Monitor require: Windows 2000 (SP1 or higher), 2003 or XP Pro operating systems. Windows scripting host 5.5
Setting Up the Device and Domain Administration
Setting Up the Device and Domain Administration Install a Host Support Program on your Computer A NetVault7.1 program must be installed on the computer(s) used by the administrator(s) of your backup service.
InfoRouter LDAP Authentication Web Service documentation for inforouter Versions 7.5.x & 8.x
InfoRouter LDAP Authentication Web Service documentation for inforouter Versions 7.5.x & 8.x Active Innovations, Inc. Copyright 1998 2015 www.inforouter.com Installing the LDAP Authentication Web Service
Bitrix Site Manager ASP.NET. Installation Guide
Bitrix Site Manager ASP.NET Installation Guide Contents Introduction... 4 Chapter 1. Checking for IIS Installation... 5 Chapter 2. Using An Archive File to Install Bitrix Site Manager ASP.NET... 7 Preliminary
For Active Directory Installation Guide
For Active Directory Installation Guide Version 2.5.2 April 2010 Copyright 2010 Legal Notices makes no representations or warranties with respect to the contents or use of this documentation, and specifically
Access It! Universal Web Client Integration
Page 1 of 6 Last Updated: Friday, November 16, 2012 Access It! Universal Web Client Integration Overview This document outlines the steps needed to setup the Access It! Universal Web Client. The following
GWAVA Inc. Retain. Retain Outlook Plugin
GWAVA Inc. Retain Retain Outlook Plugin GWAVA is a registered trade mark of GWAVA Inc, 100 Alexis Nihon, Suite 500, Saint Laurent, Quebec H4M 2P1 Retain is a trade mark of GWAVA Inc, 100 Alexis Nihon,
5nine EASY Backup Quick User Guide
5nine EASY Backup Quick User Guide Installation Supported Operating Systems: Microsoft Windows Server 2008 Microsoft Windows Server 2008 R2 Microsoft Windows Server 2008 R2 Core SP1 Microsoft Hyper-V Server
16.4.3 Lab: Data Backup and Recovery in Windows XP
16.4.3 Lab: Data Backup and Recovery in Windows XP Introduction Print and complete this lab. In this lab, you will back up data. You will also perform a recovery of the data. Recommended Equipment The
Desktop Deployment Guide ARGUS Enterprise 10.6. 5/29/2015 ARGUS Software An Altus Group Company
ARGUS Enterprise 10.6 5/29/2015 ARGUS Software An Altus Group Company for ARGUS Enterprise Version 10.6 5/29/2015 Published by: ARGUS Software, Inc. 3050 Post Oak Boulevard Suite 900 Houston, Texas 77056
E-Notebook SQL13.0 Desktop Migration and Upgrade Guide
E-Notebook SQL13.0 Desktop Migration and Upgrade Guide Last Modified: October 09, 2012 TABLE OF CONTENTS 1 Introduction... 3 2 Software Requirements... 3 2.1 Single User... 3 2.2 Remote (Shared Database
Using Windows Task Scheduler instead of the Backup Express Scheduler
Using Windows Task Scheduler instead of the Backup Express Scheduler This document contains a step by step guide to using the Windows Task Scheduler instead of the Backup Express Scheduler. Backup Express
CINCH Software Installation Instructions
CINCH Software Installation Instructions Version 11.4 March 2013 Introduction... 3 Chapter 1: Version Information... 4 CINCH Version... 4 Microsoft Dynamics... 4 Microsoft SQL Server... 4 Chapter 2: Downloading
Silect Software s MP Author
Silect MP Author for Microsoft System Center Operations Manager Silect Software s MP Author User Guide September 2, 2015 Disclaimer The information in this document is furnished for informational use only,
Using a Remote SQL Server Best Practices
Using a Remote SQL Server Best Practices This article will show the steps to setting up an SQL based survey starting with a new project from scratch. 1. Creating a New SQL Project from scratch a. Creating
CWOPA Broadband Users. Windows Operating System
CWOPA Broadband Users Windows Operating System October 2012 Background These instructions are to be used for VPN users who have been assigned a CWOPA username and password. If your machine has Internet
Application Note - JDSU PathTrak Video Monitoring System Data Backup and Restore Process
Application Note - JDSU PathTrak Video Monitoring System Data Backup and Restore Process This Application Note provides instructions on how to backup and restore JDSU PathTrak Video Monitoring data. Automated
Tenrox. Single Sign-On (SSO) Setup Guide. January, 2012. 2012 Tenrox. All rights reserved.
Tenrox Single Sign-On (SSO) Setup Guide January, 2012 2012 Tenrox. All rights reserved. About this Guide This guide provides a high-level technical overview of the Tenrox Single Sign-On (SSO) architecture,
MIGRATING TO AVALANCHE 5.0 WITH MS SQL SERVER
MIGRATING TO AVALANCHE 5.0 WITH MS SQL SERVER This document provides instructions for migrating to Avalanche 5.0 from an installation of Avalanche MC 4.6 or newer using MS SQL Server 2005. You can continue
HP Quality Center. Software Version: 9.20. Microsoft Excel Add-in Guide
HP Quality Center Software Version: 9.20 Microsoft Excel Add-in Guide Document Release Date: September 2008 Software Release Date: January 2008 Legal Notices Warranty The only warranties for HP products
Perceptive Intelligent Capture Solution Configration Manager
Perceptive Intelligent Capture Solution Configration Manager Installation and Setup Guide Version: 1.0.x Written by: Product Knowledge, R&D Date: February 2016 2015 Lexmark International Technology, S.A.
Lotus Notes 6.x Client Installation Guide for Windows. Information Technology Services. CSULB
The goal of this document This document was created by the Information Technology Services department to assist the Lotus Notes Coordinators in the successful installation of Lotus Notes release 6 (R6)
Automating client deployment
Automating client deployment 1 Copyright Datacastle Corporation 2014. All rights reserved. Datacastle is a registered trademark of Datacastle Corporation. Microsoft Windows is either a registered trademark
How to Log in to LDRPS-Web v10 (L10) https://enterprise.strohlservices.com
How to Log in to LDRPS-Web v10 (L10) https://enterprise.strohlservices.com Contents First Time Login Instructions... 1 1) Use the Internet Explorer (IE) Web browser*... 1 2) Install the.net Framework...
DEPLOYING EMC DOCUMENTUM BUSINESS ACTIVITY MONITOR SERVER ON IBM WEBSPHERE APPLICATION SERVER CLUSTER
White Paper DEPLOYING EMC DOCUMENTUM BUSINESS ACTIVITY MONITOR SERVER ON IBM WEBSPHERE APPLICATION SERVER CLUSTER Abstract This white paper describes the process of deploying EMC Documentum Business Activity
STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER
Notes: STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER 1. These instructions focus on installation on Windows Terminal Server (WTS), but are applicable
Secure IIS Web Server with SSL
Secure IIS Web Server with SSL EventTracker v7.x Publication Date: Sep 30, 2014 EventTracker 8815 Centre Park Drive Columbia MD 21045 www.eventtracker.com Abstract The purpose of this document is to help
TROUBLESHOOTING GUIDE
Lepide Software LepideAuditor Suite TROUBLESHOOTING GUIDE This document explains the troubleshooting of the common issues that may appear while using LepideAuditor Suite. Copyright LepideAuditor Suite,
SOLARWINDS ORION. Patch Manager Evaluation Guide for ConfigMgr 2012
SOLARWINDS ORION Patch Manager Evaluation Guide for ConfigMgr 2012 About SolarWinds SolarWinds, Inc. develops and markets an array of network management, monitoring, and discovery tools to meet the diverse
IBM Connections Plug-In for Microsoft Outlook Installation Help
IBM Connections Version 5 IBM Connections Plug-In for Microsoft Outlook Installation Help Edition Notice Note: Before using this information and the product it supports, read the information in "Notices."
10.3.1.6 Lab - Data Backup and Recovery in Windows XP
5.0 10.3.1.6 Lab - Data Backup and Recovery in Windows XP Introduction Print and complete this lab. In this lab, you will back up data. You will also perform a recovery of the data. Recommended Equipment
SUMMARY Moderate-High: Requires Visual Basic For Applications (VBA) skills, network file services skills and interoperability skills.
Author: Sanjay Sansanwal Title: Configuring FileCM Extensions for Word The information in this article applies to: o FileCM 2.6, 3.0, 3.5, 3.5.1, 3.5.2, 4.0, 4.2 o Microsoft Windows 2000 Professional,
Administration Quick Start
www.novell.com/documentation Administration Quick Start ZENworks 11 Support Pack 3 February 2014 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or use of
Spambrella SaaS Email Encryption Enablement for Customers, Domains and Users Quick Start Guide
January 24, 2015 Spambrella SaaS Email Encryption Enablement for Customers, Domains and Users Quick Start Guide Spambrella and/or other noted Spambrella related products contained herein are registered
Configuring a Custom Load Evaluator Use the XenApp1 virtual machine, logged on as the XenApp\administrator user for this task.
Lab 8 User name: Administrator Password: Password1 Contents Exercise 8-1: Assigning a Custom Load Evaluator... 1 Scenario... 1 Configuring a Custom Load Evaluator... 1 Assigning a Load Evaluator to a Server...
DameWare Server. Administrator Guide
DameWare Server Administrator Guide About DameWare Contact Information Team Contact Information Sales 1.866.270.1449 General Support Technical Support Customer Service User Forums http://www.dameware.com/customers.aspx
Omniquad Exchange Archiving
Omniquad Exchange Archiving Deployment and Administrator Guide Manual version 3.1.2 Revision Date: 20 May 2013 Copyright 2012 Omniquad Ltd. All rights reserved. Omniquad Ltd Crown House 72 Hammersmith
Pearl Echo Installation Checklist
Pearl Echo Installation Checklist Use this checklist to enter critical installation and setup information that will be required to install Pearl Echo in your network. For detailed deployment instructions
SOFTWARE INSTALLATION INSTRUCTIONS CLIENT/SERVER EDITION AND WEB COMPONENT VERSION 10
3245 University Avenue, Suite 1122 San Diego, California 92104 USA SOFTWARE INSTALLATION INSTRUCTIONS CLIENT/SERVER EDITION AND WEB COMPONENT VERSION 10 Document Number: SII-TT-002 Date Issued: July 8,
Specops Command. Installation Guide
Specops Software. All right reserved. For more information about Specops Command and other Specops products, visit www.specopssoft.com Copyright and Trademarks Specops Command is a trademark owned by Specops
Ascend Interface Service Installation
Ascend Interface Service Installation 1. If this is a new installation, make sure IIS is installed and running on your machine first, and make sure ASP is enabled under Extensions in IIS. 2. If you are
4cast Client Specification and Installation
4cast Client Specification and Installation Version 2015.00 10 November 2014 Innovative Solutions for Education Management www.drakelane.co.uk System requirements The client requires Administrative rights
QTP - Open Source Test Automation Framework Quick Start Guide
Framework Quick Start Guide Version 1.1 May 2009 DISCLAIMER Verbatim copying and distribution of this entire article are permitted worldwide, without royalty, in any medium, provided this notice is preserved.
INSTALLING MICROSOFT SQL SERVER AND CONFIGURING REPORTING SERVICES
INSTALLING MICROSOFT SQL SERVER AND CONFIGURING REPORTING SERVICES TECHNICAL ARTICLE November 2012. Legal Notice The information in this publication is furnished for information use only, and does not
Installing LearningBay Enterprise Part 2
Installing LearningBay Enterprise Part 2 Support Document Copyright 2012 Axiom. All Rights Reserved. Page 1 Please note that this document is one of three that details the process for installing LearningBay
Zanibal Plug-in For Microsoft Outlook Installation & User Guide Version 1.1
Zanibal Plug-in For Microsoft Outlook Installation & User Guide Version 1.1 Zanibal LLC Phone: +1-408-887-0480, +234-1-813-1744 Email: [email protected] www.zanibal.com Copyright 2012, Zanibal LLC. All
Using Microsoft Windows Authentication for Microsoft SQL Server Connections in Data Archive
Using Microsoft Windows Authentication for Microsoft SQL Server Connections in Data Archive 2014 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means
Informatica MRS Backup
Informatica MRS Backup The purpose of this document is to provide methods to back up the Model Repository Service (MRS) from the Administration Console as well as automating this process using a batch
ACTi NVR Config Converter User s Manual. Version 1.0.0.17 2012/06/07
ACTi NVR Config Converter User s Manual Version 1.0.0.17 2012/06/07 Legal Notice Disclaimer The information contained in this document is intended for general information purposes. ACTi Corporation shall
Spector 360 Deployment Guide. Version 7
Spector 360 Deployment Guide Version 7 December 11, 2009 Table of Contents Deployment Guide...1 Spector 360 DeploymentGuide... 1 Installing Spector 360... 3 Installing Spector 360 Servers (Details)...
Appendix E. Captioning Manager system requirements. Installing the Captioning Manager
Appendix E Installing and configuring the Captioning Manager The Mediasite Captioning Manager, a separately sold EX Server add-on, allows users to submit and monitor captioning requests through Automatic
TIGERPAW EXCHANGE INTEGRATOR SETUP GUIDE V3.6.0 August 26, 2015
TIGERPAW EXCHANGE INTEGRATOR SETUP GUIDE V3.6.0 August 26, 2015 2201 Thurston Circle Bellevue, NE 68005 www.tigerpawsoftware.com Contents Tigerpaw Exchange Integrator Setup Guide v3.6.0... 1 Contents...
SQL Server Business Intelligence
SQL Server Business Intelligence Setup and Configuration Guide Himanshu Gupta Technology Solutions Professional Data Platform Contents 1. OVERVIEW... 3 2. OBJECTIVES... 3 3. ASSUMPTIONS... 4 4. CONFIGURE
Migrating helpdesk to a new server
Migrating helpdesk to a new server Table of Contents 1. Helpdesk Migration... 2 Configure Virtual Web on IIS 6 Windows 2003 Server:... 2 Role Services required on IIS 7 Windows 2008 / 2012 Server:... 2
How To Export Data From Exchange To A Mailbox On A Pc Or Macintosh (For Free) With A Gpl Or Ipa (For A Free) Or Ipo (For Cheap) With An Outlook 2003 Or Outlook 2007 (For An Ub
Exchange Client Quick Start Guide GAPC Hosted Exchange Client Guide Page 1 of 12 Client Requirements Hosted Exchange requires Outlook 2003 and Windows XP for MAPI access to your hosted Exchange mailboxes,
Sharpdesk V3.5. Push Installation Guide for system administrator Version 3.5.01
Sharpdesk V3.5 Push Installation Guide for system administrator Version 3.5.01 Copyright 2000-2015 by SHARP CORPORATION. All rights reserved. Reproduction, adaptation or translation without prior written
HP Application Lifecycle Management
HP Application Lifecycle Management Software Version: 11.00 Microsoft Excel Add-in Guide Document Release Date: February 2011 Software Release Date: October 2010 Legal Notices Warranty The only warranties
FAS Asset Accounting FAS CIP Accounting FAS Asset Inventory SQL Server Installation & Administration Guide Version 2011.1
FAS Asset Accounting FAS CIP Accounting FAS Asset Inventory SQL Server Installation & Administration Guide Version 2011.1 2011 Sage Software, Inc. All rights reserved. Published by Sage 2325 Dulles Corner
Dynamics CRM 2011 Outlook Configuration Guide With Windows XP
Dynamics CRM 2011 Outlook Configuration Guide With Windows XP With migrating to a new version of CRM, one of the side-affects is that the Outlook Integration Client has also been updated and needs to be
Veritas Cluster Server Database Agent for Microsoft SQL Configuration Guide
Veritas Cluster Server Database Agent for Microsoft SQL Configuration Guide Windows 2000, Windows Server 2003 5.0 11293743 Veritas Cluster Server Database Agent for Microsoft SQL Configuration Guide Copyright
HELP DOCUMENTATION SSRPM WEB INTERFACE GUIDE
HELP DOCUMENTATION SSRPM WEB INTERFACE GUIDE Copyright 1998-2013 Tools4ever B.V. All rights reserved. No part of the contents of this user guide may be reproduced or transmitted in any form or by any means
escan SBS 2008 Installation Guide
escan SBS 2008 Installation Guide Following things are required before starting the installation 1. On SBS 2008 server make sure you deinstall One Care before proceeding with installation of escan. 2.
1. Data Domain Pre-requisites. 2. Enabling OST
1. Data Domain Pre-requisites Before we begin to configure NetBackup, we need to verify the following:- Administrator rights and network access to the NetBackup master and media servers That the NetBackup
Insight Video Net. LLC. CMS 2.0. Quick Installation Guide
Insight Video Net. LLC. CMS 2.0 Quick Installation Guide Table of Contents 1. CMS 2.0 Installation 1.1. Software Required 1.2. Create Default Directories 1.3. Create Upload User Account 1.4. Installing
Business Portal for Microsoft Dynamics GP 2010. Field Service Suite
Business Portal for Microsoft Dynamics GP 2010 Field Service Suite Copyright Copyright 2010 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and views
How To Create An Easybelle History Database On A Microsoft Powerbook 2.5.2 (Windows)
Introduction EASYLABEL 6 has several new features for saving the history of label formats. This history can include information about when label formats were edited and printed. In order to save this history,
Important Notes for WinConnect Server VS Software Installation:
Important Notes for WinConnect Server VS Software Installation: 1. Only Windows Vista Business, Windows Vista Ultimate, Windows 7 Professional, Windows 7 Ultimate, Windows Server 2008 (32-bit & 64-bit),
VMware/Hyper-V Backup Plug-in User Guide
VMware/Hyper-V Backup Plug-in User Guide COPYRIGHT No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, electronic, mechanical, photocopying,
Browser Client 2.0 Admin Guide
Browser Client is a web-based application that allows users to point their browser at a URL and view live video from a set of Intellex units. Browser Client 2.0 is compatible with Intellex 3.2 software.
owncloud Configuration and Usage Guide
owncloud Configuration and Usage Guide This guide will assist you with configuring and using YSUʼs Cloud Data storage solution (owncloud). The setup instructions will include how to navigate the web interface,
