FOR INTERNAL USE ONLY STANDARD OPERATING PROCEDURE WINDOWS OFFLINE PATCHING (VPC 7.4.3)

Size: px
Start display at page:

Download "FOR INTERNAL USE ONLY STANDARD OPERATING PROCEDURE WINDOWS OFFLINE PATCHING (VPC 7.4.3)"

Transcription

1 FOR INTERNAL USE ONLY STANDARD OPERATING PROCEDURE WINDOWS OFFLINE PATCHING (VPC 7.4.3) Author: John Landells Date: 12 June 2008

2 Table of Contents Introduction 3 Overview... 3 Before You Begin... 3 Standard Operating Procedure for Windows Offline Patching 4 Introduction... 4 Steps... 4 Modification of Perl Script... 4 Modifications to Patch Analysis Configuration... 5 Configuration Files... 5 Hotfix Configuration... 6 Conclusion... 6 Appendices 7 Appendix 1 Perl Script... 7 Appendix B Updated Perl Config File PAGE 1 OF 21

3 Document Information Version: v0.1 Created by: John Landells Last Modified on: Modified by: PAGE 2 OF 21

4 Introduction The purpose of this SOP is to describe how the Windows downloader introduced in VPC (Vendor Patch Content) can be enhanced to facilitate offline patching. Overview Offline patching is well established for UNIX platforms, but to handle this within a Windows platform previously meant resorting to an NSH-proxy server. Whilst this technique clearly worked and was relatively easy to implement, it always had limitations in particular, it is only a single threaded process (i.e. limited bandwidth) and it represents a potential bottleneck when downloading files during a fixed maintenance window. In order to overcome these limitations and to setup offline patching for Windows, we need to extend the functionality provided in the new Windows Downloader which is shipped as part of VPC Before You Begin This document assumes that the reader is already familiar with the Windows Downloader, and that it has been installed on a PC that has Internet access. The application server should already be configured with a job to call the generate_hotfix_items.nsh script with the appropriate parameters. This document will highlight the changes that need to be made from this starting position in order to implement a true offline patching solution. PAGE 3 OF 21

5 Standard Operating Procedure for Windows Offline Patching Introduction The following steps assume you have a basic BladeLogic environment set up and configured, and you have some general knowledge of using Configuration Manager. The example covered in this document is specific to a Windows environment. The diagram below illustrates conceptually how an environment might look in which this solution is appropriate: Windows Offline Patching Logical Diagram Steps M O D I F I C A T I O N O F P E R L S C R I P T The majority of the work required for the offline patching involves updating the Perl script, and the associated configuration file. In general, the changes are not particularly complex and simply involve downloading the additional Shavlik manifest files (since the basic system only uses HFNetChk6b.cab and PD5.cab) and to copy them to a known location, if required. They need to be copied as the script uses a temporary directory which is removed on completion of the script. To keep things simple, the additional requirements were added to the existing configuration file as follows; hfnetchk6url= hfnetchk5url= hfnetchknonumurl= pd4url= DoCopyCabs=true Note that we re not specifying a specific location for the downloaded files rather we re using the same download folder that s already been specified to hold the patches. The main part of the Perl script is reproduced in appendix A, with the relevant lines highlighted for easy reference. PAGE 4 OF 21

6 R U N N I N G T H E P E R L S C R I P T Ideally, a batch file will be prepared to run the Perl script via the Windows scheduler. Since the script will not attempt to download any files which are already present, it can be left with the default options to download all scripts, as the initial large bandwidth hit will be a one-time occurrence. Additional batch files could also be incorporated which check for critical updates on a more regular basis. Please note that during testing, it was found that this script cannot be started reliably from within the BladeLogic system! Once the patches are downloaded, a scheduled BladeLogic job can be used to handle patch analysis, as usual. M O D I F I C A T I O N S T O P A T C H A N A L Y S I S C O N F I G U R A T I O N In order to utilise the standard patch analysis functionality, the BladeLogic system, needs to be configured to use the downloaded Shavlik files and the offline patch repository. C O N F I G U R A T I O N F I L E S The configuration files are targeted from within the Configuration Manager, via the Tools->Patch Analysis Configuration menu. This brings up the dialog shown below: Configuration Files Highlighted entries point to the Internet facing PC for the Shavlik manifest files. As shown, the URI s need to be modified to point to the previously downloaded manifest files using fully qualified NSH paths. PAGE 5 OF 21

7 H O T F I X C O N F I G U R A T I O N Additionally, BladeLogic needs to be configured to use the offline patch repository as shown below: Hotfix Configuration Using the new Windows VPC functionality released with 7.4.3, we should find that the patches have already been downloaded to the application server within the payload_repository folder (representing the Depot) Conclusion This method for working with offline patching of Windows files should prove to be a reliable, robust solution in the field. As suggested in the introduction, it is preferred over the alternatives for the reasons already stated, and should be the recommended way forward for all such deployments. PAGE 6 OF 21

8 Appendices Appendix 1 Perl Script This appendix shows the modified Perl script - bladelogic_vendor_patch_content_downloader_windows.pl in it s entirety, with the modified lines highlighted. Copyright (c) 2008 Bladelogic Inc. -- All Rights Reserved -- Shavlik Patch Downloader Utility. Author: Rajesh Jangam (rjangam@bladelogic.com) Update v1.3a to handle offline updates Modifications: John Landells (John_Landells@bmc.com) Modules that we wish to Import. use XML::Parser; use download; use parseparams; use IO::File; use Getopt::Std; use File::Path; use File::Copy; use logging; use products_tree; use patch_data; my $conffilename = "downloader.conf"; my %configuration; my $impact_filter=undef; undef(@productlist); undef(@bulletinlist); undef(@qnumberlist); use vars qw/ %opt /; Set Default configuration my $wgetpath; my $downloaderpath; my $timeout = 10; my $hfnetchckurl = " my $pd5url = " PAGE 7 OF 21

9 my $blpatchcheck2path = "./BLPatchCheck2.exe"; my $downloadlocation = "."; my $shavlikconverterdll = "stconvertxml.dll"; my $shavlikpackagerdll = "stpackager.dll"; my $blconvertxmlpath = "./blconvertxml.exe"; my $languagecode = "0409"; my $outputpatchdatafile = "./patch_data.txt"; my $version = "1.3a"; my $DoCopyCabs = 0; Additional Variables for Offline Patching v1.3a my $hfnetchk6url = " my $hfnetchk5url = " my $hfnetchknonumurl = " my $pd4url = " my $DoCopyCabs; my $filehfnetchk6b = "hfnetchk6b.cab"; my $filehfnetchk6 = "hfnetchk6.cab"; my $filehfnetchk5 = "hfnetchk5.cab"; my $filehfnetchk = "hfnetchk.cab"; my $filepd5 = "pd5.cab"; my $filepd4 = "pd4.cab"; Load Configuration Parameters parseparams::parse_args("downloader.conf", \%configuration); if ((exists $configuration'isdebugenabled') and ($configuration'isdebugenabled' eq "true")) logging::setdebugenabled; logging::dbg_msg("debug logging is enabled"); if ((exists $configuration'wgetpath') and ($configuration'wgetpath' =~ /\S/)) $wgetpath = $configuration'wgetpath'; logging::dbg_msg("wgetpath is set as per configuration: $wgetpath"); if ((exists $configuration'downloaderpath') and ($configuration'downloaderpath' =~ /\S/)) $downloaderpath = $configuration'downloaderpath'; logging::dbg_msg("downloaderpath is set as per configuration: $downloaderpath"); if ((exists $configuration'wgettimeout') and ($configuration'wgettimeout' =~ /\S/)) $timeout = $configuration'wgettimeout'; logging::dbg_msg("wgettimeout is set as per configuration: $timeout"); PAGE 8 OF 21

10 if ((exists $configuration'hfnetchkurl') and ($configuration'hfnetchkurl' =~ /\S/)) $hfnetchckurl = $configuration'hfnetchkurl'; logging::dbg_msg("hfnetchkurl is set as per configuration: $hfnetchckurl"); if ((exists $configuration'pd5url') and ($configuration'pd5url' =~ /\S/)) $pd5url = $configuration'pd5url'; logging::dbg_msg("pd5url is set as per configuration: $pd5url"); if ((exists $configuration'blpatchcheck2path') and ($configuration'blpatchcheck2path' =~ /\S/)) $blpatchcheck2path = $configuration'blpatchcheck2path'; logging::dbg_msg("blpatchcheck2path is set as per configuration: $blpatchcheck2path"); if ((exists $configuration'downloadlocation') and ($configuration'downloadlocation' =~ /\S/)) $downloadlocation = $configuration'downloadlocation'; logging::dbg_msg("downloadlocation is set as per configuration: $downloadlocation"); if ((exists $configuration'shavlikconverterdll') and ($configuration'shavlikconverterdll' =~ /\S/)) $shavlikconverterdll = $configuration'shavlikconverterdll'; logging::dbg_msg("shavlikconvertdll is set as per configuration: $shavlikconverterdll"); if ((exists $configuration'shavlikpackagerdll') and ($configuration'shavlikpackagerdll' =~ /\S/)) $shavlikpackagerdll = $configuration'shavlikpackagerdll'; logging::dbg_msg("shavlikpackagerdll is set as per configuration: $shavlikpackagerdll"); if ((exists $configuration'blconvertxmlpath') and ($configuration'blconvertxmlpath' =~ /\S/)) $blconvertxmlpath = $configuration'blconvertxmlpath'; logging::dbg_msg("blconvertxmlpath is set as per configuration: $blconvertxmlpath"); if ((exists $configuration'languagecode') and ($configuration'languagecode' =~ /\S/)) $languagecode = $configuration'languagecode'; logging::dbg_msg("languagecode is set as per configuration: $languagecode"); PAGE 9 OF 21

11 if ((exists $configuration'hfnetchk6url') and ($configuration'hfnetchk6url' =~ /\S/)) $hfnetchk6url = $configuration'hfnetchk6url'; logging::dbg_msg("hfnetchk6url is set as per configuration: $hfnetchk6url"); if ((exists $configuration'hfnetchk5url') and ($configuration'hfnetchk5url' =~ /\S/)) $hfnetchk5url = $configuration'hfnetchk5url'; logging::dbg_msg("hfnetchk5url is set as per configuration: $hfnetchk5url"); if ((exists $configuration'hfnetchknonumurl') and ($configuration'hfnetchknonumurl' =~ /\S/)) $hfnetchknonumurl = $configuration'hfnetchknonumurl'; logging::dbg_msg("hfnetchknonumurl is set as per configuration: $hfnetchknonumurl"); if ((exists $configuration'pd4url') and ($configuration'pd4url' =~ /\S/)) $pd4url = $configuration'pd4url'; logging::dbg_msg("pd4url is set as per configuration: $pd4url"); if ((exists $configuration'docopycabs') and ($configuration'docopycabs' eq true)) $DoCopyCabs = 1; logging::dbg_msg("copy of CAB files required"); Global variables my $tmpfoldername = "tmp".$$; my $tmphfnetchkpath; my $tmppd5path; my $tmphfnetchk6path; my $tmphfnetchk5path; my $tmphfnetchknonumpath; my $tmppd4path; my $tmpshavlikdatafilepath = $tmpfoldername."/shavlik_data_file.xml"; my $tmpconfigfilepath = $tmpfoldername."/shavlik_config.xml"; my $tmppackageresultspath = $tmpfoldername."/shavlik_package_results.xml"; my $tmpconversionlogpath = $tmpfoldername."/conversion.log"; my $tmpproducttreefile = $tmpfoldername."/product_tree.txt"; my $tmpintermediateoutputfile = $tmpfoldername."/interm_output.txt"; my %impact_hash; if ($hfnetchckurl =~ m/.*\/(.*)$/) $tmphfnetchkpath = $tmpfoldername."/$1"; PAGE 10 OF 21

12 $tmphfnetchkpath = $tmpfoldername."/hfnetchk.xml"; if ($pd5url =~ m/.*\/(.*)$/) $tmppd5path = $tmpfoldername."/$1"; $tmppd5path = $tmpfoldername."/pd.xml"; if ($hfnetchk6url =~ m/.*\/(.*)$/) $tmphfnetchk6path = $tmpfoldername."/$1"; $tmphfnetchk6path = $tmpfoldername."/hfnetchk6.xml"; if ($hfnetchk5url =~ m/.*\/(.*)$/) $tmphfnetchk5path = $tmpfoldername."/$1"; $tmphfnetchk5path = $tmpfoldername."/hfnetchk5.xml"; if ($hfnetchknonumurl =~ m/.*\/(.*)$/) $tmphfnetchknonumpath = $tmpfoldername."/$1"; $tmphfnetchknonumpath = $tmpfoldername."/hfnetchknonum.xml"; if ($pd4url =~ m/.*\/(.*)$/) $tmppd4path = $tmpfoldername."/$1"; $tmppd4path = $tmpfoldername."/pd4.xml"; $impact_hash"unknown"="0"; $impact_hash"critical"="1"; $impact_hash"important"="2"; $impact_hash"moderate"="3"; $impact_hash"low"="4"; my %products; details Hash containing product id and associated my $proxyusername; my $proxypassword; PAGE 11 OF 21

13 my $proxyhostport; Main Code - Starts Here logging::dbg_msg("entering main body..."); Scan command line parameters &init; logging::dbg_msg("initialised"); $proxyusername = $optu; $proxypassword = $optx; $proxyhostport = $opta; Check if any filtering criteria is provided logging::dbg_msg("product file: $optp"); logging::dbg_msg("bulletin file: $optb"); logging::dbg_msg("qnumber file: $optq"); if (($optp =~ /\S/) and (parseparams::parselist("$optp", \@productlist))) logging::err_msg("unable to open product list file: $optp. This filter will be ignored."); undef(@productlist); if (($optb =~ /\S/) and (parseparams::parselist("$optb", \@bulletinlist))) logging::err_msg("unable to open Bulletin list file: $optb. This filter will be ignored."); undef(@bulletinlist); logging::dbg_msg("bulleting file OK: $optb"); if (($optq =~ /\S/) and (parseparams::parselist("$optq", \@qnumberlist))) logging::err_msg("unable to open QNumber list file: $optq. This filter will be ignored."); undef(@qnumberlist); if ($opti =~ /\S/) if (($opti eq "Critical") or ($opti eq "Important") or ($opti eq "Moderate") or ($opti eq "Low")) $impact_filter = $opti; PAGE 12 OF 21

14 logging::dbg_msg("setting Impact Identifier filter to $impact_filter"); logging::err_msg("$opti is not a valid Impact Identifier, ignoring this filter."); if (logging::isdebugenabled) printdebuglists(); Create a temporary directory for current session. logging::info_msg("creating directory $tmpfoldername for current session"); if (mkdir ($tmpfoldername, 0777)) logging::dbg_msg("creating directory $tmpfoldername succeeded"); logging::exit_msg("can't create directory \"$tmpfoldername\"", 1); Register Shavlik's Dlls regsitershavlikdlls($shavlikconverterdll, $shavlikpackagerdll); Download hfnetchk6b file from Shavlik logging::info_msg("downloading file $hfnetchckurl... to $tmphfnetchkpath"); $status = mydownloadfile($hfnetchckurl, $tmphfnetchkpath); logging::dbg_msg("download hfnetchck status : $status"); if ($status!= 0) logging::exit_msg("error downloading $hfnetchckurl file", $status); $status = 1; logging::dbg_msg("download of $hfnetchckurl complete. "); $status = 0; Download pd5 file from Shavlik logging::info_msg("downloading file $pd5url... to $tmppd5path"); PAGE 13 OF 21

15 $status = mydownloadfile($pd5url, $tmppd5path); logging::dbg_msg("download pd5 status : $status"); if ($status!= 0) logging::exit_msg("error downloading $pd5url file", $status); $status = 1; logging::dbg_msg("download of $pd5url complete. "); $status = 0; Only get the rest of the Shavlik files if we really need them! (v1.3a) if ($DoCopyCabs) logging::info_msg("downloading additional Shavlik files:"); Download hfnetchk6 file from Shavlik logging::info_msg(" Downloading file $hfnetchk6url... to $tmphfnetchk6path"); $status = mydownloadfile($hfnetchk6url, $tmphfnetchk6path); logging::dbg_msg(" Download hfnetchk6url status : $status"); if ($status!= 0) logging::exit_msg("error downloading $hfnetchk6url file", $status); $status = 1; "); logging::dbg_msg(" $status = 0; Download of $hfnetchk6url complete. Download hfnetchk5 file from Shavlik logging::info_msg(" Downloading file $hfnetchk5url... to $tmphfnetchk5path"); $status = mydownloadfile($hfnetchk5url, $tmphfnetchk5path); logging::dbg_msg(" Download hfnetchk5url status : $status"); if ($status!= 0) logging::exit_msg("error downloading $hfnetchk5url file", $status); $status = 1; "); logging::dbg_msg(" $status = 0; Download of $hfnetchk5url complete. Download hfnetchk file from Shavlik logging::info_msg(" Downloading file $hfnetchknonumurl... to $tmphfnetchknonumpath"); PAGE 14 OF 21

16 $status = mydownloadfile($hfnetchknonumurl, $tmphfnetchknonumpath); logging::dbg_msg(" Download hfnetchknonumurl status : $status"); if ($status!= 0) logging::exit_msg("error downloading $hfnetchknonumurl file", $status); $status = 1; logging::dbg_msg(" complete. "); $status = 0; Download of $hfnetchknonumurl Download pd4 file from Shavlik logging::info_msg(" Downloading file $pd4url... to $tmppd4path"); $status = mydownloadfile($pd4url, $tmppd4path); logging::dbg_msg(" Download pd4url status : $status"); if ($status!= 0) logging::exit_msg("error downloading $pd4url file", $status); $status = 1; logging::dbg_msg(" Download of $pd4url complete. "); $status = 0; logging::info_msg("-- Finished downloading additional Shavlik files --"); logging::info_msg("additional Shavlik files not required"); run decryption utility (blconvertxml) on the downloaded obfuscated files tmphfnetchkpath logging::info_msg("decrypting file $tmphfnetchkpath..."); `\"$blconvertxmlpath\" -l \"$tmpconversionlogpath\" \"$tmphfnetchkpath\" \"$tmpshavlikdatafilepath\"`; if ($?) logging::exit_msg("unable to decrypt file $tmphfnetchkpath", $?); logging::dbg_msg("decryption of $tmphfnetchkpath succeeded"); PAGE 15 OF 21

17 logging::info_msg("extracting Products information and their Service Pack information from decrypted file..."); Here we create a data structure containing product nodes supported by Shavlik with their associated Service Packs. products_tree::create_products_tree(\%products, $tmpshavlikdatafilepath, $tmpproducttreefile); logging::dbg_msg("done extracting products information from the decrypted file..."); logging::info_msg("creating a shavlik_config.xml file containing patch information needed for running Shavlik Packager..."); Open a new file config file for writing. my $output = new IO::File(">$tmpConfigFilePath"); my $patch_id = 1; print $output "<?xml version=\"1.0\" encoding=\"utf-8\"?>"; print $output "<SchemaPatchDetailsConfig xmlns=\" print $output "<PatchDetailsConfig>"; print $output "<ResultXMLPathname>$tmpPackageResultsPath</ResultXMLPathname>"; print $output "<Patches>"; Parse the decrypted shavlik file once again and then add details about patches. &create_patch_details_config; print $output "</Patches>"; print $output "</PatchDetailsConfig>"; print $output "</SchemaPatchDetailsConfig>"; $output->close(); logging::dbg_msg("done creating shavlik_config.xml"); logging::info_msg("running Shavlik Packager to get Download location and payload information of patches"); Patch Details config file is ready Now we should run BlPatchCheck2 for getting download URLs TODO:: Make BlPatchCheck2 path configurable `\"$blpatchcheck2path\" 1 \"$tmppd5path\" \"$tmpconfigfilepath\"`; PAGE 16 OF 21

18 if ($?) logging::exit_msg("error while running Shavlik Packager...", $?); logging::dbg_msg("packaging succeeded... Proceeding to extract Patch data..."); patch_data::generate_patch_data_from_result($tmppackageresultspath, $tmpintermediateoutputfile); Create downloading directory if it does not exist already if (-d $downloadlocation) logging::dbg_msg("download directory: \"$downloadlocation\" exists already.") logging::info_msg("download directory: \"$downloadlocation\" does not exist. Creating one..."); if (mkdir ($downloadlocation, 0777)) logging::dbg_msg("creating directory \"$downloadlocation\" succeeded"); logging::exit_msg("can't create directory \"$downloadlocation\"", 1); Download patches one by one looking from the Output Patch Data file. logging::info_msg("started downloading patches..."); download_patches_from_patch_data($tmpintermediateoutputfile, $outputpatchdatafile); logging::info_msg("completed downloading patches..."); v1.3a If DoCopyCabs is true, we need to copy the CAB files to the download directory. Note that we don't care if this fails...! if ($DoCopyCabs) logging::info_msg("copying CAB files..."); copy($tmphfnetchkpath, $downloadlocation."/".$filehfnetchk6b); PAGE 17 OF 21

19 copy($tmphfnetchk6path, $downloadlocation."/".$filehfnetchk6); copy($tmphfnetchk5path, $downloadlocation."/".$filehfnetchk5); copy($tmphfnetchknonumpath, $downloadlocation."/".$filehfnetchk); copy($tmppd5path, $downloadlocation."/".$filepd5); copy($tmppd4path, $downloadlocation."/".$filepd4); logging::info_msg("...cab files copied!"); If Debug is not enabled, cleanup intermediate directory and files. keep it for post-mortem. if (logging::isdebugenabled) logging::info_msg("debug is enabled. So keeping back temporary directory: $tmpfoldername"); logging::info_msg("removing directory $tmpfoldername"); my $files_deleted = rmtree("$tmpfoldername", 1); logging::dbg_msg("number of files deleted in $tmpfoldername: $files_deleted"); End of main code Rest of file skipped as no further changes are required PAGE 18 OF 21

20 Appendix B Updated Perl Config File This appendix contains the config file downloader.conf that is used by the Perl script. Again, the relevant lines are highlighted. IsDebugEnabled=false Please comment wgetpath if you wish to use BladeLogic's downloader utility capable of passing through an NTLM v2 Proxy. Note: BladeLogic's downloader utility needs JAVA installed wgetpath=c:\ke\windows_downloader\wget.exe wgettimeout=10 Language Code 0409 means English. Please change it to appropriate if you want some other language. to get additional list of languages, refer to lanuagecodes.txt languagecode=0409 hfnetchkurl= pd5url= blpatchcheck2path=c:\ke\windows_downloader\blpatchcheck2.exe downloadlocation=c:\download blconvertxmlpath=c:\ke\windows_downloader\blconvertxml.exe shavlikconverterdll=c:\ke\windows_downloader\stconvertxml.dll shavlikpackagerdll=c:\ke\windows_downloader\stpackager.dll downloaderpath=c:\ke\windows_downloader\blhttprequest.jar Additional Setup items for offline patching hfnetchk6url= hfnetchk5url= hfnetchknonumurl= pd4url= DoCopyCabs=true PAGE 19 OF 21

21 BMC Software helps IT organizations drive greater business value through better management of technology. Our industry-leading Business Service Management solutions ensure that everything IT does is prioritized according to business impact, so IT can proactively address business requirements to lower costs, drive revenue, and mitigate risk. BMC solutions share BMC Atrium technologies to enable IT to manage across the complexity of diverse systems and processes from mainframe to distributed, databases to applications, service to security. Founded in 1980, BMC Software has offices worldwide and fiscal 2005 revenues of more than $1.46 billion. BMC Software. Activate your business with the power of IT. For more information, visit

BSA Best Practices Webinars Distributed Installations Sean Berry Customer Engineering

BSA Best Practices Webinars Distributed Installations Sean Berry Customer Engineering BSA Best Practices Webinars Distributed Installations Sean Berry Customer Engineering Agenda Overview Use Cases Repeaters Repositories Proxies Copyright 5/11/2013 BMC Software, Inc 2 Overview Use Cases

More information

BSA Sizing Guide v. 1.0

BSA Sizing Guide v. 1.0 Best Practices & Architecture BSA Sizing Guide v. 1.0 For versions 8.5-8.7 Nitin Maini, Sean Berry 03 May 2016 Table of Contents Purpose & Audience 3 Scope 3 Capacity & Workload Basics 3 BSA Basics...

More information

Ivanti Patch for SCCM (Formerly Shavlik Patch) Version History

Ivanti Patch for SCCM (Formerly Shavlik Patch) Version History Ivanti Patch for SCCM (Formerly Shavlik Patch) Version History Ivanti Patch for SCCM 2.4 Build 2.4.1488.0 Released April, 2018 Alerts: Alerts are now available that notify you of important events. You

More information

Hotfix 913CDD03 Visual Data Explorer and SAS Web OLAP Viewer for Java

Hotfix 913CDD03 Visual Data Explorer and SAS Web OLAP Viewer for Java Hotfix 913CDD03 Visual Data Explorer and SAS Web OLAP Viewer for Java BEFORE DOWNLOADING: The hot fix 913CDD03 addresses issue(s) in 9.1.3 of Component Design and Development Components on Windows as documented

More information

INTRODUCTION... 3 INSTALLATION GUIDE FOR ECLIPSE 3.1 AND INSTALLATION GUIDE FOR ECLIPSE 3.3 TO

INTRODUCTION... 3 INSTALLATION GUIDE FOR ECLIPSE 3.1 AND INSTALLATION GUIDE FOR ECLIPSE 3.3 TO INTRODUCTION... 3 INSTALLATION GUIDE FOR ECLIPSE 3.1 AND 3.2... 4 INSTALLATION GUIDE FOR ECLIPSE 3.3 TO 4.3... 23 INSTALLATION GUIDE FOR ECLIPSE 4.4 OR HIGHER... 37 ECLIPSE VIEWERS... 41 DEVICES... 41

More information

Ivanti Patch for SCCM. File Downloader User s Guide

Ivanti Patch for SCCM. File Downloader User s Guide Ivanti Patch for SCCM File Downloader User s Guide Copyright and Trademarks Copyright and Trademarks Copyright 2016-2018, Ivanti. All rights reserved. Legal and Privacy information. Document Information

More information

SAS Fair Banking 8.1 Installation Instructions

SAS Fair Banking 8.1 Installation Instructions SAS Fair Banking 8.1 Installation Instructions Copyright Notice The correct bibliographic citation for this manual is as follows: SAS Institute Inc., SAS Fair Banking 8.1 Installation Instructions, Cary,

More information

AR System Engine. Performance Tuning Recommendations

AR System  Engine. Performance Tuning Recommendations BMC Software, Inc. 01 February 2013 Table of Contents Disable Email Engine Logging to Form... 3 Managing Data in AR System Email Messages Form... 3 Email Attachment Size... 5 General Recommendations...

More information

Extending Your Patch Management Framework

Extending Your Patch Management Framework VMWARE TECHNICAL NOTE VMware ACE Extending Your Patch Management Framework This document explains how to use the custom quarantine feature of VMware ACE to enforce the patch management policies that have

More information

BMC Remedy Action Request System Service Pack 1 Upgrade Procedures and Guidelines

BMC Remedy Action Request System Service Pack 1 Upgrade Procedures and Guidelines BMC Remedy Action Request System 7.6.04 Service Pack 1 Upgrade Procedures and Guidelines White Paper Supporting BMC Remedy Action Request System BMC Remedy IT Service Management Suite 7.6.04 SP1 May 2011

More information

Policy Manager for IBM WebSphere DataPower 7.2: Configuration Guide

Policy Manager for IBM WebSphere DataPower 7.2: Configuration Guide Policy Manager for IBM WebSphere DataPower 7.2: Configuration Guide Policy Manager for IBM WebSphere DataPower Configuration Guide SOAPMDP_Config_7.2.0 Copyright Copyright 2015 SOA Software, Inc. All rights

More information

Realizing the Value of Standardized and Automated Database Management SOLUTION WHITE PAPER

Realizing the Value of Standardized and Automated Database Management SOLUTION WHITE PAPER Realizing the Value of Standardized and Automated Database Management SOLUTION WHITE PAPER Table of Contents The Challenge of Managing Today s Databases 1 automating Your Database Operations 1 lather,

More information

file://c:\documents and Settings\degrysep\Local Settings\Temp\~hh607E.htm

file://c:\documents and Settings\degrysep\Local Settings\Temp\~hh607E.htm Page 1 of 18 Trace Tutorial Overview The objective of this tutorial is to acquaint you with the basic use of the Trace System software. The Trace System software includes the following: The Trace Control

More information

Provisioning Systems and Other Ways to Share the Wealth of SAS Across a Network Jason Losh and Michael King, SAS Institute Inc.

Provisioning Systems and Other Ways to Share the Wealth of SAS Across a Network Jason Losh and Michael King, SAS Institute Inc. Paper 290-2008 Provisioning Systems and Other Ways to Share the Wealth of SAS Across a Network Jason Losh and Michael King, SAS Institute Inc., Cary, NC ABSTRACT This paper will outline SAS deployment

More information

XDS Connector. Installation and Setup Guide. Version: 1.0.x

XDS Connector. Installation and Setup Guide. Version: 1.0.x XDS Connector Installation and Setup Guide Version: 1.0.x Written by: Product Knowledge, R&D Date: November 2016 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International Inc.,

More information

ControlPoint. Native Installation Guide. February 05,

ControlPoint. Native Installation Guide. February 05, ControlPoint Native Installation Guide February 05, 2018 www.metalogix.com info@metalogix.com 202.609.9100 Copyright International GmbH., 2008-2018 All rights reserved. No part or section of the contents

More information

Windows version involved: Windows 7, Windows Server 2008 R2.

Windows version involved: Windows 7, Windows Server 2008 R2. Issue: DBF file missing issue encountered by Sage UBS 2015 user in client server environment with shared data folder access. [Certain files from shared folder (main PC) are not shown up on remote PC (client

More information

Patch Management for AIX

Patch Management for AIX Patch Management for AIX Supported Versions The Patches for AIX Fixlet site provides Fixlet messages for the latest Maintenance Level packages for AIX 5.1, 5.2 and 5.3. It also includes inventory-only

More information

EUSurvey Installation Guide

EUSurvey Installation Guide EUSurvey Installation Guide Guide to a successful installation of EUSurvey May 20 th, 2015 Version 1.2 (version family) 1 Content 1. Overview... 3 2. Prerequisites... 3 Tools... 4 Java SDK... 4 MySQL Database

More information

AcuConnect Versatile Remote COBOL Listener

AcuConnect Versatile Remote COBOL Listener AcuConnect Versatile Remote COBOL Listener EXECUTIVE OVERVIEW AcuConnect is a remote COBOL listener that lets you make the most efficient and strategic use of your existing computing resources. AcuConnect

More information

Silk Performance Manager Installation and Setup Help

Silk Performance Manager Installation and Setup Help Silk Performance Manager 18.5 Installation and Setup Help Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright 2004-2017 Micro Focus. All rights reserved.

More information

LOADRUNNER INTERVIEW QUESTIONS

LOADRUNNER INTERVIEW QUESTIONS LOADRUNNER INTERVIEW QUESTIONS 1. Why should we automate the performance testing? It s a discipline that leverages products, people and processes to reduce the risk of application upgrade or patch deployment.

More information

Using PowerCenter to Process Flat Files in Real Time

Using PowerCenter to Process Flat Files in Real Time Using PowerCenter to Process Flat Files in Real Time 2013 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording

More information

Siebel Application Deployment Manager Guide. Version 8.0, Rev. A April 2007

Siebel Application Deployment Manager Guide. Version 8.0, Rev. A April 2007 Siebel Application Deployment Manager Guide Version 8.0, Rev. A April 2007 Copyright 2005, 2006, 2007 Oracle. All rights reserved. The Programs (which include both the software and documentation) contain

More information

IBM VisualAge for Java,Version3.5. Distributed Debugger for Workstations

IBM VisualAge for Java,Version3.5. Distributed Debugger for Workstations IBM VisualAge for Java,Version3.5 Distributed Debugger for Workstations Note! Before using this information and the product it supports, be sure to read the general information under Notices. Edition notice

More information

Load testing with WAPT: Quick Start Guide

Load testing with WAPT: Quick Start Guide Load testing with WAPT: Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. A brief insight is provided

More information

Quickly Pinpoint and Resolve Problems in Windows /.NET Applications TECHNICAL WHITE PAPER

Quickly Pinpoint and Resolve Problems in Windows /.NET Applications TECHNICAL WHITE PAPER Quickly Pinpoint and Resolve Problems in Windows /.NET Applications TECHNICAL WHITE PAPER Table of Contents Executive Overview...1 Problem Resolution A Major Time Consumer...2 > Inefficiencies of the Problem

More information

Aspera Connect User Guide 3.7.0

Aspera Connect User Guide 3.7.0 Aspera Connect User Guide 3.7.0 Mac OS X Revision: 3.7.0.138343 Generated: 01/19/2017 13:37 Contents 2 Contents Introduction... 3 System Requirements... 4 Setting Up Connect...5 Part 1: Installation...5

More information

New Offering MainView Console Management for zenterprise

New Offering MainView Console Management for zenterprise New Offering MainView Console Management for zenterprise The BMC MainView Console Management for zenterprise enables customers to efficiently manage complex and geographically dispersed operations from

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

Scheduling in SAS 9.2

Scheduling in SAS 9.2 Scheduling in SAS 9.2 The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2009. Scheduling in SAS 9.2. Cary, NC: SAS Institute Inc. Scheduling in SAS 9.2 Copyright 2009,

More information

FUSION REGISTRY COMMUNITY EDITION SETUP GUIDE VERSION 9. Setup Guide. This guide explains how to install and configure the Fusion Registry.

FUSION REGISTRY COMMUNITY EDITION SETUP GUIDE VERSION 9. Setup Guide. This guide explains how to install and configure the Fusion Registry. FUSION REGISTRY COMMUNITY EDITION VERSION 9 Setup Guide This guide explains how to install and configure the Fusion Registry. FUSION REGISTRY COMMUNITY EDITION SETUP GUIDE Fusion Registry: 9.2.x Document

More information

Brainware Intelligent Capture Visibility

Brainware Intelligent Capture Visibility Brainware Intelligent Capture Visibility Installation and Setup Guide Version: 3.2.x Written by: Product Knowledge, R&D Date: September 2018 Copyright 2009-2018 Hyland Software, Inc. and its affiliates.

More information

DiskBoss DATA MANAGEMENT

DiskBoss DATA MANAGEMENT DiskBoss DATA MANAGEMENT Disk Change Monitor Version 9.3 May 2018 www.diskboss.com info@flexense.com 1 1 Product Overview DiskBoss is an automated, policy-based data management solution allowing one to

More information

IMS Bench SIPp. Introduction. Table of contents

IMS Bench SIPp. Introduction. Table of contents Introduction by David Verbeiren (Intel), Philippe Lecluse (Intel), Xavier Simonart (Intel) Table of contents 1 Overview... 2 2 Getting IMS Bench SIPp...3 3 Tested Platforms...3 4 Design Objectives...3

More information

Approaches for Upgrading to SAS 9.2. CHAPTER 1 Overview of Migrating Content to SAS 9.2

Approaches for Upgrading to SAS 9.2. CHAPTER 1 Overview of Migrating Content to SAS 9.2 1 CHAPTER 1 Overview of Migrating Content to SAS 9.2 Approaches for Upgrading to SAS 9.2 1 What is Promotion? 2 Promotion Tools 2 What Can Be Promoted? 2 Special Considerations for Promoting Metadata From

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Creating Domains Using the Configuration Wizard 11g Release 1 (10.3.4) E14140-04 January 2011 This document describes how to use the Configuration Wizard to create, update, and

More information

Auto Start Analyzer after AppPool Recycle by IIS

Auto Start Analyzer after AppPool Recycle by IIS Auto Start Analyzer after AppPool Recycle by IIS Background It is often sites running on the Internet Information Service (IIS) will get recycled by IIS service at a set interval (nightly for example).

More information

Time Series Studio 12.3

Time Series Studio 12.3 SAS Time Series Studio 12.3 Administrator s Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2013. SAS Time Series Studio 12.3: Administrator's

More information

ControlPoint. Advanced Installation Guide. September 07,

ControlPoint. Advanced Installation Guide. September 07, ControlPoint Advanced Installation Guide September 07, 2017 www.metalogix.com info@metalogix.com 202.609.9100 Copyright International GmbH., 2008-2017 All rights reserved. No part or section of the contents

More information

Integrating VMware Horizon Workspace and VMware Horizon View TECHNICAL WHITE PAPER

Integrating VMware Horizon Workspace and VMware Horizon View TECHNICAL WHITE PAPER Integrating VMware Horizon Workspace and VMware Horizon View TECHNICAL WHITE PAPER Table of Contents Introduction.... 3 Requirements.... 3 Horizon Workspace Components.... 3 SAML 2.0 Standard.... 3 Authentication

More information

Version 13.1 Web/VRU/CSR Update Installation and Configuration. June 9, 2008

Version 13.1 Web/VRU/CSR Update Installation and Configuration. June 9, 2008 Version 13.1 Web/VRU/CSR Update Installation and Configuration June 9, 2008 Table Of Contents Section Subject 1 Overview 2 Installation and Environment Considerations 3 Performing the Relius Administration

More information

Toad for Oracle Suite 2017 Functional Matrix

Toad for Oracle Suite 2017 Functional Matrix Toad for Oracle Suite 2017 Functional Matrix Essential Functionality Base Xpert Module (add-on) Developer DBA Runs directly on Windows OS Browse and navigate through objects Create and manipulate database

More information

Installing and Administering VMware vsphere Update Manager. Update 2 VMware vsphere 5.5 vsphere Update Manager 5.5

Installing and Administering VMware vsphere Update Manager. Update 2 VMware vsphere 5.5 vsphere Update Manager 5.5 Installing and Administering VMware vsphere Update Manager Update 2 VMware vsphere 5.5 vsphere Update Manager 5.5 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

Backup APP v7. Office 365 Exchange Online Backup & Restore Guide for Mac OS X

Backup APP v7. Office 365 Exchange Online Backup & Restore Guide for Mac OS X Backup APP v7 Office 365 Exchange Online Backup & Restore Guide for Mac OS X Revision History Date Descriptions Type of modification 5 Apr 2017 First Draft New Table of Contents 1 Overview... 1 About This

More information

For example, the Control-M Agent for Windows 32-bit is DRKAI _windows.zip and 64-bit is DRKAI _windows_x86_64.zip.

For example, the Control-M Agent for Windows 32-bit is DRKAI _windows.zip and 64-bit is DRKAI _windows_x86_64.zip. How to create BMC Server Automation (BSA) configuration file, depot and job objects for deploying new and upgrading existing Control-M Agents on Microsoft Windows servers This document details the steps

More information

StoragePoint Advanced Installation Guide

StoragePoint Advanced Installation Guide A StoragePoint January 16, 2018 www.metalogix.com info@metalogix.com 202.609.9100 Copyright 2018 Copyright Metalogix International GmbH All rights reserved. No part or section of the contents of this material

More information

Scheduling in SAS 9.4, Second Edition

Scheduling in SAS 9.4, Second Edition Scheduling in SAS 9.4, Second Edition SAS Documentation September 5, 2017 The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2016. Scheduling in SAS 9.4, Second Edition.

More information

Installation Guide - Windows

Installation Guide - Windows Kony Visualizer Enterprise Installation Guide - Windows Release V8 SP3 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the document version

More information

DocAve for Salesforce 2.1

DocAve for Salesforce 2.1 DocAve for Salesforce 2.1 This document is intended for anyone wishing to familiarize themselves with the user interface and basic functionality of AvePoint s DocAve for Salesforce tool. System Requirements

More information

BEAAquaLogic. Interaction Identity Service - Active Directory. Installation and Upgrade Guide

BEAAquaLogic. Interaction Identity Service - Active Directory. Installation and Upgrade Guide BEAAquaLogic Interaction Identity Service - Active Directory Installation and Upgrade Guide Version 6.3 Document Revised: June 1, 2008 Contents 1. Welcome to AquaLogic Interaction Identity Service - Active

More information

Integrating Entuity Network Management with BMC TrueSight Operations Management. For use with Entuity 16.5 downwards June 2017

Integrating Entuity Network Management with BMC TrueSight Operations Management. For use with Entuity 16.5 downwards June 2017 Integrating Entuity Network Management with BMC TrueSight Operations Management For use with Entuity 16.5 downwards June 2017 1 Document Overview 3 Installing the Entuity Network Component 3 Example 4

More information

ECM-VNA Convergence Connector

ECM-VNA Convergence Connector ECM-VNA Convergence Connector Installation and Setup Guide Version: 1.0.x Written by: Product Knowledge, R&D Date: September 2016 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International

More information

DB2 for z/os Stored Procedure support in Data Server Manager

DB2 for z/os Stored Procedure support in Data Server Manager DB2 for z/os Stored Procedure support in Data Server Manager This short tutorial walks you step-by-step, through a scenario where a DB2 for z/os application developer creates a query, explains and tunes

More information

Tivoli Endpoint Manager for Patch Management - AIX. User s Guide

Tivoli Endpoint Manager for Patch Management - AIX. User s Guide Tivoli Endpoint Manager for Patch Management - AIX User s Guide User s Guide i Note: Before using this information and the product it supports, read the information in Notices. Copyright IBM Corporation

More information

MEDIASEAL Encryptor Client Manual

MEDIASEAL Encryptor Client Manual MEDIASEAL Encryptor Client Manual May 2018 Version 3.7.1 Fortium Technologies Ltd www.fortiumtech.com Copyright 2018 - Fortium Technologies Ltd Information contained in this document is subject to change

More information

Installation Notes for Enhydra Director Netscape/IPlanet Web Servers

Installation Notes for Enhydra Director Netscape/IPlanet Web Servers Installation Notes for Enhydra Director Netscape/IPlanet Web Servers Installation Notes for Enhydra Director Netscape/IPlanet Web Servers Table of Contents 1.Introduction...1 2. System Requirements...2

More information

From: Sudarshan N Raghavan (770)

From: Sudarshan N Raghavan (770) Spectrum Software, Inc. 11445 Johns Creek Pkwy. Suite 300 Duluth, GA 30097 www.spectrumscm.com Subject: SpectrumSCM Plugin for the Eclipse Platform Original Issue Date: February 2 nd, 2005 Latest Update

More information

TextPlus Release Module for Ascent Capture 3.0 Release Notes

TextPlus Release Module for Ascent Capture 3.0 Release Notes TextPlus Release Module for Ascent Capture 3.0 Release Notes v 3.00 Beta June 1999 Page 1 1. Introduction This document provides information on the TextPlus release script which is a sample script available

More information

EMC SourceOne for File Systems

EMC SourceOne for File Systems EMC SourceOne for File Systems Version 7.2 Administration Guide 302-000-958 REV 02 Copyright 2005-2015 EMC Corporation. All rights reserved. Published in the USA. Published December 9, 2015 EMC believes

More information

Connect with Remedy - Remedy 9 Upgrade Best Practices Webinar Q&A

Connect with Remedy - Remedy 9 Upgrade Best Practices Webinar Q&A Connect with Remedy - Remedy 9 Upgrade Best Practices Webinar Q&A Date: Wednesday, March 02, 2016 Q: Does this cover version 9.1 and 9.0? A: It covers upgrading from older versions to 9.1 Q: What is granular

More information

BDM Hyperion Workspace Basics

BDM Hyperion Workspace Basics BDM Hyperion Workspace Basics Contents of this Guide - Toolbars & Buttons Workspace User Interface 1 Standard Toolbar 3 Explore Toolbar 3 File extensions and icons 4 Folders 4 Browsing Folders 4 Root folder

More information

Interface Reference. McAfee Application Control Windows Interface Reference Guide. Add Installer page. (McAfee epolicy Orchestrator)

Interface Reference. McAfee Application Control Windows Interface Reference Guide. Add Installer page. (McAfee epolicy Orchestrator) McAfee Application Control 8.1.0 - Windows Interface Reference Guide (McAfee epolicy Orchestrator) Interface Reference Add Installer page Add an existing installer to the McAfee epo repository. Table 1

More information

Installation Guide. Cimatron Site Manager 2.0 Release Note

Installation Guide. Cimatron Site Manager 2.0 Release Note Installation Guide Cimatron Site Manager 2.0 Release Note Installation Guide i Table of Contents Introduction... 1 Cimatron Site Manager Components... 2 Installation... 3 Hardware Requirements... 3 Software

More information

08 March 2017 NETOP HOST FOR ANDROID USER S GUIDE

08 March 2017 NETOP HOST FOR ANDROID USER S GUIDE 08 March 2017 NETOP HOST FOR ANDROID USER S GUIDE Contents 1 Introduction... 2 1.1 Document Scope... 2 1.2 Technical Specifications... 2 2 Using the Netop Host... 3 2.1 Netop Host Display... 3 2.2 Netop

More information

SailPoint IdentityIQ Integration with the BeyondInsight Platform. Providing Complete Visibility and Auditing of Identities

SailPoint IdentityIQ Integration with the BeyondInsight Platform. Providing Complete Visibility and Auditing of Identities SailPoint IdentityIQ Integration with the BeyondInsight Platform Providing Complete Visibility and Auditing of Identities Table of Contents Executive Summary... 3 Identity and Access Management... 5 BeyondTrust

More information

ControlPoint. Installation Guide for SharePoint August 23,

ControlPoint. Installation Guide for SharePoint August 23, ControlPoint Installation Guide for SharePoint 2007 August 23, 2017 www.metalogix.com info@metalogix.com 202.609.9100 Copyright International GmbH., 2008-2017 All rights reserved. No part or section of

More information

TDDC88 Lab 4 Software Configuration Management

TDDC88 Lab 4 Software Configuration Management TDDC88 Lab 4 Software Configuration Management Introduction "Version control is to programmers what the safety net is to a trapeze artist. Knowing the net is there to catch them if they fall, aerialists

More information

Diagnostic Manager. User Guide VERSION August 22,

Diagnostic Manager. User Guide VERSION August 22, Diagnostic Manager User Guide VERSION 4.12 August 22, 2018 www.metalogix.com info@metalogix.com 202.609.9100 Copyright Copyright International GmbH and Idera, Inc., 2004-2018 All rights reserved. No part

More information

Oracle Field Sales/Laptop

Oracle Field Sales/Laptop Oracle Field Sales/Laptop Implementation Guide Release 11i June 2001 Part No. A87538-02 This Implementation Guide provides information and instructions to help you implement Oracle Field Sales/Laptop,

More information

ZENworks 11 Support Pack 4 Endpoint Security Utilities Reference. October 2016

ZENworks 11 Support Pack 4 Endpoint Security Utilities Reference. October 2016 ZENworks 11 Support Pack 4 Endpoint Security Utilities Reference October 2016 Legal Notice For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions, U.S.

More information

OpenText StreamServe 5.6 Document Broker Plus

OpenText StreamServe 5.6 Document Broker Plus OpenText StreamServe 5.6 Document Broker Plus User Guide Rev A OpenText StreamServe 5.6 Document Broker Plus User Guide Rev A Open Text SA 40 Avenue Monterey, Luxembourg, Luxembourg L-2163 Tel: 35 2 264566

More information

Implementing Data Masking and Data Subset with IMS Unload File Sources

Implementing Data Masking and Data Subset with IMS Unload File Sources Implementing Data Masking and Data Subset with IMS Unload File Sources 2014 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying,

More information

Web Access to with Office 365

Web Access to  with Office 365 Web Access to Email with Office 365 Web Access to email allows you to access your LSE mailbox from any computer or mobile device connected to the internet. Be aware, however, that Outlook 365 looks and

More information

Web Applications Installation. version

Web Applications Installation. version version 2017.1 Disclaimer This document is for informational purposes only and is subject to change without notice. This document and its contents, including the viewpoints, dates and functional content

More information

Overview. Borland VisiBroker 7.0

Overview. Borland VisiBroker 7.0 Overview Borland VisiBroker 7.0 Borland Software Corporation 20450 Stevens Creek Blvd., Suite 800 Cupertino, CA 95014 USA www.borland.com Refer to the file deploy.html for a complete list of files that

More information

Perceptive Matching Engine

Perceptive Matching Engine Perceptive Matching Engine Advanced Design and Setup Guide Version: 1.0.x Written by: Product Development, R&D Date: January 2018 2018 Hyland Software, Inc. and its affiliates. Table of Contents Overview...

More information

BEAAquaLogic. Pages. Installation and Upgrade Guide

BEAAquaLogic. Pages. Installation and Upgrade Guide BEAAquaLogic Pages Installation and Upgrade Guide Version 1.0 MP2 Document Revised: June 1, 2008 Contents 1. Welcome to AquaLogic Pages How to Use This Book..................................................

More information

Installation Guide - Mac

Installation Guide - Mac Kony Visualizer Enterprise Installation Guide - Mac Release V8 SP3 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the document version

More information

EM L04 Using Workflow to Manage Your Patch Process and Follow CISSP Best Practices

EM L04 Using Workflow to Manage Your Patch Process and Follow CISSP Best Practices EM L04 Using Workflow to Manage Your Patch Process and Follow CISSP Best Practices Hands-On Lab Description Most corporations today have some form of patch process in place. In this session, you will learn

More information

Vendor: IBM. Exam Code: Exam Name: IBM FileNet P8 V5.1. Version: Demo

Vendor: IBM. Exam Code: Exam Name: IBM FileNet P8 V5.1. Version: Demo Vendor: IBM Exam Code: 000-587 Exam Name: IBM FileNet P8 V5.1 Version: Demo QUESTION 1 While configuring the LDAP settings in Configuration Manager to point to an Active Directory server, an installer

More information

Installation Guide V1.1

Installation Guide V1.1 Installation Guide V1.1 The information contained in this manual is the licensed property of Fujitsu Software Technology Corporation. Use of the information contained herein is restricted to the terms

More information

Your Data Visualization Game Is Strong Take It to Level 8.2

Your Data Visualization Game Is Strong Take It to Level 8.2 Paper SAS2164-2018 Your Data Visualization Game Is Strong Take It to Level 8.2 Brandon Kirk and Jason Shoffner, SAS Institute Inc., Cary, NC ABSTRACT Your organization already uses SAS Visual Analytics,

More information

Copyright 2017 Softerra, Ltd. All rights reserved

Copyright 2017 Softerra, Ltd. All rights reserved Copyright 2017 Softerra, Ltd. All rights reserved Contents Introduction Security Considerations Installation Configuration Uninstallation Automated Bulk Enrollment Troubleshooting Introduction Adaxes Self-Service

More information

NetDespatch Velocity Connector User Guide

NetDespatch Velocity Connector User Guide NetDespatch Velocity Connector User Guide XML version Customised guide specifically for use with XML Integrations Guide refers to Microsoft Windows 7 Requirements before Proceeding You will need to have:

More information

Content. 1. Introduction. 2. IBM Social Business Toolkit - Social SDK. 3. Social Builder. 4. Sample WEF Portlet application. 5.

Content. 1. Introduction. 2. IBM Social Business Toolkit - Social SDK. 3. Social Builder. 4. Sample WEF Portlet application. 5. Content 1. Introduction 2. IBM Social Business Toolkit - Social SDK 3. Social Builder 4. Sample WEF Portlet application 5. Future 6. Important Resources 7. Authors Introduction Developing social applications

More information

The Top 10 Group Policy Myths Debunked

The Top 10 Group Policy Myths Debunked Whitepaper The Top 10 Group Policy Myths Debunked Filling the Gaps in GP Management & Preventing User Security Breaches Introduction On the surface, Group Policy is an extremely useful technology, facilitating

More information

Plesk 8.1 for Windows Backup and Restore Utilities

Plesk 8.1 for Windows Backup and Restore Utilities SWsoft Plesk 8.1 for Windows Backup and Restore Utilities Administrator's Guide (Revision 2.3) (c) 1999-2007 ISBN: N/A SWsoft. 13755 Sunrise Valley Drive Suite 325 Herndon VA 20171 USA Phone: +1 (703)

More information

SDL Content Porter 2013 User Manual. Content Management Technologies Division of SDL

SDL Content Porter 2013 User Manual. Content Management Technologies Division of SDL SDL Content Porter 2013 User Manual Content Management Technologies Division of SDL Revision date: 28-03-2013 Copyright 1999-2013 SDL Tridion Development Lab B.V. All rights reserved. No part of this documentation

More information

Hadoop On Demand: Configuration Guide

Hadoop On Demand: Configuration Guide Hadoop On Demand: Configuration Guide Table of contents 1 1. Introduction...2 2 2. Sections... 2 3 3. HOD Configuration Options...2 3.1 3.1 Common configuration options...2 3.2 3.2 hod options... 3 3.3

More information

Implementing Data Masking and Data Subset with IMS Unload File Sources

Implementing Data Masking and Data Subset with IMS Unload File Sources Implementing Data Masking and Data Subset with IMS Unload File Sources 2013 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying,

More information

Log on to iconsign.ukmail.com via Internet Explorer or Firefox and sign in with your address & password then click on the Log-In Box.

Log on to iconsign.ukmail.com via Internet Explorer or Firefox and sign in with your  address & password then click on the Log-In Box. Basic UK Mail Guide Log on to iconsign.ukmail.com via Internet Explorer or Firefox and sign in with your email address & password then click on the Log-In Box. You will be prompted to configure your printer

More information

Kaseya 2. User Guide. for VSA 6.0

Kaseya 2. User Guide. for VSA 6.0 Kaseya 2 Patch Management User Guide for VSA 6.0 July 19, 2010 About Kaseya Kaseya is a global provider of IT automation software for IT Solution Providers and Public and Private Sector IT organizations.

More information

IBM Deployment Pack for Microsoft System Center Configuration Manager 2007 Installation and User s Guide

IBM Deployment Pack for Microsoft System Center Configuration Manager 2007 Installation and User s Guide IBM System x IBM Deployment Pack for Microsoft System Center Configuration Manager 2007 Installation and User s Guide Version 1.0 IBM System x IBM Deployment Pack for Microsoft System Center Configuration

More information

Forescout. eyeextend for IBM BigFix. Configuration Guide. Version 1.2

Forescout. eyeextend for IBM BigFix. Configuration Guide. Version 1.2 Forescout Version 1.2 Contact Information Forescout Technologies, Inc. 190 West Tasman Drive San Jose, CA 95134 USA https://www.forescout.com/support/ Toll-Free (US): 1.866.377.8771 Tel (Intl): 1.408.213.3191

More information

An Oracle White Paper February Combining Siebel IP 2016 and native OPA 12.x Interviews

An Oracle White Paper February Combining Siebel IP 2016 and native OPA 12.x Interviews An Oracle White Paper February 2017 Combining Siebel IP 2016 and native OPA 12.x Interviews Purpose This whitepaper is a guide for Siebel customers that wish to take advantage of OPA 12.x functionality

More information

HPE Security Fortify Plugins for Eclipse

HPE Security Fortify Plugins for Eclipse HPE Security Fortify Plugins for Eclipse Software Version: 17.20 Installation and Usage Guide Document Release Date: November 2017 Software Release Date: November 2017 Legal Notices Warranty The only warranties

More information

Control-M and Payment Card Industry Data Security Standard (PCI DSS)

Control-M and Payment Card Industry Data Security Standard (PCI DSS) Control-M and Payment Card Industry Data Security Standard (PCI DSS) White paper PAGE 1 OF 16 Copyright BMC Software, Inc. 2016 Contents Introduction...3 The Need...3 PCI DSS Related to Control-M...4 Control-M

More information

Risk Intelligence. Quick Start Guide - Data Breach Risk

Risk Intelligence. Quick Start Guide - Data Breach Risk Risk Intelligence Quick Start Guide - Data Breach Risk Last Updated: 19 September 2018 --------------------------- 2018 CONTENTS Introduction 1 Data Breach Prevention Lifecycle 2 Choosing a Scan Deployment

More information

Juniper Secure Analytics Patch Release Notes

Juniper Secure Analytics Patch Release Notes Juniper Secure Analytics Patch Release Notes 2014.8 October 2017 2014.8.r11.20171013131303 patch resolves several known issues in Juniper Secure Analytics (JSA). Contents Installing 2014.8.r11 Patch..............................................

More information