Nimsoft Monitor. reboot Guide. v1.4 series

Size: px
Start display at page:

Download "Nimsoft Monitor. reboot Guide. v1.4 series"

Transcription

1 Nimsoft Monitor reboot Guide v1.4 series

2 Legal Notices Copyright 2012, Nimsoft Corporation Warranty The material contained in this document is provided "as is," and is subject to being changed, without notice, in future editions. Further, to the maximum extent permitted by applicable law, Nimsoft Corporation disclaims all warranties, either express or implied, with regard to this manual and any information contained herein, including but not limited to the implied warranties of merchantability and fitness for a particular purpose. Nimsoft Corporation shall not be liable for errors or for incidental or consequential damages in connection with the furnishing, use, or performance of this document or of any information contained herein. Should Nimsoft Corporation and the user have a separate written agreement with warranty terms covering the material in this document that conflict with these terms, the warranty terms in the separate agreement shall control. Technology Licenses The hardware and/or software described in this document are furnished under a license and may be used or copied only in accordance with the terms of such license. No part of this manual may be reproduced in any form or by any means (including electronic storage and retrieval or translation into a foreign language) without prior agreement and written consent from Nimsoft Corporation as governed by United States and international copyright laws. Restricted Rights Legend If software is for use in the performance of a U.S. Government prime contract or subcontract, Software is delivered and licensed as "Commercial computer software" as defined in DFAR (June 1995), or as a "commercial item" as defined in FAR 2.101(a) or as "Restricted computer software" as defined in FAR (June 1987) or any equivalent agency regulation or contract clause. Use, duplication or disclosure of Software is subject to Nimsoft Corporation s standard commercial license terms, and non-dod Departments and Agencies of the U.S. Government will receive no greater than Restricted Rights as defined in FAR (c)(1-2) (June 1987). U.S. Government users will receive no greater than Limited Rights as defined in FAR (June 1987) or DFAR (b)(2) (November 1995), as applicable in any technical data. Trademarks Adobe, Acrobat, Acrobat Reader, and Acrobat Exchange are registered trademarks of Adobe Systems Incorporated. Intel and Pentium are U.S. registered trademarks of Intel Corporation. Java(TM) is a U.S. trademark of Sun Microsystems, Inc. Microsoft and Windows are U.S. registered trademarks of Microsoft Corporation. Netscape(TM) is a U.S. trademark of Netscape Communications Corporation. Oracle is a U.S. registered trademark of Oracle Corporation, Redwood City, California. UNIX is a registered trademark of the Open Group.

3 Contact Nimsoft For your convenience, Nimsoft provides a single site where you can access information about Nimsoft products. At you can access the following: Online and telephone contact information for technical assistance and customer services Information about user communities and forums Product and documentation downloads Nimsoft Support policies and guidelines Other helpful resources appropriate for your product Provide Feedback If you have comments or questions about Nimsoft product documentation, you can send a message to support@nimsoft.com.

4

5 Contents Chapter 1: reboot reboot Configuration... 8 Editing a key Key features Examples Probe GUI Testing your Configuration Some useful Arguments Glossary 17 Contents 5

6

7 Chapter 1: reboot 1.4 This description applies to reboot probe version 1.4x The reboot probe is a "timed" probe that reboots the computer according to the probe configuration. When activated, the probe checks its configuration to determine if a reboot is needed, and performs the reboot at the specified point of time. On initial installation, the probe is not active. On activation, it is set to run five minutes past midnight each Monday morning. You can change these settings either using the probe GUI or using the Raw Configure tool. NOTE: You should modify the default configuration parameters according your requirements before activating the probe. This section contains the following topics: reboot Configuration (see page 8) Editing a key (see page 10) Key features (see page 10) Probe GUI (see page 13) Testing your Configuration (see page 15) Some useful Arguments (see page 16) Chapter 1: reboot 1.4 7

8 reboot Configuration reboot Configuration Open the Raw Configure tool to modify the configuration parameters for the probe. This is done by right-clicking the probe in Infrastructure Manager and selecting Configure. 8 reboot Guide

9 reboot Configuration The Raw Configure tool comes up, containing the following two sections: setup loglevel Sets the level of details written to the log file (where 0 gives the minimum level, 2 is the default level. A higher number gives more logging information). Logfile The name of the log file. The file is located in the../nimsoft/probes/system/reboot directory. send_alarm Send alarm when the reboot is executed. forced_shutdown Shut down immediately (without questions), even if applications have unsaved data. before_reboot_command A command to be executed before the reboot takes place. before_reboot_delay Time to wait for the specified before_reboot_command (if any) to finish before rebooting. alarm_level Set the alarm level, such as information, warning, or critical alarm_subsystem The alarm subsystem ID alarm_text timespec Specify the text to be displayed for the particular alarm level The timespec section in the configuration file is used to determine when the probe should reboot the computer. Using the timespec setup, it is possible to let the robot start the probe at regular intervals, and the probe itself will then determine if a reboot is needed. The two parameters in this section are: activate_when A time specification defining when to execute the reboot. last_reboot The probe saves the time of the last reboot it initiated (in seconds since EPOC). This value is used to determine whether a reboot should be initiated at the next probe activation. Chapter 1: reboot 1.4 9

10 Editing a key NOTE: EPOC is a system date used by computers, which starts on Thursday, January 01, :00:00 with the value 0. Editing a key Double-clicking a key opens the properties dialog for the key, enabling you to modify it. Click the OK button to exit the Edit Key dialog, and remember to click the Apply button in the Raw Configure dialog to activate configuration modifications. NOTE: It is recommended to test your parameters before activating the probe, see the section Testing your configuration. Key features A command can be executed before the reboot is initiated by specifying the before_reboot_command and before_reboot_delay in the setup section. 10 reboot Guide

11 Key features Examples Example.cfg: This example will execute the command net stop "TapeWare", wait for 50 seconds and then perform the reboot. <setup> loglevel = 2 logfile = reboot.log send_alarm = yes forced_shutdown = yes before_reboot_command = net stop "TapeWare" before_reboot_delay = 50 </setup> <timespec> activate_when = always last_reboot = </timespec> Example time specifications: Reboot when called: (default) activate_when = always Reboot every evening, but only once each day activate_when = after 22:00 and before 23:45 Reboot when at least 1 day has gone and it is Sunday evening after 10 pm: activate_when = sunday after 22:00 Reboot when at least 2 weeks and 1 day has gone and it is Sunday evening after 10 pm: activate_when = 3rd sunday after 22:00 Reboot every 1st Sunday of the month activate_when = 1st sunday of month after 22:00 activate_when syntax: activate_when -> [ always <day> <time interval> ] day -> [ <date> ( <enumeration> ) ( <weekday> ) ( ( of ) <month> ) ] weekday -> [ monday mon ] [ tuesday tue ] Chapter 1: reboot

12 Key features [ wednesday wed ] [ thursday thu ] [ friday fri ] [ saturday sat ] [ sunday sun ] enumeration -> [ 1st 1 1. ] [ 2nd 2 2. ] [ 3rd 3 3. ] [ 4th 4 4. ]... month -> month [ january jan ] [ february feb ] [ march mar ] [ april apr ]... date -> <monthday>.<monthno> monthday -> monthno -> time interval -> ( after <time> ) ( (and) before <time> ) time -> <hour>:<minute> hour -> minute -> reboot Guide

13 Probe GUI Probe GUI It is recommended to test the configuration parameters before activating the probe. Right-click the probe in the Infrastructure Manager and select Edit. The following dialog appears. Field Probe Type Command Arguments Working Directory Description The probe name. This field is non-editable. The type of execution. By default, timed option is selected. You can deactivate the setting by unselecting the Active checkbox. The process that will execute the rebbot. By default, it is nimreboot.exe Optional arguments that can be passed to the probe. For available arguments, please refer to the section "Some useful Arguments". The probe s working directory path. By default, the path is \probes\system\reboot Chapter 1: reboot

14 Probe GUI Field Configuration File Data File Time Specification Execution Group Description Log File Description The name of the probe configuration file. By default, the file is named reboot.cfg Specify the name if the probe data file, if required. Specify the time range within which the probe activity should be carried out Specify the time interval at which the reboot should be executed. You can specify the start time or frequency (in minutes). Choose Ignore option to nullify this field. Specified the probe grouping. By default, it is System group. A brief description of the probe activity. Be default, the description text is " Reboot computer". Name of the log file for the probe. By default, it is reboot.log 14 reboot Guide

15 Testing your Configuration Testing your Configuration It is recommended to test the configuration parameters before activating the probe. Right-click the probe in the Infrastructure Manager and select Edit. The following dialog appears. Type alarm -test in the Arguments field and click the OK button. Activate the probe by right-clicking it in the Infrastructure Manager and selecting Activate. The probe will now run with the configuration parameters defined and write to the log file as if it really performed the reboot, but without performing the reboot. Study the log file. When you have made sure that the configuration parameters work as intended, you remove the -test argument from the Edit dialog and activate the probe. Chapter 1: reboot

16 Some useful Arguments Some useful Arguments NOTE: The arguments -now, -alarm, -noalarm and -delay described below override settings in the configuration file. now Reboot now alarm Send alarm noalarm Do not send alarm delay Delay before reboot test Test only mode(no reboot, but writing to log file) -? and help Help. Note that these two help commands are available in reboot probe version 1.05 or newer 16 reboot Guide

17 Glossary Glossary 17

Nimsoft Monitor. proxy Guide. v3.1 series

Nimsoft Monitor. proxy Guide. v3.1 series Nimsoft Monitor proxy Guide v3.1 series Legal Notices Copyright 2012, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject to being changed, without

More information

Nimsoft Monitor. cluster Guide. v2.6 series

Nimsoft Monitor. cluster Guide. v2.6 series Nimsoft Monitor cluster Guide v2.6 series Legal Notices Copyright 2012, Nimsoft Corporation Warranty The material contained in this document is provided "as is," and is subject to being changed, without

More information

Nimsoft Monitor. sysstat Guide. v1.1 series

Nimsoft Monitor. sysstat Guide. v1.1 series Nimsoft Monitor sysstat Guide v1.1 series Legal Notices Copyright 2012, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject to being changed, without

More information

Nimsoft Monitor. ocs_monitor Guide. v1.3 series

Nimsoft Monitor. ocs_monitor Guide. v1.3 series Nimsoft Monitor ocs_monitor Guide v1.3 series Legal Notices Copyright 2012, Nimsoft Corporation Warranty The material contained in this document is provided "as is," and is subject to being changed, without

More information

Nimsoft Monitor. ntp_response Guide. v1.2 series

Nimsoft Monitor. ntp_response Guide. v1.2 series Nimsoft Monitor ntp_response Guide v1.2 series Legal Notices Copyright 2012, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject to being changed,

More information

Unified Infrastructure Management Compatibility Matrix June 26, 2015

Unified Infrastructure Management Compatibility Matrix June 26, 2015 Unified Infrastructure Management Compatibility Matrix June 26, 2015 1 Unified Infrastructure Management Compatibility Matrix- CA Technologies Legal Notices Copyright 2013, CA. All rights reserved. Warranty

More information

Nimsoft Monitor. qos_processor Guide. v1.0 series

Nimsoft Monitor. qos_processor Guide. v1.0 series Nimsoft Monitor qos_processor Guide v1.0 series Legal Notices Copyright 2012, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject to being changed,

More information

Nimsoft Monitor. xendesktop Release Notes. All series

Nimsoft Monitor. xendesktop Release Notes. All series Nimsoft Monitor xendesktop Release Notes All series Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject to being

More information

Nimsoft Unified Management Portal

Nimsoft Unified Management Portal Nimsoft Unified Management Portal NimsoftMobile Guide 2.0 Document Revision History Document Version Date Changes x.x xx/xx/2012 Initial version for xxxxxxxxxxxx Legal Notices Copyright 2012, Nimsoft Corporation

More information

Nimsoft Monitor. sharepoint Guide. v1.4 series

Nimsoft Monitor. sharepoint Guide. v1.4 series Nimsoft Monitor sharepoint Guide v1.4 series Legal Notices Copyright 2012, Nimsoft Corporation Warranty The material contained in this document is provided "as is," and is subject to being changed, without

More information

Unified Infrastructure Management Compatibility Matrix September 05, 2017

Unified Infrastructure Management Compatibility Matrix September 05, 2017 Unified Infrastructure Management Compatibility Matrix September 05, 2017 1 Unified Infrastructure Management Compatibility Matrix- CA Technologies Legal Notices Copyright 2017, CA. All rights reserved.

More information

Nimsoft Monitor. controller Guide. v5.7 series

Nimsoft Monitor. controller Guide. v5.7 series Nimsoft Monitor controller Guide v5.7 series Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject to being changed,

More information

CA Nimsoft Monitor for Flow Analysis

CA Nimsoft Monitor for Flow Analysis CA Nimsoft Monitor for Flow Analysis Release Notes Release 1.0 Document Revision History Document Version Date Changes 1.0 9/29/2012 Initial version CA Nimsoft Monitor for Flow Analysis Release Notes Contact

More information

Nimsoft Server. Nimsoft Monitoring Installer for the Vblock Infrastructure Platform - User Guide. Version 1.0

Nimsoft Server. Nimsoft Monitoring Installer for the Vblock Infrastructure Platform - User Guide. Version 1.0 Nimsoft Server Nimsoft Monitoring Installer for the Vblock Infrastructure Platform - User Guide Version 1.0 Legal Notices Copyright 2012, Nimsoft Corporation Warranty The material contained in this document

More information

Nimsoft Monitor. db2mon Guide. v2.2 series

Nimsoft Monitor. db2mon Guide. v2.2 series Nimsoft Monitor db2mon Guide v2.2 series Legal Notices Copyright 2012, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject to being changed, without

More information

Nimsoft Monitor. exchange_response Guide. v2.5 series

Nimsoft Monitor. exchange_response Guide. v2.5 series Nimsoft Monitor exchange_response Guide v2.5 series Legal Notices Copyright 2014, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject to being

More information

Nimsoft Monitor Server

Nimsoft Monitor Server Nimsoft Monitor Server Configuration Guide v6.00 Document Revision History Version Date Changes 1.0 10/20/2011 Initial version of Nimsoft Server Configuration Guide, containing configuration and usage

More information

Nimsoft Monitor. hpovsdgtw Guide. v1.2 series

Nimsoft Monitor. hpovsdgtw Guide. v1.2 series Nimsoft Monitor hpovsdgtw Guide v1.2 series Legal Notices Copyright 2012, Nimsoft Corporation Warranty The material contained in this document is provided "as is," and is subject to being changed, without

More information

Nimsoft Monitor. websphere Guide. v1.5 series

Nimsoft Monitor. websphere Guide. v1.5 series Nimsoft Monitor websphere Guide v1.5 series Legal Notices Copyright 2012, Nimsoft Corporation Warranty The material contained in this document is provided "as is," and is subject to being changed, without

More information

CA Nimsoft Monitor for Flow Analysis

CA Nimsoft Monitor for Flow Analysis CA Nimsoft Monitor for Flow Analysis Release Notes Release 1.1 Document Revision History Document Version Date Changes 1.1 11/30/2012 Updated for Flow Analysis 1.1 release 1.0 9/29/2012 Initial version

More information

Nimsoft Service Desk. Single Sign-On Configuration Guide. [assign the version number for your book]

Nimsoft Service Desk. Single Sign-On Configuration Guide. [assign the version number for your book] Nimsoft Service Desk Single Sign-On Configuration Guide [assign the version number for your book] Legal Notices Copyright 2012, CA. All rights reserved. Warranty The material contained in this document

More information

CA Nimsoft Service Desk

CA Nimsoft Service Desk CA Nimsoft Service Desk Release Notes 7.0.7.4 P03 Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject to being changed,

More information

Nimsoft Monitor. dirscan Guide. v3.0 series

Nimsoft Monitor. dirscan Guide. v3.0 series Nimsoft Monitor dirscan Guide v3.0 series Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject to being changed, without

More information

Unified Management Portal

Unified Management Portal Unified Management Portal Unified Management Portal Release Notes 6.2.1 Document Revision History Document Version Date Changes 1.0 12/18/2012 Initial version for UMP 6.2. 1.1 2/4/2013 Updated version

More information

Nimsoft Monitor. smsgtw Guide. v2.1 series

Nimsoft Monitor. smsgtw Guide. v2.1 series Nimsoft Monitor smsgtw Guide v2.1 series Legal Notices Copyright 2012, Nimsoft Corporation Warranty The material contained in this document is provided "as is," and is subject to being changed, without

More information

Nimsoft Unified Management Portal

Nimsoft Unified Management Portal Nimsoft Unified Management Portal DMZ Guide 6.0 Document Revision History Document Version Date Changes 1.0 12/15/2011 Initial version for UMP 2.6. Modified the instructions for configuring the Apache

More information

CA Nimsoft Unified Management Portal

CA Nimsoft Unified Management Portal CA Nimsoft Unified Management Portal Multiple Server Configuration Guide 7.1 Document Revision History Document Version Date Changes 1.0 December 2013 Initial version for UMP 7.1. Legal Notices Copyright

More information

Nimsoft Monitor. netapp Guide. v1.0 series

Nimsoft Monitor. netapp Guide. v1.0 series Nimsoft Monitor netapp Guide v1.0 series Legal Notices Copyright 2012, Nimsoft Corporation Warranty The material contained in this document is provided "as is," and is subject to being changed, without

More information

CA Nimsoft Unified Management Portal

CA Nimsoft Unified Management Portal CA Nimsoft Unified Management Portal Release Notes 6.5.2 Documentation Changes Document Version Date Changes 1.0 April 2013 Initial version for UMP 6.5. 1.1 April 2013 Updated with topic "Unable to Launch

More information

CA Nimsoft Unified Management Portal

CA Nimsoft Unified Management Portal CA Nimsoft Unified Management Portal DMZ Guide 6.5 Document Revision History Document Version Date Changes 1.0 12/15/2011 Initial version for UMP 2.6. Modified the instructions for configuring the Apache

More information

Nimsoft Monitor. wasp Guide. v2.7 series

Nimsoft Monitor. wasp Guide. v2.7 series Nimsoft Monitor wasp Guide v2.7 series Legal Notices Copyright 2012, Nimsoft Corporation Warranty The material contained in this document is provided "as is," and is subject to being changed, without notice,

More information

Nimsoft Monitor. netapp Guide. v1.1 series

Nimsoft Monitor. netapp Guide. v1.1 series Nimsoft Monitor netapp Guide v1.1 series Legal Notices Copyright 2012, Nimsoft Corporation Warranty The material contained in this document is provided "as is," and is subject to being changed, without

More information

Nimsoft Monitor. sybase Guide. v3.5 series

Nimsoft Monitor. sybase Guide. v3.5 series Nimsoft Monitor sybase Guide v3.5 series Legal Notices Copyright 2012, Nimsoft Corporation Warranty The material contained in this document is provided "as is," and is subject to being changed, without

More information

Agilent CSV Export Utility

Agilent CSV Export Utility Agilent CSV Export Utility User Guide Agilent Technologies Notices Agilent Technologies, Inc. 2011 No part of this manual may be reproduced in any form or by any means (including electronic storage and

More information

CA Nimsoft Monitor. Implementing CA Nimsoft Monitor for Citrix CloudPlatform powered by Apache CloudStack

CA Nimsoft Monitor. Implementing CA Nimsoft Monitor for Citrix CloudPlatform powered by Apache CloudStack CA Nimsoft Monitor Implementing CA Nimsoft Monitor for Citrix CloudPlatform powered by Apache CloudStack October 2013 Document Revision History Document Version Date Changes 1.00 Oct. 1, 2013 First edition

More information

Agilent EZChrom SI. Startup Guide

Agilent EZChrom SI. Startup Guide Agilent EZChrom SI Startup Guide Notices Copyright Scientific Software, Inc 2003 Agilent Technologies, Inc. 2006. No part of this manual may be reproduced in any form or by any means (including electronic

More information

BenchCel Workstations Software

BenchCel Workstations Software BenchCel Workstations Software User Guide For Research Use Only. Not for use in diagnostic procedures. Original Instructions Notices Agilent Technologies, Inc. 2017 No part of this manual may be reproduced

More information

Agilent OpenLAB. Data Store. Maintenance Guide

Agilent OpenLAB. Data Store. Maintenance Guide Agilent OpenLAB Data Store Maintenance Guide Notices Agilent Technologies, Inc. 2012 No part of this manual may be reproduced in any form or by any means (including electronic storage and retrieval or

More information

Nimsoft Monitor. websphere Guide. v1.6 series

Nimsoft Monitor. websphere Guide. v1.6 series Nimsoft Monitor websphere Guide v1.6 series Legal Notices Copyright 2014, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject to being changed,

More information

Agilent OpenLAB. Data Store. Backup and Restore Guide

Agilent OpenLAB. Data Store. Backup and Restore Guide Agilent OpenLAB Data Store Backup and Restore Guide Notices Agilent Technologies, Inc. 2012 No part of this manual may be reproduced in any form or by any means (including electronic storage and retrieval

More information

Agilent N2739A 1000 Series Oscilloscope Rack Mount Kit

Agilent N2739A 1000 Series Oscilloscope Rack Mount Kit Agilent N2739A 1000 Series Oscilloscope Rack Mount Kit Installation Guide Agilent Technologies Notices Agilent Technologies, Inc. 2008 No part of this manual may be reproduced in any form or by any means

More information

Unified Management Portal

Unified Management Portal Unified Management Portal Secure Sockets Layer Implementation Guide 6.0 Document Revision History Document Version Date Changes Beta 05/01/2012 Beta release. 1.0 08/01/2012 Initial release. 1.1 09/15/2012

More information

Agilent Series Logic Analysis System

Agilent Series Logic Analysis System Agilent 16900-Series Logic Analysis System Quick Start Guide for 16700-Series Users Agilent Technologies Notices Agilent Technologies, Inc. 2003-2004 No part of this manual may be reproduced in any form

More information

Agilent 1260 Infinity Purification Solution

Agilent 1260 Infinity Purification Solution Agilent 1260 Infinity Purification Solution Administrator's Quick Start Guide Agilent Technologies Notices Agilent Technologies, Inc. 2017 No part of this manual may be reproduced in any form or by any

More information

Agilent OpenLAB Chromatography Data System (CDS)

Agilent OpenLAB Chromatography Data System (CDS) Agilent OpenLAB Chromatography Data System (CDS) EZChrom Edition Reusing EZChrom Data in OpenLAB CDS with Data Store or ECM Notices Agilent Technologies, Inc. 2012 No part of this manual may be reproduced

More information

CA Nimsoft Unified Management Portal

CA Nimsoft Unified Management Portal CA Nimsoft Unified Management Portal Installation Guide 6.6 Document Revision History Document Version Date Changes 1.0 June 2013 Initial version for UMP 6.6. Legal Notices Copyright 2013, CA. All rights

More information

Nimsoft Monitor. informix Guide. v4.1 series

Nimsoft Monitor. informix Guide. v4.1 series Nimsoft Monitor informix Guide v4.1 series Legal Notices Copyright 2012, Nimsoft Corporation Warranty The material contained in this document is provided "as is," and is subject to being changed, without

More information

Nimsoft Service Desk. Agent User Guide. Version 6.2.4

Nimsoft Service Desk. Agent User Guide. Version 6.2.4 Nimsoft Service Desk Agent User Guide Version 6.2.4 Legal Notices Copyright 2012, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject to being

More information

Setting Up Probes. Online Help

Setting Up Probes. Online Help Setting Up Probes Online Help Notices Agilent Technologies, Inc. 2001-2009 No part of this manual may be reproduced in any form or by any means (including electronic storage and retrieval or translation

More information

CA Nimsoft Monitor. Probe Guide for iseries Job Monitoring. jobs v1.3 series

CA Nimsoft Monitor. Probe Guide for iseries Job Monitoring. jobs v1.3 series CA Nimsoft Monitor Probe Guide for iseries Job Monitoring jobs v1.3 series Contact CA Contact CA Support For your convenience, CA Technologies provides one site where you can access the information that

More information

AIMMS Function Reference - Date Time Related Identifiers

AIMMS Function Reference - Date Time Related Identifiers AIMMS Function Reference - Date Time Related Identifiers This file contains only one chapter of the book. For a free download of the complete book in pdf format, please visit www.aimms.com Aimms 3.13 Date-Time

More information

Agilent E2094M IO Libraries

Agilent E2094M IO Libraries Agilent E2094M IO Libraries Agilent IO Libraries Installation and Configuration Guide Agilent Technologies Notices Agilent Technologies, Inc. 2003 No part of this manual may be reproduced in any form or

More information

CA Nimsoft Monitor. Probe Guide for DHCP Server Response Monitoring. dhcp_response v3.2 series

CA Nimsoft Monitor. Probe Guide for DHCP Server Response Monitoring. dhcp_response v3.2 series CA Nimsoft Monitor Probe Guide for DHCP Server Response Monitoring dhcp_response v3.2 series Legal Notices This online help system (the "System") is for your informational purposes only and is subject

More information

Agilent OpenLAB Data Analysis Upload Download Tool. User s Guide

Agilent OpenLAB Data Analysis Upload Download Tool. User s Guide Agilent OpenLAB Data Analysis Upload Download Tool User s Guide Notices Agilent Technologies, Inc. 2014 No part of this manual may be reproduced in any form or by any means (including electronic storage

More information

Nimsoft Service Desk

Nimsoft Service Desk Nimsoft Service Desk User Guide Agent 6.2.0 Legal Notices Copyright 2011, Nimsoft Corporation See the third-party applications section for additional legal information. Warranty The material contained

More information

Nimsoft Unified Management Portal

Nimsoft Unified Management Portal Nimsoft Unified Management Portal Installation Guide 6.2 Document Revision History Document Version Date Changes 1.0 09/05/2012 Beta version for UMP 6.0 1.1 09/28/2012 GA version for UMP 6.0 1.2 12/18/2012

More information

Nimsoft Monitor. logmon Guide. v3.2 series

Nimsoft Monitor. logmon Guide. v3.2 series Nimsoft Monitor logmon Guide v3.2 series Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject to being changed, without

More information

SystemVue - WPAN Baseband Verification Library. SystemVue WPAN Baseband Verification Library

SystemVue - WPAN Baseband Verification Library. SystemVue WPAN Baseband Verification Library SystemVue 201007 2010 WPAN Baseband Verification Library 1 Agilent Technologies, Inc 2000-2010 395 Page Mill Road, Palo Alto, CA 94304 USA No part of this manual may be reproduced in any form or by any

More information

Agilent OpenLAB Chromatography Data System (CDS)

Agilent OpenLAB Chromatography Data System (CDS) Agilent OpenLAB Chromatography Data System (CDS) EZChrom Edition Compatibility Guide for Agilent Instrument Controllers Agilent Technologies Notices Agilent Technologies, Inc. 2010 No part of this manual

More information

Agilent Technologies E5346A 38-Pin Probe and E5351A 38-Pin Adapter Cable

Agilent Technologies E5346A 38-Pin Probe and E5351A 38-Pin Adapter Cable Agilent Technologies E5346A 38-Pin Probe and E5351A 38-Pin Adapter Cable Installation Note The 38-pin probe and adapter cable provide a convenient way to connect two Agilent Technologies logic analyzer

More information

Keysight 11878A 50 Ohm 3.5 mm Adapter Kit

Keysight 11878A 50 Ohm 3.5 mm Adapter Kit Keysight 11878A 50 Ohm 3.5 mm Adapter Kit Operating and Service Manual Notices Keysight Technologies 1989, 2004, 2013, 2014 No part of this manual may be reproduced in any form or by any means (including

More information

Agilent Technologies E5385A 100-Pin Probe

Agilent Technologies E5385A 100-Pin Probe Agilent Technologies E5385A 100-Pin Probe Installation Note The Agilent Technologies E5385A 100-pin probe provides a convenient way to connect two Agilent Technologies logic analyzer probe cables to a

More information

Keysight 85130F NMD 2.4 mm to 3.5 mm Adapter Kit

Keysight 85130F NMD 2.4 mm to 3.5 mm Adapter Kit Keysight 85130F NMD 2.4 mm to 3.5 mm Adapter Kit Operating and Service Manual Notices Keysight Technologies 1988-2015 No part of this manual may be reproduced in any form or by any means (including electronic

More information

Scheduling. Scheduling Tasks At Creation Time CHAPTER

Scheduling. Scheduling Tasks At Creation Time CHAPTER CHAPTER 13 This chapter explains the scheduling choices available when creating tasks and when scheduling tasks that have already been created. Tasks At Creation Time The tasks that have the scheduling

More information

Agilent OpenLAB Chromatography Data System

Agilent OpenLAB Chromatography Data System Agilent OpenLAB Chromatography Data System EZChrom Elite Edition Migration Guide Agilent Technologies Notices Agilent Technologies, Inc. 2010 No part of this manual may be reproduced in any form or by

More information

HP Project and Portfolio Management Center

HP Project and Portfolio Management Center HP Project and Portfolio Management Center Software Version: 8.00 Generating Fiscal Periods Document Release Date: July 2009 Software Release Date: July 2009 Legal Notices Warranty The only warranties

More information

Agilent OpenLAB Chromatography Data System (CDS)

Agilent OpenLAB Chromatography Data System (CDS) Agilent OpenLAB Chromatography Data System (CDS) ChemStation Edition AIC (M8304AA) Setup Guide Agilent Technologies Notices Agilent Technologies, Inc. 2010-2014, 2015 No part of this manual may be reproduced

More information

Agilent ChemStation Plus

Agilent ChemStation Plus Agilent ChemStation Plus Getting Started Guide Agilent Technologies Notices Agilent Technologies, Inc. 2004 No part of this manual may be reproduced in any form or by any means (including electronic storage

More information

Agilent OpenLAB Data Store. Maintenance Guide

Agilent OpenLAB Data Store. Maintenance Guide Agilent OpenLAB Data Store Maintenance Guide Notices Agilent Technologies, Inc. 2013 No part of this manual may be reproduced in any form or by any means (including electronic storage and retrieval or

More information

Nimsoft Unified Management Portal. SOC Probes Configuration Reference

Nimsoft Unified Management Portal. SOC Probes Configuration Reference Nimsoft Unified Management Portal SOC Probes Configuration Reference Contact Nimsoft For your convenience, Nimsoft provides a single site where you can access information about Nimsoft products. At http://support.nimsoft.com/,

More information

Agilent Genomic Workbench 6.0

Agilent Genomic Workbench 6.0 Agilent Genomic Workbench 6.0 Standard Edition Installation Guide Notices Agilent Technologies, Inc. 2010 No part of this manual may be reproduced in any form or by any means (including electronic storage

More information

Nimsoft Monitor. qos_processor Guide. v1.2 series

Nimsoft Monitor. qos_processor Guide. v1.2 series Nimsoft Monitor qos_processor Guide v1.2 series CA Nimsoft Monitor Copyright Notice This online help system (the "System") is for your informational purposes only and is subject to change or withdrawal

More information

Agilent Lab Advisor. IT Administrator's Guide. Agilent Technologies

Agilent Lab Advisor. IT Administrator's Guide. Agilent Technologies Agilent Lab Advisor IT Administrator's Guide Agilent Technologies Notices Agilent Technologies, Inc. 2016 No part of this manual may be reproduced in any form or by any means (including electronic storage

More information

Agilent N2916B 6000 and 5000 Series Oscilloscope Rack Mount Kit

Agilent N2916B 6000 and 5000 Series Oscilloscope Rack Mount Kit Agilent N2916B 6000 and 5000 Series Oscilloscope Rack Mount Kit Installation Guide Agilent Technologies Notices Agilent Technologies, Inc. 2005, 2007 No part of this manual may be reproduced in any form

More information

Nimsoft Monitor. net_connect Guide. v2.9 series

Nimsoft Monitor. net_connect Guide. v2.9 series Nimsoft Monitor net_connect Guide v2.9 series Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject to being changed,

More information

Agilent E2943A/E2944A ATCA Probes for Advanced Switching Interconnect

Agilent E2943A/E2944A ATCA Probes for Advanced Switching Interconnect Agilent E2943A/E2944A ATCA Probes for Advanced Switching Interconnect Hardware Setup Guide Agilent Technologies Notices Agilent Technologies, Inc. 2005 No part of this manual may be reproduced in any form

More information

Agilent W2100 Antenna Modeling Design System

Agilent W2100 Antenna Modeling Design System Agilent W2100 Antenna Modeling Design System Release Notes Agilent Technologies Notices Agilent Technologies, Inc. 2007 No part of this manual may be reproduced in any form or by any means (including electronic

More information

Agilent InfiniiMax II 1168A/1169A Probes

Agilent InfiniiMax II 1168A/1169A Probes Agilent InfiniiMax II 1168A/1169A Probes Handling Guide Agilent Technologies Notices Agilent Technologies, Inc. 2008 No part of this manual may be reproduced in any form or by any means (including electronic

More information

Automated Plate Labeling

Automated Plate Labeling Automated Plate Labeling Protocol Guide For Research Use Only. Not for use in diagnostic procedures. Original Instructions Notices Agilent Technologies, Inc. 2017 No part of this manual may be reproduced

More information

Keysight 11636B APC-3.5 mm Power Divider DC to 26.5 GHz

Keysight 11636B APC-3.5 mm Power Divider DC to 26.5 GHz Keysight 11636B APC-3.5 mm Power Divider DC to 26.5 GHz Operating and Service Manual Notices Keysight Technologies 1985, 2013, 2014 No part of this manual may be reproduced in any form or by any means

More information

Agilent OpenLAB ECM Intelligent Reporter

Agilent OpenLAB ECM Intelligent Reporter Agilent OpenLAB ECM Intelligent Reporter Installation and Configuration Guide Agilent Technologies Notices Agilent Technologies, Inc. 2007-2016 No part of this manual may be reproduced in any form or by

More information

CA Nimsoft Monitor. net_connect Guide. v3.0 series

CA Nimsoft Monitor. net_connect Guide. v3.0 series CA Nimsoft Monitor net_connect Guide v3.0 series Legal Notices Copyright 2014, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject to being changed,

More information

Keysight 85130D NMD 3.5 mm to 3.5 mm Adapter Kit

Keysight 85130D NMD 3.5 mm to 3.5 mm Adapter Kit Keysight 85130D NMD 3.5 mm to 3.5 mm Adapter Kit Operating and Service Manual Notices Keysight Technologies 1987-2015 No part of this manual may be reproduced in any form or by any means (including electronic

More information

Agilent ChemStation Plus

Agilent ChemStation Plus Agilent ChemStation Plus Getting Started Guide Agilent Technologies Notices Agilent Technologies, Inc. 2004, 2006-2008 No part of this manual may be reproduced in any form or by any means (including electronic

More information

Agilent OpenLAB Chromatography Data System (CDS)

Agilent OpenLAB Chromatography Data System (CDS) Agilent OpenLAB Chromatography Data System (CDS) ChemStation Edition Reusing Data from ChemStation B.04.03 SP1 and SP2 in OpenLAB CDS ChemStation Edition Notices Agilent Technologies, Inc. 2012-2013, 2014

More information

Microscan Barcode Reader

Microscan Barcode Reader Microscan Barcode Reader Device Driver Guide For Research Use Only. Not for use in diagnostic procedures. Original Instructions Notices Agilent Technologies, Inc. 2017 No part of this manual may be reproduced

More information

Agilent 85130C NMD 3.5 mm to Type-N Adapter Kit

Agilent 85130C NMD 3.5 mm to Type-N Adapter Kit Agilent 85130C NMD 3.5 mm to Type-N Adapter Kit Operating and Service Manual Agilent Technologies Notices Agilent Technologies, Inc. 1987, 2004, 2008 No part of this manual may be reproduced in any form

More information

U85026A Detector 40 to 60 GHz

U85026A Detector 40 to 60 GHz Operating and Service Manual U85026A Detector 40 to 60 GHz Serial Numbers This manual applies directly to U85026A detectors with serial numbers 100 and above. For additional information on serial numbers,

More information

Nimsoft Unified Management Portal

Nimsoft Unified Management Portal Nimsoft Unified Management Portal User Documentation 6.2 Legal Notices Copyright 2012, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject to being

More information

pvs Release Notes All series

pvs Release Notes All series pvs Release Notes All series CA Nimsoft Monitor Copyright Notice This online help system (the "System") is for your informational purposes only and is subject to change or withdrawal by CA at any time.

More information

Agilent Dissolution Tester Driver

Agilent Dissolution Tester Driver Agilent Dissolution Tester Driver Agilent Technologies Notices Agilent Technologies, Inc. 2011-2012 No part of this manual may be reproduced in any form or by any means (including electronic storage and

More information

CA Unified Infrastructure Management

CA Unified Infrastructure Management CA Unified Infrastructure Management clariion Release Notes All series Copyright Notice This online help system (the "System") is for your informational purposes only and is subject to change or withdrawal

More information

Firmware Guide. Keysight PXIe Chassis Family

Firmware Guide. Keysight PXIe Chassis Family Firmware Guide Keysight PXIe Chassis Family Notices Keysight Technologies, Inc. 2018 No part of this manual may be reproduced in any form or by any means (including electronic storage and retrieval or

More information

Programming Note. Agilent Technologies Quick Reference Guide For the 8757D/E Scalar Network Analyzer

Programming Note. Agilent Technologies Quick Reference Guide For the 8757D/E Scalar Network Analyzer Programming Note Agilent Technologies Quick Reference Guide For the 8757D/E Scalar Network Analyzer Manufacturing Part Number: 08757-90130 Printed in USA Print Date: July 1992 Agilent Technologies, Inc.

More information

Agilent OpenLAB Chromatography Data System

Agilent OpenLAB Chromatography Data System Agilent OpenLAB Chromatography Data System EZChrom Edition EZChrom Elite and ICM Migration Guide Agilent Technologies Notices Agilent Technologies, Inc. 2011 No part of this manual may be reproduced in

More information

The Scheduler & Hotkeys plugin PRINTED MANUAL

The Scheduler & Hotkeys plugin PRINTED MANUAL The Scheduler & Hotkeys plugin PRINTED MANUAL Scheduler & Hotkeys plugin All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including

More information

CA SSO. Agent for Oracle PeopleSoft Release Notes. r12.51

CA SSO. Agent for Oracle PeopleSoft Release Notes. r12.51 CA SSO Agent for Oracle PeopleSoft Release Notes r12.51 This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation ),

More information

Welcome To HP OpenView Network Node Manager

Welcome To HP OpenView Network Node Manager Welcome To HP OpenView Network Node Manager Windows NT, Windows 2000, HP-UX, and Solaris Manufacturing Part Number: J1240-90052 March 2001 Copyright 2001 Hewlett-Packard Company. Legal Notices Hewlett-Packard

More information

EZChrom Elite Compact. What s New in EZChrom Elite Compact Service Pack 2

EZChrom Elite Compact. What s New in EZChrom Elite Compact Service Pack 2 EZChrom Elite Compact What s New in EZChrom Elite Compact 3.3.2 Service Pack 2 Notices Agilent Technologies, Inc. 2010 No part of this manual may be reproduced in any form or by any means (including electronic

More information

Agilent 89600B VSA. Software Installation Guide

Agilent 89600B VSA. Software Installation Guide Agilent 89600B VSA Software Installation Guide Notices Agilent Technologies, Inc. 2000-2011 No part of this manual may be reproduced in any form or by any means (including electronic storage and retrieval

More information