Legal Notices Introduction... 3

Size: px
Start display at page:

Download "Legal Notices... 2. Introduction... 3"

Transcription

1 HP Asset Manager Customizing Asset Manager for Managed Service Providers (MSPs) Legal Notices... 2 Introduction... 3 Partitioning... 3 Data: Core and module tables... 3 Organization table... 4 Asset PortFolio table... 4 Other Portfolio table... 5 Data - Itemized lists... 5 Administration... 8 Actions... 8 Workflows... 8 Restrictions... 8 Generic values... 8 Showing many entities... 8 Side effect... 9 Limitation... 9 Precautionary measures... 9 Appendix... 9 Identifying custom itemized list fields... 9 Identifying screens with custom itemized list fields in their columns in the list For more information... 14

2 Legal Notices Copyright Hewlett-Packard Development Company, L.P. Confidential computer software. Valid license from HP required for possession, use or copying. Consistent with FAR and , Commercial Computer Software, Computer Software Documentation, and Technical Data for Commercial Items are licensed to the U.S. Government under vendor's standard commercial license. The only warranties for HP products and services are set forth in the express warranty statements accompanying such products and services. Nothing herein should be construed as constituting an additional warranty. HP shall not be liable for technical or editorial errors or omissions contained herein. The information contained herein is subject to change without notice. Adobe, Adobe logo, Acrobat and Acrobat Logo are trademarks of Adobe Systems Incorporated. Corel and Corel logo are trademarks or registered trademarks of Corel Corporation or Corel Corporation Limited. Java is a US trademark of Sun Microsystems, Inc. Microsoft, Windows, Windows NT, Windows XP, Windows Mobile and Windows Vista are U.S. registered trademarks of Microsoft Corporation. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. UNIX is a registered trademark of The Open Group. 2

3 Introduction Asset Manager, by default, helps you manage the Portfolio of a single company. Yet the managed service provider (MSP) needs the ability to support multiple clients. In Asset Manager the MSP can customize the database structure and global administration, which makes it easy to design a database that can store the Portfolios and supporting processes of many client companies. There are two common types of MSPs: A service company that manages many customers in a single database. A company (usually a rather large one) whose departments and subsidiaries are considered internal customers of the IT department. This document describes a robust and straightforward customization that supports the functionality that a typical MSP requires. The document: Provides a systematic way for partitioning Asset Manager data through a customer field. Exposes previously undocumented functionality concerning itemized lists. This functionality was created because of the specific way in which itemized lists work. Partitioning The main issue in a system that is suitable for an MSP is how to partition the database into separate entities so that users are not able to see each other s information. To that end, you need to use a company identifying field (ENTITY CODE) either in tables that could contain data that needs to be secured, or in tables that have little common information from one entity to another. This field allows a unique code to be assigned each record to associate it with a particular entity (company). Note: Partitioning works only if you are an MSP with only one kind of entity. A company can have both a company and a location, as two different kinds of entity. Another company can have only the company entity; but a single record can belong to several entities. There are three possible solutions: Solution 1: Use a new simple ENTITY CODE text field Solution 2: Use a new ENTITY CODE link field Solution 2 offers a more sophisticated customization. In this solution, records are linked to an entity table (normally Employees and Departments, Companies, or a new table). Because performance is a critical concern in large databases, HP suggests a hybrid approach that combines both solutions. For each sensitive table (such as amportfolio), a field is added to the table to hold the entity code; but data integrity is maintained between that field and the entity table. In Asset Manager versions prior to 4.4, add a direct field in the table, create a default value that takes the value from the entity table, and then create a workflow to synchronize the two values. In AssetCenter version 4.4 and greater, create a linked field to the entity table and then denormalize the linked field. This customization enables better performance by eliminating a link (join) between the tables while still maintaining data integrity. The field used to associate the record with an entity will be referred to as the EC (for Entity Code) for the remainder of this paper. Data: Core and module tables This section presents the core tables that you use for the implementation. In these tables you either: Add the EC field, or Make sure that there is a mandatory link to a table with an EC field, and that the link is appropriate for partitioning. 3

4 Note: If you add the EC field, you must add it to at least one screen of the table. Organization table SQL Name Description EC/Link (1) amabsence Absences Employee.EC amcompany Companies EC amcontact Contacts Company.EC amempldept Employees and departments EC amemplgroup Employee groups EC amfloorplan Floor plans EC amfloorplanpos Floorplan positions FloorPlan.EC (2) amlocation Locations EC amstock Stock Location.EC amstockrule Stock rules Stock.Location.EC amtraining Training Employee.EC Asset PortFolio table SQL Name Description EC/Link (1) amasset Assets PortFolioItem.EC amastprojdesc Assets included in projects Asset.PortFolioItem.EC ambrand Brands (3) amcomputer Computers PortFolio.EC amconnection Connections Port.Asset.PortFolioItem.EC amlogicaldrive Logical drives Computer.PortFolio.EC ammodel Models of products, assets, contracts, work orders,... (3) ammonitor Monitors PortFolioItem.EC amnature Natures (3) amnetworkcard Network cards Computer.PortFolio.EC amphone Telephones PortFolioItem.EC amphysicaldrive Physical drives Computer.PortFolio.EC amport Ports Asset.PortFolioItem.EC amportfolio Portfolio items EC amrelmodelcompat Compatibility between models (3) amsoftinstall Software installations or utilizations PortFolioItem.EC amsoftliccounter Software control counters Supervisor.EC Notes: (1) Proposal 4

5 (2) Normally cannot - or should not - be accessed directly (3) Having these tables common to all customers depends on one main factor. If the IT department is fully responsible for the asset management, it will be able to: o Select a unique inventory tool. o Use the model name normalization functionality. o Focus on having a common set of models. o Add reasonable administration (for example, a validity check in requests) to have all users sharing the same model structure. If the IT department is not fully responsible for asset management, models and associated tables can be partitioned as well. Because having common tables can be major source of management costs savings, HP advises against partitioning them. Other Portfolio table SQL Name Description EC/Link (1) amproject Projects Supervisor.EC amastprojdesc Assets included in projects Supervisor.Project.EC (2) amworkorder Work orders Requester.EC Note: Module tables such as amrequest and amorder have to be managed in the manner described above. Data - Itemized lists Concerning itemized lists, you cannot, as with the tables described above, simply add the EC field into existing standard tables. Indeed, itemized lists are managed in a special way by Asset Manager (using caching, automatic value filtering, and other methods) that makes it impossible to have restrictions work the same way. There is, however, functionality in Asset Manager that allows you to store custom itemized list values in linked tables. That way, you can add fields (at least the EC field) in linked tables and partition them as desired. To store custom itemized list values in linked tables, perform the following steps: 1. Create one new table to replace amitemlistval. You can choose any name for this table. In this example we will call it amcustitemlistval. The table should be identical to amitemlistval except that a) The link towards amitemizedlist must be replaced by a Identifier text field identical to that in the amitemizedlist table, and b) The EC field must be added. 2. Create links to amcustitemlistval. For each custom itemized list field you want to include in the new database partition, a normal link called Prefix_NameOfStdField that points to the amcustitemlistval table must be created. You can choose any prefix you want, but this example uses the prefix "IL." For example, in the amempldept table there is a standard field named Title which is controlled by the amtitle custom itemized list. You create a normal link (either a single link of type neutral, or a 5

6 multiple reverse link of type normal) named ILTitle pointing to the amcustitemilistval table. To identify custom itemized list fields in your database, see the Appendix. 3. Update the amoption table. So that the Asset Manager Windows client can show IL* links instead of standard custom itemized list fields, and correctly retrieve the appropriate records in the new table, you have to add a new non-user option in the amoption table and enter a correct value. If you have not done so already, import the standard wizard Update the options table... that is in the datakit (<Asset_Manager_Install_Directory>\datakit\standard\wizard). In order to use the wizard to create non-user options, you have to apply the two following modifications. To do so, select the text mode and directly modify the script (if you use the graphical mode and modify the node properties, you will get errors). In the InitialOptions node, replace the value parameter. Replace the following entry: AmDbGetList("SELECT " & Replace(OPTION_COLNAME, " ", ",") & " FROM amoption WHERE OptSection LIKE '" & LikeParam(OPTSECTION_PREFIX) & "%'", " ", ",", "=") With the following entry: AmDbGetList("SELECT " & Replace(OPTION_COLNAME, " ", ",") & " FROM amoption", " ", ",", "=") In the COMMANDBUTTON cmdadd node, in the Click parameter, in the following If Then Else End if sequence: If Mid(NewOptSection, 1, Len(OPTSECTION_PREFIX)) <> OPTSECTION_PREFIX Then 'OptSection does not properly prefixed -> Risk of conflict w/ system data RetVal = AmMsgBox("The name of the section must start with '" & OPTSECTION_PREFIX & "'.") Else 'OptSection OK -> Proceed 'Retrieve new option name and list of option NewOptEntry = EscapeSeparators({tbNewOptEntry}, ",=", "\") Options = {lboption.values} 'Check former existence of option If InStr(1, "," & SubList(Options, "*", "1 2") & ",", "," & NewOptSection & " " & NewOptEntry & ",") > 0 Then 'This option name is used already in the section RetVal = AmMsgBox("There is already an option using this name") Else 'This option name is not used -> Add new option to list lnewcounter = lnewcounter + 1 RetVal = amsetproperty("lboption.values", AppendOperand(Options, ",", NewOptSection & " " & NewOptEntry & " =" & NEW_ID_PREFIX & lnewcounter)) End If End If Keep only the statements in the Else block of statements. 4. Launch the wizard. 6

7 5. In the New section field enter AwRtti. In the New option field enter ItemizedList. Then click Add the new entry: 6. In the newly added line in the Options listbox, in the Value column, enter: LinkEdit-IL$(MainField) WhereCond="Identifier = '$(MainField.Format)'" In a possible customized screen you might see something like: 7

8 Administration Actions Actions can be managed like normal tables. However, since actions such as wizards should be mostly common to all users, you will probably have to manage generic values. See the Restrictions section below. Workflows This time, the way to partition should not use fields in workflow records. You should have the activation condition in the event of the activity starting a given entity s workflow evolution from ActivationCondition to ActivationCondition AND CurrentUser.EC = <given entity> (if activition condtion in AQL). Restrictions You need to add access restrictions to all those tables that contain "CurrentUser.EC = EC. The user who is logged in with those restrictions is able to see the records with the same EC as their own Employee Record. If the table does not contain the AC field but is linked through a simple link to a table that contains the field, the restriction will be "CurrentUser.EC = link.ec See the column EC/Link in the Core and module tables section. It is possible to have more than one level of links; but keep in mind that each link level impacts performance. Generic values You may need to have some records available for all entities. For that purpose you can add a generic value, such as All. The access restriction will evolve to "(CurrentUser.EC = EC) OR (EC = 'All'). Note: Be aware that the OR condition can seriously affect performance. Showing many entities You may need to allow the end users to see only some, but not all, entities. This can be done by using the Employee Groups table and creating more complicated access restrictions. An Employee Group may be created for every entity; and then the users who want access to the information of that entity would be added to the group. The access restriction then evolves to: EXISTS (SELECT EG.lGroupId FROM amemplgroup EG, amrelemplgrp R WHERE ((EG.EC = <TableName>:EC) AND (R.lGroupId = EG.lGroupId)) AND (R.lEmplDeptId = CurrentUser)) Where < TableName > is replaced with the name of the table for which the particular access restriction is intended. Of course, such a restriction reduces performance. If performance is unacceptable to the user, the administrator can implement another solution: Give users the right to change the entity in their profile so that they can log in again and work in the context of the new entity. The administrator must add a control so that the user can select only authorized entities; however, this is not sufficient if you need to show many entities together. 8

9 Side effect Because you no longer have the link from amcustitemlistval to amitemizedlist (which was replaced by the Identifier field), you lose the open/close functionality. In you need this functionality, there is a possible workaround: Manage open/close status in the amitemizedlist table and modify the procedure that checks the status. Ask your Account Executive to request the implementation description from Asset Manager Product Management. The custom itemized list field substitution applies only to pages. Each time a standard custom itemized list field is referenced (mainly in wizards and columns in the list in screens), Asset Manager shows its real value (such as the value in the Title field instead of that in the ILTitle.Value field). There are two ways to fix this effect: Replace custom itemized list fields by the value from the link. For instance, replace Title with ILTitle.Value. Create default values for custom itemized list fields that take the value from the link. For instance, the default value script for Title would be: Retval = ILTitle.Value. Next, you have to create workflows that synchronize the values in case of updates. Note: To help you find the screens with custom itemized list fields in their columns in the list see the Appendix. Limitation The substitution of custom itemized lists in pages is not supported in the Web client. Precautionary measures As with any customization, you take precautionary measures during implementation. For instance, make a backup copy of your database before trying any of these customization steps. Appendix Identifying custom itemized list fields To quickly identify these fields, you can use the template functionality in Asset Manager Application Designer. Click Actions -> Templates. First you copy and paste the following code into a file with a.tpl extension, such as CustItemizedList.tpl: $ Desc:List of Custom Itemized List Fields (TXT format) $ Type:txt $include "dbscript.tpl" $(AppInfo) List of Custom Itemized List Fields TABLE SQL NAME FIELD SQL NAME FIELD LABEL $for Tables sort (SqlName ASC) $for Fields sort (SqlName ASC) $if $(Usertype)=8 $(Tables.SqlName) $(SqlName) $(Label) $(Desc) $endif $endfor $endfor Then you can place the CustItemizedList.tpl file in the directory <Asset ManagerInstallDirectory>\Doc\Info. To use another directory, copy the dbscript.tpl 9

10 file into it; then change the template default directory by clicking Actions -> Templates -> Select folder. To refresh the templates, click Actions -> Templates -> Refresh list. To create the resulting text file, click Actions -> Templates -> List of screens with custom itemized lists fields in their columns in the list. Custom Itemized list fields in AssetCenter 4.4.1: Table Name SQL Name Label amabsence AccountingType Accounting type amabsence Nature Nature amaction Nature Nature amasset DisposReason Reason amasset Language Language amasset MaintCond Conditions amasset SoftMedia Media amasset SoftOS System amasset Status Status amasset TerminOpt Termination option amasset WarrCond Conditions amcable CableRole Role amcatalog ProdClass Classification amcatproduct Certification Certification amcatproduct Packaging Packaging amcatproduct WarrCond Conditions amcatref Certification Certification amcbksystem Depreciation Depreciation amcntrempl Profile Profile amcnxtype TargetType Targ. type amcnxtype Type Type amcolordet Color Color amcolordet RingColor Ring color amcolordet TipColor Tip color amcompany CompanyGrp Group amcompany Qualif1 Qualif 1 amcompany Qualif2 Qualif 2 amcomputer ComputerType Computer type amcomputer CPUInternal CPU version amcomputer CPUType CPU type amcomputer OperatingSystem Oper. System amcomputer OSLocale Language amcomputer ScannerDesc Scanner description amcomputer ScannerVersion Scanner version amconnection Field2 Field 2 amcontact MrMrs Mr/Mrs amcontact Title Title amcontract AssignCond Conditions amcontract LossCond Conditions amcontract Nature Nature amcontract PurchOptType Purchase option type amcontract RenOptType Renewal option type amcontract RetOptType Return option type amcontract Status Status 10

11 Table Name SQL Name Label amcontract UpgOptType Upgrade option type amdocument DocCategory Category amempldept MrMrs Mr/Mrs amempldept Title Title amexpenseline Payment Payment amexpenseline Type Type amextensioncard Type Type amfixedasset DeprCalcMode Calculation method amfixedasset DeprType Type amfixedasset Family Family aminvoice InvoiceType Type aminvoice Status Status aminvoice TransMethod Transmission aminvoiceline Status Status amloan FloatingRate Floating rate amlocation City City amlocation LocationType Location type amlocation State State amlogicaldrive Media Media amlogicaldrive Type Partition type ammodel CableType Cable type ammodel Certification Certification ammodel ContractNature Nature of the contract ammodel CPUType CPU ammodel DeviceType Device type ammodel InstLanguage Language ammodel InstOS OS ammodel InstType Type ammodel LicLanguage Language ammodel SoftMedia Media ammodel SoftOS OS ammodel WOPriority Priority ammodelport CnxMode Connection mode ammodelport Field1 Field 1 ammodelport Field2 Field 2 ammodelport Type Port type amnetworkcard Type Type amnews Topic Topic amporder Certification Certification amporder Language Language amporder Priority Priority amporder ShipMode Shipping method amporder Status Status amporder TransMethod Transmission amporder Type Type ampordline Status Status amport CnxMode Connection mode amport Field1 Field 1 amport Field2 Field 2 amport Type Port type amprodclasscode ProdClass Classification 11

12 Table Name SQL Name Label amproject Status Status amquery Type User type amreceipt RetReason Reason for return amreceiptline Status Status amreport Nature Nature amreqline Status Status amrequest Certification Certification amrequest Priority Priority amrequest Status Status amrequest Type Type amreturnenv City City amreturnenv ShipMode Shipping method amreturnenv State State amreturnenv Status Status amsoftinstall Language Language amsoftinstall SoftOS Operating system amsoftinstall Status Status amsoftliccounter Type Nature amstock ReqPriority Priority amstock ReqStatus Status amstock ReqType Type amtaxformula Category Category amtermfldcfgrole CableRole Role amtermflddevice CableRole Role amticket ResolCode Resol. code amticket SatisLvl Satisfaction amticket Status Status amtickethistline Nature Nature amtickethistline ResolCode Resol. code amtickethistline SatisLvl Satisfaction amtickethistline SuspType Suspension type amtopologydet CableRole Role amtopologydet CableType Cable type amtopologydet DeviceType Device type amunit Dimension Dimension amunit DstConvSym Reference unit amunit Symbol Symbol amviewdef Type Type amwfscheme GroupName Execution group amworkorder Priority Priority Identifying screens with custom itemized list fields in their columns in the list To quickly identify these fields, you can use the template functionality in Asset Manager Application Designer. Click Actions -> Templates. First you have to copy and paste the following code into a file with the.tpl extension such as ScreensWCustItemizedListFields.tpl. $ Desc:Screens with custom itemized lists fields in their columns in the list $ Type:txt $include "dbscript.tpl" 12

13 $(AppInfo) List of screens with custom itemized lists fields in their columns in the list $for Screens sort (SqlName ASC) * * SCREEN=$(SQLNAME) $for FIELDSINLISTCONFIG sort (SqlName ASC) $if $(FIELD.Usertype)=8 field $(FIELD.sqlname) in list is a $StrUserType($(FIELD.Usertype)), format type is $(FIELD.UserTypeFormat) $endif $endfor $endfor Then you can place the ScreensWCustItemizedListFields.tpl file in the directory <Asset ManagerInstallDirectory>\Doc\Info. To use another directory, copy the dbscript.tpl file into it and then change the template default directory by clicking Actions -> Templates -> Select folder. To refresh the templates, click Actions -> Templates -> Refresh list. Finally, to create the resulting text file, click Actions -> Templates -> Screens with custom itemized lists fields in their columns in the list. As a result, you might see: * * SCREEN=sysamEmplDept field MrMrs in list is a Custom itemized list, format type is ammrmrs field Title in list is a Custom itemized list, format type is amtitle * * SCREEN=sysamEmplGroup * * Etc. 13

14 For more information Please visit the HP Software support Web site at: This web site provides contact information and details about the products, services, and support that HP Software offers. HP Software online support provides customer self-solve capabilities. It provides a fast and efficient way to access interactive technical support tools needed to manage your business. As a valuable support customer, you can benefit by being able to: Search for knowledge documents of interest Submit and track progress on support cases Submit enhancement requests online Download software patches Manage a support contract Look up HP support contacts Review information about available services Enter discussions with other software customers Research and register for software training Note: Most of the support areas require that you register as an HP Passport user and sign in. Many also require an active support contract. To find more information about support access levels, go to the following URL: To register for an HP Passport ID, go to the following URL: Limited responsibility clause Asset Manager is integrated with several third-party applications. Examples: Database engines, Web servers, single sign-on software, load-balancing and clustering hardware and software solutions, reporting software such as Crystal Reports, etc. Support for these applications is limited to their interface with Asset Manager. Support does not cover installation problems, setup and customization problems nor malfunctioning of the third-party application. White papers contain examples of implementations that may work in your environment with or without customization. There is no guarantee that this will be the case. It could also be that some of the solutions covered by white papers appear as standard features in a future release of the software. When this is the case, there is no guarantee that you will be able to upgrade the solution you implemented based on the white paper to the equivalent standard feature Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. The only warranties for HP products and services are set forth in the express warranty statements accompanying such products and services. Nothing herein should be construed as constituting an additional warranty. HP shall not be liable for technical or editorial errors or omissions contained herein. Itanium is a trademark or registered trademark of Intel Corporation in the U.S. and other countries and is used under license. Customizing AM for Managed Service Providers.doc

Customizing Asset Manager for Managed Services Providers (MSP) Software Asset Management

Customizing Asset Manager for Managed Services Providers (MSP) Software Asset Management HP Asset Manager Customizing Asset Manager for Managed Services Providers (MSP) Software Asset Management How To Manage Generic Software Counters and Multiple Companies Legal Notices... 2 Introduction...

More information

HP Asset Manager. Implementing Single Sign On for Asset Manager Web 5.x. Legal Notices... 2. Introduction... 3. Using AM 5.20... 3

HP Asset Manager. Implementing Single Sign On for Asset Manager Web 5.x. Legal Notices... 2. Introduction... 3. Using AM 5.20... 3 HP Asset Manager Implementing Single Sign On for Asset Manager Web 5.x Legal Notices... 2 Introduction... 3 Using AM 5.20... 3 Using AM 5.12... 3 Design Blueprint... 3 Technical Design... 3 Requirements,

More information

Managing Scalability of Web services

Managing Scalability of Web services HP Asset Manager Managing Scalability of Web services Legal Notices... 2 Introduction... 3 Objective of this document... 3 Prerequisites... 3 General Approach... 4 Context... 4 Process... 4 Comments...

More information

HP OpenView AssetCenter

HP OpenView AssetCenter HP OpenView AssetCenter Software version: 5.0 Integration with software distribution tools Build number: 50 Legal Notices Warranty The only warranties for HP products and services are set forth in the

More information

Legal Notices... 2. Introduction... 3

Legal Notices... 2. Introduction... 3 HP Asset Manager Asset Manager 5.10 Sizing Guide Using the Oracle Database Server, or IBM DB2 Database Server, or Microsoft SQL Server Legal Notices... 2 Introduction... 3 Asset Manager Architecture...

More information

HP SiteScope. HP Vertica Solution Template Best Practices. For the Windows, Solaris, and Linux operating systems. Software Version: 11.

HP SiteScope. HP Vertica Solution Template Best Practices. For the Windows, Solaris, and Linux operating systems. Software Version: 11. HP SiteScope For the Windows, Solaris, and Linux operating systems Software Version: 11.23 HP Vertica Solution Template Best Practices Document Release Date: December 2013 Software Release Date: December

More information

HP Business Service Management

HP Business Service Management HP Business Service Management For the Windows and Linux operating systems Software Version: 9.23 High Availability Fine Tuning - Best Practices Document Release Date: December 2013 Software Release Date:

More information

HP Business Service Management

HP Business Service Management HP Business Service Management Software Version: 9.26 Windows operating system RUM for Citrix - Best Practices Document Release Date: September 2015 Software Release Date: September 2015 RUM for Citrix

More information

HP Real User Monitor. Release Notes. For the Windows and Linux operating systems Software Version: 9.21. Document Release Date: November 2012

HP Real User Monitor. Release Notes. For the Windows and Linux operating systems Software Version: 9.21. Document Release Date: November 2012 HP Real User Monitor For the Windows and Linux operating systems Software Version: 9.21 Release Notes Document Release Date: November 2012 Software Release Date: November 2012 Legal Notices Warranty The

More information

HP OpenView Smart Plug-in for Microsoft Exchange Server

HP OpenView Smart Plug-in for Microsoft Exchange Server HP OpenView Smart Plug-in for Microsoft Exchange Server For the UNIX Operating System Release Notes Software version: 10.00 / November 2006 This document provides an overview of the changes made to HP

More information

HP Business Service Management

HP Business Service Management HP Business Service Management for the Windows and Linux operating systems Software Version: 9.10 Business Process Insight Server Administration Guide Document Release Date: August 2011 Software Release

More information

HP Asset Manager. Software version: 5.20. Integration with software distribution and configuration management tools

HP Asset Manager. Software version: 5.20. Integration with software distribution and configuration management tools HP Asset Manager Software version: 5.20 Integration with software distribution and configuration management tools Document Release Date: 01 October 2009 Software Release Date: October 2009 Legal Notices

More information

HP Asset Manager. Software version: 5.20. Asset Tracking Solution

HP Asset Manager. Software version: 5.20. Asset Tracking Solution HP Asset Manager Software version: 5.20 Asset Tracking Solution Document Release Date: 01 October 2009 Software Release Date: October 2009 Legal Notices Copyright Notices Copyright 1994-2009 Hewlett-Packard

More information

HP OpenView AssetCenter

HP OpenView AssetCenter HP OpenView AssetCenter Software version: 5.0 Asset Tracking solution Build number: 120 Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty statements

More information

HP Project and Portfolio Management Center

HP Project and Portfolio Management Center HP Project and Portfolio Management Center Software Version: 9.20 RESTful Web Services Guide Document Release Date: February 2013 Software Release Date: February 2013 Legal Notices Warranty The only warranties

More information

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Application Setup help topics for printing

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Application Setup help topics for printing HP Service Manager Software Version: 9.40 For the supported Windows and Linux operating systems Application Setup help topics for printing Document Release Date: December 2014 Software Release Date: December

More information

Web Integration between AssetCenter 5.0 and ServiceCenter 6.2 Using Single Sign-on

Web Integration between AssetCenter 5.0 and ServiceCenter 6.2 Using Single Sign-on Web Integration between AssetCenter 5.0 and ServiceCenter 6.2 Using Single Sign-on How to Customize AssetCenter and ServiceCenter to Share Configuration Item (CI) Information HP OpenView IT Asset Management

More information

HPAC2CMDB. Integration Guide. Ver. 1.2

HPAC2CMDB. Integration Guide. Ver. 1.2 HPAC2CMDB Integration Guide Ver. 1.2 HPAC2CMDB Integration Guide 1 Table of Contents Project Abstract... 2 HPAC2CMDB Overview... 2 Hewlett Packard AssetCenter (formerly Peregrine AssetCenter)... 3 Integration

More information

HP SiteScope. Hadoop Cluster Monitoring Solution Template Best Practices. For the Windows, Solaris, and Linux operating systems

HP SiteScope. Hadoop Cluster Monitoring Solution Template Best Practices. For the Windows, Solaris, and Linux operating systems HP SiteScope For the Windows, Solaris, and Linux operating systems Software Version: 11.23 Hadoop Cluster Monitoring Solution Template Best Practices Document Release Date: December 2013 Software Release

More information

HP Service Manager. Collaboration Guide. For the Supported Windows and UNIX operating systems. Software Version: 9.31

HP Service Manager. Collaboration Guide. For the Supported Windows and UNIX operating systems. Software Version: 9.31 HP Service Manager For the Supported Windows and UNIX operating systems Software Version: 9.31 Collaboration Guide Document Release Date: October 2012 Software Release Date: October 2012 Legal Notices

More information

HP Quality Center. Software Version: 10.00. Microsoft Word Add-in Guide

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

More information

HP 3PAR Recovery Manager 4.5.0 Software for Microsoft Exchange Server 2007, 2010, and 2013

HP 3PAR Recovery Manager 4.5.0 Software for Microsoft Exchange Server 2007, 2010, and 2013 HP 3PAR Recovery Manager 4.5.0 Software for Microsoft Exchange Server 2007, 2010, and 2013 Release Notes Abstract This release notes document is for HP 3PAR Recovery Manager 4.5.0 Software for Microsoft

More information

HP Business Service Management

HP Business Service Management HP Business Service Management For the Windows and Linux operating systems Software Version: 9.23 HP NNMi - HP BSM Topology Integration Best Practices Document Release Date: December 2013 Software Release

More information

HP Business Service Management

HP Business Service Management HP Business Service Management Software Version: 9.25 BPM Monitoring Solutions - Best Practices Document Release Date: January 2015 Software Release Date: January 2015 Legal Notices Warranty The only warranties

More information

HP Service Manager. Software Version: 9.34 For the supported Windows and UNIX operating systems. Service Desk help topics for printing

HP Service Manager. Software Version: 9.34 For the supported Windows and UNIX operating systems. Service Desk help topics for printing HP Service Manager Software Version: 9.34 For the supported Windows and UNIX operating systems Service Desk help topics for printing Document Release Date: July 2014 Software Release Date: July 2014 Legal

More information

HP Service Manager. Software Version: 9.34 For the supported Windows and UNIX operating systems. Incident Management help topics for printing

HP Service Manager. Software Version: 9.34 For the supported Windows and UNIX operating systems. Incident Management help topics for printing HP Service Manager Software Version: 9.34 For the supported Windows and UNIX operating systems Incident Management help topics for printing Document Release Date: July 2014 Software Release Date: July

More information

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Collaboration Guide

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Collaboration Guide HP Service Manager Software Version: 9.40 For the supported Windows and Linux operating systems Collaboration Guide Document Release Date: December 2014 Software Release Date: December 2014 Legal Notices

More information

HP Service Manager. Service Desk help topics for printing. For the supported Windows and UNIX operating systems. Software Version: 9.

HP Service Manager. Service Desk help topics for printing. For the supported Windows and UNIX operating systems. Software Version: 9. HP Service Manager For the supported Windows and UNIX operating systems Software Version: 9.32 Service Desk help topics for printing Document Release Date: August 2013 Software Release Date: August 2013

More information

HP Server Automation Enterprise Edition

HP Server Automation Enterprise Edition HP Server Automation Enterprise Edition Software Version: 10.0 User Guide: Server Patching Document Release Date: June 13, 2013 Software Release Date: June 2013 Legal Notices Warranty The only warranties

More information

HP Application Lifecycle Management

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

More information

HP Business Availability Center

HP Business Availability Center HP Business Availability Center for the Windows and Solaris operating systems Software Version: 8.05 Business Process Monitor Administration Document Release Date:September 2010 Software Release Date:

More information

Exam Preparation Guide HP0-M96: Asset Manager 9 Implementation Exam

Exam Preparation Guide HP0-M96: Asset Manager 9 Implementation Exam HP ExpertONE Exam Preparation Guide HP0-M96: Asset Manager 9 Implementation Exam This guide is to set expectations about the context of the certification exam and to help candidates prepare. Recommended

More information

Connectivity Pack for Microsoft Guide

Connectivity Pack for Microsoft Guide HP Vertica Analytic Database Software Version: 7.0.x Document Release Date: 2/20/2015 Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty statements

More information

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Request Management help topics for printing

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Request Management help topics for printing HP Service Manager Software Version: 9.40 For the supported Windows and Linux operating systems Request Management help topics for printing Document Release Date: December 2014 Software Release Date: December

More information

HP Records Manager. Release Notes. Software Version: 8.1. Document Release Date: June 2014

HP Records Manager. Release Notes. Software Version: 8.1. Document Release Date: June 2014 HP Records Manager Software Version: 8.1 Release Notes Document Release Date: June 2014 Software Release Date: June 2014 Legal Notices Warranty The only warranties for HP products and services are set

More information

HP Quality Center. Software Version: 10.00. Microsoft Excel Add-in Guide

HP Quality Center. Software Version: 10.00. Microsoft Excel Add-in Guide HP Quality Center Software Version: 10.00 Microsoft Excel Add-in Guide Document Release Date: February 2012 Software Release Date: January 2009 Legal Notices Warranty The only warranties for HP products

More information

HP Device Manager 4.7

HP Device Manager 4.7 Technical white paper HP Device Manager 4.7 Database Troubleshooting Guide Table of contents Overview... 2 Using MS SQL Server... 2 Using PostgreSQL... 3 Troubleshooting steps... 3 Migrate Database...

More information

HP Enterprise Integration module for SAP applications

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

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 HP Project and Portfolio Management Integration Guide Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty

More information

HP Software as a Service

HP Software as a Service HP Software as a Service Software Version: 6.1 Federated SSO Document Release Date: August 2013 Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty

More information

HP AppPulse Active. Software Version: 2.2. Real Device Monitoring For AppPulse Active

HP AppPulse Active. Software Version: 2.2. Real Device Monitoring For AppPulse Active HP AppPulse Active Software Version: 2.2 For AppPulse Active Document Release Date: February 2015 Software Release Date: November 2014 Legal Notices Warranty The only warranties for HP products and services

More information

HP Software as a Service. Federated SSO Guide

HP Software as a Service. Federated SSO Guide HP Software as a Service Federated SSO Guide Document Release Date: July 2014 Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty statements accompanying

More information

HP Business Process Monitor

HP Business Process Monitor HP Business Process Monitor For the Windows operating system Software Version: 9.23 BPM Monitoring Solutions Best Practices Document Release Date: December 2013 Software Release Date: December 2013 Legal

More information

HP Quality Center. Software Version: 9.20. Microsoft Excel Add-in Guide

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

More information

HP Universal CMDB. Software Version: 10.22. Data Flow Management Best Practices

HP Universal CMDB. Software Version: 10.22. Data Flow Management Best Practices HP Universal CMDB Software Version: 10.22 Data Flow Management Best Practices Document Release Date: December 2015 Software Release Date: December 2015 Legal Notices Warranty The only warranties for HP

More information

Installing Microsoft Windows

Installing Microsoft Windows Installing Microsoft Windows on HP Workstations with Advanced Format Hard Drives Technical white paper Table of contents Introduction... 2 Identifying an Advanced Format drive... 2 Installing Windows on

More information

HP IMC User Behavior Auditor

HP IMC User Behavior Auditor HP IMC User Behavior Auditor Administrator Guide Abstract This guide describes the User Behavior Auditor (UBA), an add-on service module of the HP Intelligent Management Center. UBA is designed for IMC

More information

HP Point of Sale (POS) Peripherals Configuration Guide 2D Imaging / Linear / Presentation Scanner

HP Point of Sale (POS) Peripherals Configuration Guide 2D Imaging / Linear / Presentation Scanner HP Point of Sale (POS) Peripherals Configuration Guide 2D Imaging / Linear / Presentation Scanner Document Version 3.42 December 2011 1 Copyright 2007-2011 Hewlett-Packard Development Company, L.P. The

More information

Administering Windows-based HP Thin Clients with System Center 2012 R2 Configuration Manager SP1

Administering Windows-based HP Thin Clients with System Center 2012 R2 Configuration Manager SP1 Technical white paper Administering Windows-based HP Thin Clients with System Center 2012 R2 Configuration Manager SP1 Table of contents Executive summary... 3 Configuration Manager features... 3 Asset

More information

Sharing Pictures, Music, and Videos on Windows Media Center Extender

Sharing Pictures, Music, and Videos on Windows Media Center Extender Sharing Pictures, Music, and Videos on Windows Media Center Extender Applies to: Microsoft Windows XP Media Center Edition Microsoft Windows Media Center Extender Microsoft Windows Media Center Extender

More information

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Processes and Best Practices Guide (Codeless Mode)

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Processes and Best Practices Guide (Codeless Mode) HP Service Manager Software Version: 9.40 For the supported Windows and Linux operating systems Processes and Best Practices Guide (Codeless Mode) Document Release Date: December, 2014 Software Release

More information

HP Windows 7 Onsite Upgrade Service

HP Windows 7 Onsite Upgrade Service HP Windows 7 Onsite Upgrade Service HP Care Pack Services Technical data The Windows 7 Onsite Upgrade Service provides your company with onsite installation, setup, and training for the Microsoft Windows

More information

Radia Cloud. User Guide. For the Windows operating systems Software Version: 9.10. Document Release Date: June 2014

Radia Cloud. User Guide. For the Windows operating systems Software Version: 9.10. Document Release Date: June 2014 Radia Cloud For the Windows operating systems Software Version: 9.10 User Guide Document Release Date: June 2014 Software Release Date: June 2014 Legal Notices Warranty The only warranties for products

More information

HP Vertica Integration with SAP Business Objects: Tips and Techniques. HP Vertica Analytic Database

HP Vertica Integration with SAP Business Objects: Tips and Techniques. HP Vertica Analytic Database HP Vertica Integration with SAP Business Objects: Tips and Techniques HP Vertica Analytic Database HP Big Data Document Release Date: June 23, 2015 Legal Notices Warranty The only warranties for HP products

More information

Bluetooth Pairing. User Guide

Bluetooth Pairing. User Guide Bluetooth Pairing User Guide Copyright 2012 Hewlett-Packard Development Company, L.P. Microsoft, Windows, and Windows Vista are U.S. registered trademarks of Microsoft Corporation. Bluetooth is a trademark

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 HP Business Availability Center Integration Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty The only

More information

How Service Manager 7 Licensing works

How Service Manager 7 Licensing works How Service Manager 7 Licensing works HP Management Software Service Management Software Introduction to Service Manager Licensing...2 The Licensing Facts...3 The Named license...3 The Floating license...3

More information

HP Change Configuration and Release Management (CCRM) Solution

HP Change Configuration and Release Management (CCRM) Solution HP Change Configuration and Release Management (CCRM) Solution HP Service Manager, HP Release Control, and HP Universal CMDB For the Windows Operating System Software Version: 9.30 Concept Guide Document

More information

PowerSchool Student Information System

PowerSchool Student Information System Oracle ODBC Configuration and Client Installation Guide PowerSchool Student Information System Released July 9, 2008 Document Owner: Documentation Services This edition applies to Release 5.2 of the PowerSchool

More information

HP Service Manager. Software Version: 9.34 For the supported Windows and UNIX operating systems. Processes and Best Practices Guide

HP Service Manager. Software Version: 9.34 For the supported Windows and UNIX operating systems. Processes and Best Practices Guide HP Service Manager Software Version: 9.34 For the supported Windows and UNIX operating systems Processes and Best Practices Guide Document Release Date: July 2014 Software Release Date: July 2014 Legal

More information

HP Access Control Express Installation Guide

HP Access Control Express Installation Guide HP Access Control Express Installation Guide 1 HP Access Control Express Installation Guide Reference number: 20111005 Edition: November 2011 2 Legal notices (c) Copyright 2011 Hewlett-Packard Development

More information

HP Thin Client Imaging Tool

HP Thin Client Imaging Tool HP Thin Client Imaging Tool Table of Contents: Abstract... 1 Introduction... 1 System Requirements... 1 Software... 1 Hardware... 1 Getting Started... 2 Formatting a USB Flash Device... 3 Unpacking the

More information

HP PolyServe Software 4.1.0 upgrade guide

HP PolyServe Software 4.1.0 upgrade guide HP StorageWorks HP PolyServe Software 4.1.0 upgrade guide This document describes how to upgrade to HP PolyServe Matrix Server 4.1.0, HP PolyServe Software for Microsoft SQL Server 4.1.0, and HP PolyServe

More information

HP Device Manager 4.6

HP Device Manager 4.6 Technical white paper HP Device Manager 4.6 Disaster Recovery Guide Table of contents Overview... 2 General recovery process... 2 Recovering the HPDM Server... 5 Backing up the data... 5 Installing the

More information

P4000 SAN/iQ software upgrade user guide

P4000 SAN/iQ software upgrade user guide HP StorageWorks P4000 SAN/iQ software upgrade user guide Abstract This guide provides information about upgrading the SAN/iQ software to release 8.5 Part number: AX696-96010 Second edition: March 2010

More information

HP Quality Center. Upgrade Preparation Guide

HP Quality Center. Upgrade Preparation Guide HP Quality Center Upgrade Preparation Guide Document Release Date: November 2008 Software Release Date: November 2008 Legal Notices Warranty The only warranties for HP products and services are set forth

More information

HP ALM. Software Version: 12.50. Tutorial

HP ALM. Software Version: 12.50. Tutorial HP ALM Software Version: 12.50 Tutorial Document Release Date: December 2015 Software Release Date: December 2015 Legal Notices Warranty The only warranties for HP products and services are set forth in

More information

FTP Server Configuration

FTP Server Configuration FTP Server Configuration For HP customers who need to configure an IIS or FileZilla FTP server before using HP Device Manager Technical white paper 2 Copyright 2012 Hewlett-Packard Development Company,

More information

HP Quality Center. Software Version: 9.20. Version Control Add-in Guide

HP Quality Center. Software Version: 9.20. Version Control Add-in Guide HP Quality Center Software Version: 9.20 Version Control Add-in Guide Document Number: QCGENVC9.2/01 Document Release Date: May 2007 Software Release Date: May 2007 Legal Notices Warranty The only warranties

More information

Plug-In for Informatica Guide

Plug-In for Informatica Guide HP Vertica Analytic Database Software Version: 7.0.x Document Release Date: 2/20/2015 Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty statements

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 Use Cases for Integrations with HP Applications Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty The

More information

HP LeftHand SAN Solutions

HP LeftHand SAN Solutions HP LeftHand SAN Solutions Support Document Application Notes Backup Exec 11D VSS Snapshots and Transportable Offhost Backup Legal Notices Warranty The only warranties for HP products and services are set

More information

HP Factory-Installed Operating System Software for Microsoft Windows Small Business Server 2003 R2 User Guide

HP Factory-Installed Operating System Software for Microsoft Windows Small Business Server 2003 R2 User Guide HP Factory-Installed Operating System Software for Microsoft Windows Small Business Server 2003 R2 User Guide Part Number 371502-004 October 2007 (Fourth Edition) Copyright 2004, 2007 Hewlett-Packard Development

More information

HP EMAIL ARCHIVING SOFTWARE FOR EXCHANGE

HP EMAIL ARCHIVING SOFTWARE FOR EXCHANGE You can read the recommendations in the user guide, the technical guide or the installation guide for HP EMAIL ARCHIVING SOFTWARE FOR EXCHANGE. You'll find the answers to all your questions on the HP EMAIL

More information

HP LeftHand SAN Solutions

HP LeftHand SAN Solutions HP LeftHand SAN Solutions Support Document Applications Notes Best Practices for Using SolarWinds' ORION to Monitor SANiQ Performance Legal Notices Warranty The only warranties for HP products and services

More information

HP Device Manager 4.7

HP Device Manager 4.7 Technical white paper HP Device Manager 4.7 LDAP Troubleshooting Guide Table of contents Introduction... 2 HPDM LDAP-related context and background... 2 LDAP in HPDM... 2 Full domain account name login...

More information

Tailoring the ServiceCenter Service Catalog

Tailoring the ServiceCenter Service Catalog Tailoring the ServiceCenter Service Catalog Best Practices for Adding, Modifying and Removing Service Catalog Connectors HP Management Software IT Service Management Introduction... 2 Prerequisites...

More information

Synchronizing ProCurve IDM and Windows Active Directory

Synchronizing ProCurve IDM and Windows Active Directory An HP ProCurve Networking Application Note Synchronizing ProCurve IDM and Windows Active Directory Contents 1. Introduction... 2 2. Prerequisites... 2 3. Network and Active Directory tree diagrams... 2

More information

HP CloudSystem Enterprise

HP CloudSystem Enterprise HP CloudSystem Enterprise F5 BIG-IP and Apache Load Balancing Reference Implementation Technical white paper Table of contents Introduction... 2 Background assumptions... 2 Overview... 2 Process steps...

More information

Copyright http://support.oracle.com/

Copyright http://support.oracle.com/ Primavera Portfolio Management 9.0 Security Guide July 2012 Copyright Oracle Primavera Primavera Portfolio Management 9.0 Security Guide Copyright 1997, 2012, Oracle and/or its affiliates. All rights reserved.

More information

HP Device Manager 4.6

HP Device Manager 4.6 Technical white paper HP Device Manager 4.6 FTP Server Configuration Table of contents Overview... 2 IIS FTP server configuration... 2 Installing FTP v7.5 for IIS... 2 Creating an FTP site with basic authentication...

More information

HP ProLiant Essentials Vulnerability and Patch Management Pack Release Notes

HP ProLiant Essentials Vulnerability and Patch Management Pack Release Notes HP ProLiant Essentials Vulnerability and Patch Management Pack Release Notes Supported platforms... 2 What s new in version 2.1... 2 What s new in version 2.0.3... 2 What s new in version 2.0.2... 2 What

More information

Managing HP Integrity Servers with HP Server Automation and HP Virtual Server Environment

Managing HP Integrity Servers with HP Server Automation and HP Virtual Server Environment Managing HP Integrity Servers with HP Server Automation and HP Virtual Server Environment Managing HP Integrity Servers with HP Server Automation and HP Virtual Server Environment... 1 Introduction...

More information

HP LeftHand SAN Solutions

HP LeftHand SAN Solutions HP LeftHand SAN Solutions Support Document Application Notes Best Practices for Using PRTG Traffic Grapher to Monitor SANiQ Performance Legal Notices Warranty The only warranties for HP products and services

More information

HP Roar Plus Speaker. Other Features

HP Roar Plus Speaker. Other Features HP Roar Plus Speaker Other Features Copyright 2014 Hewlett-Packard Development Company, L.P. Microsoft, Windows, and Windows Vista are U.S. registered trademarks of the Microsoft group of companies. Bluetooth

More information

Microsoft BackOffice Small Business Server 4.5 Installation Instructions for Compaq Prosignia and ProLiant Servers

Microsoft BackOffice Small Business Server 4.5 Installation Instructions for Compaq Prosignia and ProLiant Servers Integration Note October 2000 Prepared by OS Integration Engineering Compaq Computer Corporation Contents Introduction...3 Requirements...3 Minimum Requirements...4 Required Information...5 Additional

More information

HP Operations Smart Plug-in for Virtualization Infrastructure

HP Operations Smart Plug-in for Virtualization Infrastructure HP Operations Smart Plug-in for Virtualization Infrastructure for HP Operations Manager for Windows Software Version: 1.00 Deployment and Reference Guide Document Release Date: October 2008 Software Release

More information

Backup and Recovery User Guide

Backup and Recovery User Guide Backup and Recovery User Guide Copyright 2007, 2008 Hewlett-Packard Development Company, L.P. Windows is a U.S. registered trademark of Microsoft Corporation. The information contained herein is subject

More information

HP USB Smartcard CCID Keyboard. User Guide

HP USB Smartcard CCID Keyboard. User Guide HP USB Smartcard CCID Keyboard User Guide Copyright 2013 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. Microsoft, Windows, and Windows

More information

HP Application Lifecycle Management

HP Application Lifecycle Management HP Application Lifecycle Management Software Version: 11.00 Installation Guide Document Release Date: October 2010 Software Release Date: October 2010 Legal Notices Warranty The only warranties for HP

More information

How to use Data Protector 6.0 or 6.10 with Exchange Recovery Storage Groups to restore a single mailbox

How to use Data Protector 6.0 or 6.10 with Exchange Recovery Storage Groups to restore a single mailbox How to use Data Protector 6.0 or 6.10 with Exchange Recovery Storage Groups to restore a single mailbox Introduction... 3 Exchange 2003... 4 Creating a Recovery Storage Group... 4 Restoring the Information

More information

Installation Guide: Agentry Device Clients SAP Mobile Platform 2.3

Installation Guide: Agentry Device Clients SAP Mobile Platform 2.3 Installation Guide: Agentry Device Clients SAP Mobile Platform 2.3 Windows DOCUMENT ID: DC01954-01-0230-01 LAST REVISED: February 2013 Copyright 2013 by SAP AG or an SAP affiliate company. All rights reserved.

More information

CA Clarity PPM. Connector for Microsoft SharePoint Product Guide. Service Pack 02.0.01

CA Clarity PPM. Connector for Microsoft SharePoint Product Guide. Service Pack 02.0.01 CA Clarity PPM Connector for Microsoft SharePoint Product Guide Service Pack 02.0.01 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred

More information

Upgrade: SAP Mobile Platform Server for Windows SAP Mobile Platform 3.0 SP02

Upgrade: SAP Mobile Platform Server for Windows SAP Mobile Platform 3.0 SP02 Upgrade: SAP Mobile Platform Server for Windows SAP Mobile Platform 3.0 SP02 Windows DOCUMENT ID: DC80003-01-0302-01 LAST REVISED: February 2014 Copyright 2014 by SAP AG or an SAP affiliate company. All

More information

HP Client Automation Standard Fast Track guide

HP Client Automation Standard Fast Track guide HP Client Automation Standard Fast Track guide Background Client Automation Version This document is designed to be used as a fast track guide to installing and configuring Hewlett Packard Client Automation

More information

Legal Notices... 3. Introduction... 4. Who is this white paper intended for?... 4. Process overview... 5

Legal Notices... 3. Introduction... 4. Who is this white paper intended for?... 4. Process overview... 5 HP Asset Manager Using Asset Manager 5.x and Enterprise Discovery to Start a License Management Process Legal Notices... 3 Introduction... 4 Who is this white paper intended for?... 4 Process overview...

More information

HP VMware ESXi 5.0 and Updates Getting Started Guide

HP VMware ESXi 5.0 and Updates Getting Started Guide HP VMware ESXi 5.0 and Updates Getting Started Guide Abstract This guide is intended to provide setup information for HP VMware ESXi. HP Part Number: 616896-002 Published: August 2011 Edition: 1 Copyright

More information