Application Power Management for Mobility

Size: px
Start display at page:

Download "Application Power Management for Mobility"

Transcription

1 Application Power Management for Mobility White Paper March 20, 2002 Copyright 2002 Intel Corporation

2 Contents 1. Introduction Overview Audience Application Power Management for Mobility Extending battery life Handling system sleep/wake power transitions Preventing the system from transitioning to sleep mode Implementing Application Power Management for Mobility Implementation steps for extending battery life Implementation steps for handling system sleep/wake power transitions Implementation steps for preventing the system from transitioning to sleep mode Proof-of-concept application Microsoft Windows Power Management APIs and Messages Power status GetSystemPowerStatus WM_POWEBOADCAST Power schemes EnumPwrSchemes GetActivePwrScheme System Power Scheme change Execution State SetThreadExecutionState Intel Mobility Application Power Demo Overview Implementation of Application Power Management for Mobility Extending battery life Handling system sleep/wake power transitions Installation Source Code Conclusion Appendix A: Intel Mobility Application Power Demo Executable and Source Code

3 Acronyms API DLL MFC MSDN UI Application Programming Interface Dynamic Link Library Microsoft * Foundation Classes Microsoft* Developer Network User Interface * Other names and brands may be claimed as the property of others 3

4 1. Introduction 1.1. Overview A good user experience and longer battery life are critical factors for the future growth of mobile systems. Application software has a key role to play in improving user experience as well as in extending battery life. This white paper discusses the concept of Application Power Management for Mobility. Application Power Management for Mobility describes how application software can improve user experience and extend battery life. This white paper includes, steps for implementing Application Power Management for Mobility within an application, references to available Microsoft* Windows Power Management Application Programming Interfaces (APIs), and an overview of the proof-of-concept application developed by Intel software labs Audience The intended audience for this white paper is architects, designers and developers writing applications for Microsoft* Windows* operating systems including: Windows* 98, Windows* 98SE, Windows* ME, Windows* 2K and Windows* XP. This paper also provides a good overview of Application Power Management for Mobility for managers, validation engineers, technical-marketing engineers or anyone defining/designing an application. Other names and brands may be claimed as the property of others 4

5 2. Application Power Management for Mobility Application Power Management for Mobility identifies three distinct power management capabilities for applications to implement. These power management capabilities are: extending battery life when the system is battery powered, handling system sleep/wake power transitions, and preventing the system from transitioning to sleep mode when the application is in use Extending battery life When the system is battery powered, applications can extend battery life by reducing the performance/quality of features, turning off background activities, or both. Implementing these operations in an application increases the processor idle 1 time. Since processor power consumption when idle is significantly lower than when active 2, this results in longer battery life. There is no pre-defined list of performance/quality features and background activities for extending battery life. The performance/quality features and background activities are specific to an application. Some examples could include: educing the quality of video and audio playback in a DVD application to extend playtime while traveling. Turning off automatic spell check and grammar correction within a word processing application to finish the document when the battery is low. educing the frequency of stock quote updates in web based financial applications to remain online longer. When a system is battery powered applications can extend battery life. In addition, applications can define other criteria to determine when to extend battery life. These other criteria can be based on current battery power status, current system power scheme 3, or both. For example, an application can extend battery life when one or more conditions below are met: The percentage of remaining battery power is below a specific threshold. The remaining battery time is below a certain amount of time. The system is using a particular power scheme. An application s User Interface (UI) can provide options for specifying both how and when, to reduce performance/quality of features, to turn off background activities or both. User input is important, since users know their requirements and their environment best. User experience may not be optimal if applications predefined these settings without any options in the UI. 1 Idle refers to the processor state when the processor isn t executing any instructions 2 Active refers to the processor state when the processor is executing instructions 3 Windows* operating systems allow users to set power settings most appropriate for their systems using power schemes. For more information on power schemes refer to the Windows* documentation. 5

6 2.2. Handling system sleep/wake power transitions In Windows* operating systems, the sleep power transition refers to switching off the system to a Stand By or a Hibernate mode, and the wake power transition refers to switching on the system from a Stand By or a Hibernate mode. The Stand by and Hibernate modes allow users to switch off and switch on systems a lot quicker than the regular shut down and boot processes. Applications can improve user experience by handling system sleep/wake power transitions. Handling system sleep/wake power transitions means, applications should survive these power transitions without, requiring a restart, loss of data, and change in state. In addition, for a good user experience, applications should handle the power transitions transparently with no user interaction. There is no generalized list of tasks for handling system sleep/wake power transitions. The tasks depend on the application and will vary between applications. Some tasks for applications to consider include: Saving state/data prior to the sleep transition and restoring state/data after the wake transition. Closing all open system resource handles such as files and I/O devices prior to the sleep transition. Disconnecting all communication links prior to the sleep transition and re-establishing all communication links after the wake transition. Synchronizing all remote activity (like writing back to remote files or to remote databases) after the wake transition. Stopping any ongoing user activity (for example: streaming video, or file download) prior to the sleep transition and resuming the user activity after the wake transition Preventing the system from transitioning to sleep mode In Windows* operating systems, the system s transition to sleep mode refers to switching off the system to a Stand By or a Hibernate mode. To conserve battery power, Windows* operating systems switch off the system to a Stand By or a Hibernate mode when they don t detect certain activities for a specific period 1 of time. The activities that Windows* operating systems don t automatically detect are: disk activity, CPU activity and video display activity. The activities that Windows* operating systems automatically detect are: keyboard input, mouse input, server activity, and changing window focus. Applications like video players and presentation managers display video for long periods of time without any user input and this often results in Windows* operating system switching off the system display during a video play back or a presentation. To deal with this situation, the options available for users are either to switch on the system display each time it switches off, or to delay the system transition to sleep mode by increasing the waiting period for display activity. Neither of these operations is optimal since switching on the system display each time reduces the user experience, and delaying the system transition to sleep mode wastes battery power when the system is not in use for extended periods. When an application is performing an activity that the operating system doesn t detect, it can prevent the system from transitioning to sleep mode by informing the operating system. This results in a better user experience as well as in better power management. 1 Windows* operating systems allow users to specify the time period using power schemes. For more information on power schemes refer to the Windows* documentation. 6

7 2.4. Implementing Application Power Management for Mobility This section outlines the steps for implementing Application Power Management for Mobility within an application Implementation steps for extending battery life The implementation steps for an application to extend battery life include: 1. Identify the application features where users may be willing to reduce performance/quality for extended battery life. 2. Identify the application background activities which users may be willing to turn off for extended battery life. 3. When a system is battery powered the application can extend battery life. In addition, the application can define other criteria to determine when to extend battery life. These other criteria can be based on current battery power status, current system power scheme, or both. 4. eview the Microsoft* Windows* Power Management APIs and Messages section in this white paper. This section outlines available Windows* operating system APIs and messages for retrieving system power information like system power source, battery status, and system power schemes. 5. Design and implement a UI so users can specify both how and when to reduce performance/quality of features, and/or to turn off background activities. 6. Implement application logic to retrieve system power information and determine when to reduce performance/quality of features, and/or to turn off background activities. 7. Implement application logic to reduce performance/quality of features, and/or to turn off background activities Implementation steps for handling system sleep/wake power transitions Windows* operating systems send messages to applications notifying them of system sleep and wake power transitions. Applications should respond to these messages and perform necessary operations to handle the power transitions. The implementation steps for an application to handle system sleep/wake power transitions include: 1. Investigate the application behavior during system sleep/wake power transitions. In Windows operating systems, the sleep power transition refers to switching off the system to a Stand By or a Hibernate mode, and the wake power transition refers to switching on the system from a Stand By or a Hibernate mode. 2. Identify the issues causing the application to, require a restart, lose data, or change state. 3. eview the Microsoft* Windows* Power Management APIs and Messages section in this white paper. This section outlines available Windows* operating system APIs and messages for responding to system sleep/wake power transitions. In Windows* Power Management APIs terminology, the system sleep and wake power transition notifications are referred to as suspend and resume messages. 4. Implement application logic to respond to the power transition notifications and perform the necessary operations to survive the power transitions without, requiring a restart, loss of data and change in state. For a good user experience, handle the power transitions with no user interaction. 7

8 Implementation steps for preventing the system from transitioning to sleep mode The implementation steps for an application to prevent the system from transitioning to sleep mode include: 1. Identify application activities that the operating system doesn t detect. 2. eview the Microsoft* Windows* Power Management APIs and Messages section in this white paper. This section outlines available Windows* operating system APIs for preventing the system from transitioning to sleep mode. 3. Implement application logic to prevent the system from transitioning to sleep mode when the application is performing activities that the operating system doesn t detect Proof-of-concept application Intel software labs developed the Intel Mobility Application Power Demo as a proof-of-concept application to illustrate Application Power Management for Mobility. This proof-of-concept application simulates support for extending battery life and handling system sleep/wake power transitions. Intel Mobility Application Power Demo and its source code may be used as a reference for implementing Application Power Management for Mobility within your application. efer to the Intel Mobility Application Power Demo section for more details. 8

9 3. Microsoft Windows Power Management APIs and Messages The details covered in this section are applicable to Microsoft* Windows* operating systems including: Windows* 98, Windows* 98SE, Windows* ME, Windows* 2K and Windows* XP. This section covers only the Microsoft* Windows* Power Management APIs and messages required for implementing Application Power Management for Mobility. For a complete reference to all Microsoft* Windows* Power Management APIs and messages refer to the Microsoft* Developer Network (MSDN) library. Note: Most of the content is this section was taken from the MSDN library Power status This section covers the GetSystemPowerStatus API and the WM_POWEBOADCAST message. The GetSystemPowerStatus API is used to retrieve system power information such as system power source and current battery power status. The WM_POWEBOADCAST message is sent to notify applications of system sleep/wake power transitions and changes in system power status GetSystemPowerStatus The GetSystemPowerStatus API is used to retrieve system power information. This status indicates whether the system is running on AC or DC (battery) power, whether the battery is currently charging, and how much battery life remains. To use this API, include the Windows.h header file and link with the Kernel32.lib library. BOOL GetSystemPowerStatus(LPSYSTEM_POWE_STATUS psystempowerstatus); Parameter: LPSYSTEM_POWE_STATUS psystempowerstatus An out pointer to SYSTEM_POWE_STATUS structure that receives status information. eturn Value: If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call the GetLastError API (efer to MSDN for GetLastError details). Structure SYSTEM_POWE_STATUS typedef struct _SYSTEM_POWE_STATUS { BYTE ACLineStatus; BYTE BatteryFlag; BYTE BatteryLifePercent; BYTE eserved1; DWOD BatteryLifeTime; DWOD BatteryFullLifeTime; } SYSTEM_POWE_STATUS, *LPSYSTEM_POWE_STATUS; The structure members are: ACLineStatus Indicates AC power status. 0 for Offline (Battery/DC), 1 for Online (AC) and 255 for Unknown status. 9

10 BatteryFlag Indicates Battery charge status. 1 for High, 2 for Low, 4 for Critical, 8 for Charging, 128 for No system battery, and 255 for Unknown status. BatteryLifePercent Percentage of battery charge remaining. The value can range from 0 to 100 and is set to 255 if the value is unknown. eserved1 eserved, must be zero. BatteryLifeTime Number of seconds of battery life remaining, or 1 if unknown. BatteryFullLifeTime Number of seconds of battery life when at full charge, or 1 if unknown WM_POWEBOADCAST The WM_POWEBOADCAST message notifies applications of system sleep/wake power transitions and changes in system power status. An application window receives this message through its WindowProc function. To adhere to the API documentation and Windows* operating system terminology, in this section the term suspend refers to system sleep power transition and the term resume refers to system wake transition. Note: Windows* operating systems do not send any notification to applications when a critical suspension occurs (for example, a battery failure). A critical resume notification (refer below to PBT_APMESUMECITICAL) is sent to applications after the system resumes from critical suspension. In such a scenario, an application should make a best effort attempt to restore its state and data. To handle the message, include the Windows.h header file. LESULT CALLBACK WindowProc( HWND hwnd, UINT umsg, WPAAM wparam, LPAAM lparam ); // handle to window // message id (WM_POWEBOADCAST) // power-management event // function-specific data Parameters: wparam Specifies the power-management event. PBT_APMBATTEYLOW Battery power is low. Not all BIOS implementations provide low battery notifications so this event may never be broadcast on some systems. PBT_APMOEMEVENT OEM-defined BIOS signal event. The lparam specifies the OEM-defined event code and is in the range 0200h 02FFh. Not all BIOS implementations provide OEM event notifications so this event may never be broadcast on some systems. PBT_APMPOWESTATUSCHANGE Power status has changed (for example, there has been a switch from battery power (DC) to AC). This message is also broadcast when the battery s life drops to less than 5 minutes, when the remaining percentage of battery life drops below 10%, or when the battery life changes by 3%. The application should process this message by calling the GetSystemPowerStatus function to retrieve the current power status of the system. PBT_APMQUEYSUSPEND is a request for permission to suspend the system. Applications granting permission to suspend should prepare for the suspension before returning. lparam a DWOD value specifies action flags. If bit 0 is 1, the application can prompt for directions on how to prepare for the suspension; otherwise, the application must prepare without user intervention. All 10

11 other bits are reserved. Any operation taking longer than 20 seconds should be accomplished here, since the system allows only 20 seconds for operations to complete during PBT_APMSUSPEND. eturn TUE to grant the request for suspend and return BOADCAST_QUEY_DENY to deny the request. PBT_APMQUEYSUSPENDFAILED the suspension request is denied. This event is broadcast when any application or driver returns BOADCAST_QUEY_DENY to a previous PBT_APMQUEYSUSPEND event. Applications should respond by resuming normal operations. PBT_APMESUMEAUTOMATIC is broadcast when the system wakes up automatically to handle an event. Applications should not respond unless they are handling the event without user intervention. Detection of user activity after broadcasting PBT_APMESUMEAUTOMATIC, broadcasts a PBT_APMESUMESUSPEND event to let applications know they can resume full user interaction. PBT_APMESUMECITICAL Operation resuming after critical suspension such as a battery failure. Since a critical suspension occurs without prior notification, resources and data previously available may not be present when the application receives the event. Applications should make a best effort attempt to restore their state. PBT_APMESUMESUSPEND Operation resuming after suspension. Applications can receive this event only if they received the PBT_APMSUSPEND event before the system was suspended. PBT_APMSUSPEND the system is suspending operation and the message is broadcast immediately before the system enters the suspended state. This is broadcast when all applications and drivers have returned TUE to a previous PBT_APMSUSPENDQUEY event. Applications should process this event by completing all tasks necessary to save state and data. Applications have approximately 20 seconds to handle this and are interrupted if operations continue after the 20 seconds have expired. lparam Event-specific data, refer to wparam information for more details. For most events, this parameter is reserved and not used. eturn Value: For PBT_APMQUEYSUSPEND event - return TUE to grant a request and return BOADCAST_QUEY_DENY to deny a request. For other events there is no return value Power schemes The APIs for enumerating all the power schemes installed on the system and retrieving the current system power scheme are EnumPwrSchemes and GetActivePwrScheme. To use these APIs include Powrprof.h header file and link with Powrprof.lib library EnumPwrSchemes The EnumPwrSchemes API enumerates all power schemes installed on a system. For each enumerated power scheme, EnumPwrSchemes calls a callback function with information about the power scheme. This call to the callback function is synchronous and does not return until all schemes are enumerated. BOOL EnumPwrSchemes(PWSCHEMESENUMPOC lpfnpwrschemesenumproc, LPAAM lparam); Parameter: PWSCHEMESENUMPOC lpfnpwrschemesenumproc A pointer to a callback function for each enumerated power scheme. 11

12 LPAAM lparam A user-defined value passed to the callback function. eturn Value: When the function succeeds, the return value is EO_SUCCCESS. When the function fails, the return value is zero. To get extended error information, call GetLastError API. Callback function: typedef BOOLEAN (CALLBACK* PWSCHEMESENUMPOC)( UINT uiindex, // power scheme index DWOD dwname, // size of the sname string, in bytes LPTST sname, // name of the power scheme DWOD dwdesc, // size of the sdesc string, in bytes LPTST sdesc, // description string PPOWE_POLICY pp, // receives the power policy LPAAM lparam // user-defined value ); The name and description strings are null-terminated strings, and pp is a pointer to a POWE_POLICY structure containing the power policy scheme. The POWE_POLICY structure contains power policy settings unique to each scheme. Since power policy settings aren t used in Application Power Management for Mobility, information on the POWE_POLICY structure is omitted from this paper. efer to the MSDN library for details on POWE_POLICY structure GetActivePwrScheme The GetActivePwrScheme API retrieves the active power scheme (current system power scheme) index. BOOL GetActivePwrScheme(PUINT puiid); Parameter: PUINT puiid A pointer to a variable that receives the index of the active power scheme. eturn Value: If the function succeeds, the return value is nonzero, and if the function fails, the return value is zero. To get extended error information, call the GetLastError API System Power Scheme change Windows* operating systems do not notify applications when the system power scheme is changed either programmatically or by the user. To handle a system power scheme change, the Intel Mobility Application Power Demo relies on Windows* Timer messages to retrieve system power scheme information (using the GetActivePwrScheme API) at regular intervals. For details on Windows* Timer messages refer to the MSDN library Execution State This section covers the SetThreadExecutionState API, which is used to prevent the system from transitioning to sleep mode. 12

13 SetThreadExecutionState The SetThreadExecutionState API enables applications to inform the operating system when they are in use and thereby preventing the system from transitioning to sleep mode. To use this API, include the Windows.h header file and link with the Kernel32.lib library. EXECUTION_STATE SetThreadExecutionState(EXECUTION_STATE esflags); Parameter: EXECUTION_STATE esflags Specifies the thread's execution requirements. This parameter can be one or more of the following values: ES_SYSTEM_EQUIED - Informs the system that the thread is performing some operation that is not normally detected as activity by the system. ES_DISPLAY_EQUIED - Informs the system that the thread is performing some operation that is not normally detected as activity by the system. ES_USE_PESENT - Informs the system that a user is present. If a user is present, the system will use the power policy settings set by the user. Otherwise, the system does not wake the display device and will return to the sleeping state as soon as possible. ES_CONTINUOUS - When this flag is used with one or more of the other state flags it informs the system that the state being set should remain in effect indefinitely. To reset or clear the indefinite condition, call SetThreadExecutionState again with just the ES_CONTINUOUS flag. eturn Value: If the function succeeds, the return value is previous thread execution state, and if the function fails, the return value is NULL. For example, a presentation application should call SetThreadExecutionState with ES_SYSTEM_EQUIED, ES_DISPLAY_EQUIED and ES_CONTINUOUS flags prior to a slide show, and when the slide show is complete the presentation application should call SetThreadExecutionState with just the ES_CONTINIOUS flag. 13

14 4. Intel Mobility Application Power Demo Intel software labs developed the Intel Mobility Application Power Demo as a proof-of-concept application to illustrate Application Power Management for Mobility. The Mobility Application Power Demo and its source code may be used as a reference for implementing Application Power Management for Mobility within your application. This section includes, an overview of the Mobility Application Power Demo, a description on how the Mobility Application Power Demo simulates support for Application Power Management for Mobility, and how to access the Mobility Application Power Demo and its source code Overview The Mobility Application Power Demo, like Microsoft s Notepad is a simple word processing application allowing users to open, edit and save text documents. The application simulates support for extending battery life and for handling system sleep/wake power transitions. It does not simulate support for preventing the system from transitioning to sleep mode. Other application features include: Creating new or opening existing documents in plain text format. Copying, cutting and pasting text. Undoing changes made to the document. Saving changes to an existing document. Writing to a new document in plain text format. Printing and print previewing the document. Tracking the most recently opened documents. Viewing battery status and battery details like name, type, and manufacturer s name. Selecting save options like directory to save to and prompting for unsaved data. The application s main UI shown in Figure 1 includes, a menu/tool bar for accessing application features, a status bar indicating application status, and an edit window for writing/editing text documents. The menu items provides access to the following application features: Use the File menu for creating, opening, saving and printing text files. Use the Edit menu for cutting, copying and pasting text. Use the View menu for viewing the battery status information, and to show or hide the status/tool bars. Use the Options menu for selecting the save and the power options. Use the Help menu for viewing the about box and the overview of the Mobility Application Power Demo. 14

15 4.2. Implementation of Application Power Management for Mobility The Mobility Application Power Demo s implementation of the Application Power Management for Mobility concepts is just a simulation. The application s options and UI used to simulate the concepts are for illustration purposes only and should not be considered a design guideline Extending battery life To extend battery life, the Mobility Application Power Demo implements the following: Two modes of operation: Normal mode and Low Power mode. A Power Options UI, so users can specify how and when to extend battery life. Normal mode versus Low Power mode The Mobility Application Power Demo switches from Normal mode to Low Power mode for extending battery life and switches back to Normal mode when not extending battery life. Switching of the modes is for illustrative purposes only and has no effect on the application performance. The application s status bar displays the current mode of operation (shown in Figure 2). 15

16 Power Options UI The Mobility Application Power Demo s Power Options UI provides options so users can specify when the application should switch to Low Power mode and how it should perform in Low Power mode. The power options UI is a property sheet with a Settings tab and a Low Power tab. This property sheet is accessible from Options\Power menu as shown in Figure 3 below. 16

17 Settings Tab The Settings tab shown in Figure 4 below allows users to set conditions on when to switch the application to Low Power mode. The application switches to Low Power mode when the system is battery powered and when all the conditions in this tab are met. The conditions are: Switch the application to Low Power mode when the current battery power level falls below a specified threshold. Switch the application to Low Power mode either for all power schemes or when the current system power scheme matches a selected power scheme. In addition, the Settings tab displays system power status information like current power source, percentage of remaining battery power, remaining battery time, and current power scheme. 17

18 Low Power Tab The Low Power tab shown in Figure 5 below allows users to specify how the application should perform in Low Power mode. The options in this tab are the performance/quality of features to reduce and the background activities to turn off for extending battery life. The options are for illustrative purposes only and have no effect on the performance of the Mobility Application Power Demo. The Low Power tab options include: In Low Power mode, the option to reduce video playback quality. In Low Power mode, the option to increase the time interval for information updates from the Web. In Low Power mode, the option to turn off specific application features. 18

19 Handling system sleep/wake power transitions The Mobility Application Power Demo simulates support for handling system sleep/wake power transitions by displaying status messages (shown in figures 6 & 7 below) indicating preparation for suspend and resume operations. The status messages are for illustrative purposes only, for a good user experience applications should handle system sleep/wake power transitions transparently without displaying any messages Installation The link for downloading the Mobility Application Power Demo is available in Appendix A. The download includes the Mobility Application Power Demo executable (pwrdemo.exe) and its eadme file (ead Me.htm). Install the Mobility Application Power Demo on the target system and double click the executable to start the application. No additional libraries or DLLs are required. The system requirement for running the Mobility Application Power Demo is: A battery powered notebook 1 running on Windows* (98, 98SE, ME, 2K or XP) operating system Source Code The link for downloading the Mobility Application Power Demo s source code is in Appendix A. The download includes all the source files and the design notes (Design Notes.htm) for the application. The design notes provide a brief overview on the contents of the source files. The Mobility Application Power Demo is written in C++ and uses the Microsoft* Foundation Classes (MFC) application framework library. To build the application use Visual Studio 6.0 IDE. 1 [Note - The application does run on desktops and notebooks without battery, but you will not be able to see how the application switches between Normal and Low Power modes.] 19

20 5. Conclusion As outlined in this white paper, it is fairly straightforward to implement Application Power Management for Mobility within applications. emember the following steps when implementing Application Power Management for Mobility: Identify the application performance/quality features to reduce and the application background activities to turn off for extended battery life. Identify the issues causing the application to, require a restart, lose data or change state during system sleep/wake power transitions. Identify application activities that the operating system doesn t detect. eview the Microsoft* Windows* Power Management APIs and Messages section in this white paper. Use the Intel Mobility Application Power Demo application and its source code as a reference during your design and development. Implement a UI so users can specify when and how to reduce performance/quality of features and /or turn off background activities for extended battery life. Implement application logic to extend battery life, to handle system sleep/wake power transitions, and to prevent the system from transitioning to sleep mode when the application is performing activities that the operating system doesn t detect. 20

21 Appendix A: Intel Mobility Application Power Demo Executable and Source Code Intel Mobility Application Power Demo executable is available at: Intel Mobility Application Power Demo source code is available at: 21

The Art of Graceful Application Suspension. by Lynn Merrill

The Art of Graceful Application Suspension. by Lynn Merrill The Art of Graceful Application Suspension by Lynn Merrill Feburary 3, 2004 The information contained in this document is provided for informational purposes only and represents the current view of Intel

More information

Division of Administration (DOA) Desktop Support

Division of Administration (DOA) Desktop Support Division of Administration (DOA) Desktop Support Computer Power Conservation Settings for XP & Vista Operating Systems XP Power Options Overview Using Power Options in Control Panel, you can reduce the

More information

1 Intel Smart Connect Technology Installation Guide:

1 Intel Smart Connect Technology Installation Guide: 1 Intel Smart Connect Technology Installation Guide: 1.1 System Requirements The following are required on a system: System BIOS supporting and enabled for Intel Smart Connect Technology Microsoft* Windows*

More information

MetroPro Remote Access OMP-0476F. Zygo Corporation Laurel Brook Road P.O. Box 448 Middlefield, Connecticut 06455

MetroPro Remote Access OMP-0476F. Zygo Corporation Laurel Brook Road P.O. Box 448 Middlefield, Connecticut 06455 MetroPro Remote Access OMP-0476F Zygo Corporation Laurel Brook Road P.O. Box 448 Middlefield, Connecticut 06455 Telephone: (860) 347-8506 E-mail: inquire@zygo.com Website: www.zygo.com ZYGO CUSTOMER SUPPORT

More information

Getting Started with Vision 6

Getting Started with Vision 6 Getting Started with Vision 6 Version 6.9 Notice Copyright 1981-2009 Netop Business Solutions A/S. All Rights Reserved. Portions used under license from third parties. Please send any comments to: Netop

More information

Understanding Task Scheduler FIGURE 33.14. Task Scheduler. The error reporting screen.

Understanding Task Scheduler FIGURE 33.14. Task Scheduler. The error reporting screen. 1383 FIGURE.14 The error reporting screen. curring tasks into a central location, administrators gain insight into system functionality and control over their Windows Server 2008 R2 infrastructure through

More information

Call Recorder Oygo Manual. Version 1.001.11

Call Recorder Oygo Manual. Version 1.001.11 Call Recorder Oygo Manual Version 1.001.11 Contents 1 Introduction...4 2 Getting started...5 2.1 Hardware installation...5 2.2 Software installation...6 2.2.1 Software configuration... 7 3 Options menu...8

More information

Acer LCD Monitor Driver Installation Guide

Acer LCD Monitor Driver Installation Guide 1 Contents 1 Contents... 1 2 Introduction... 2 3 Installation Guide... 2 3.1 PC requirements... 2 3.2 Installing the Acer LCD Monitor Driver on Windows Vista... 3 3.2.1 Hardware first install... 3 3.2.2

More information

Lync 2013 User Instructions

Lync 2013 User Instructions Lync 2013 User Instructions 4/2/2014 What is Microsoft Lync? Microsoft Lync 2013 is an instant messenger that can be used for sending instant messages, having a voice or video chat and for conducting corporate

More information

Hosting Users Guide 2011

Hosting Users Guide 2011 Hosting Users Guide 2011 eofficemgr technology support for small business Celebrating a decade of providing innovative cloud computing services to small business. Table of Contents Overview... 3 Configure

More information

Caching SMB Data for Offline Access and an Improved Online Experience

Caching SMB Data for Offline Access and an Improved Online Experience Caching SMB Data for Offline Access and an Improved Online Experience Agenda What is Offline Files How does Offline Files interact with SMB Offline Files enhancements for Windows 7 Questions 2 What is

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

Providing Patch Management With N-central. Version 7.2

Providing Patch Management With N-central. Version 7.2 Providing Patch Management With N-central Version 7.2 Contents Patch Management 3 Introduction 3 Monitoring for Missing Patches 3 Setting up Patch Management in N-central 4 Adding a WSUS Server to N-central

More information

SyAM Software Management Utilities. Creating Templates

SyAM Software Management Utilities. Creating Templates SyAM Software Management Utilities Creating Templates Step 1: Setting Up Folder Paths The Management Utilities utilize a server share to perform centralized network deployment of applications and patches.

More information

TivaWare USB Library USER S GUIDE SW-TM4C-USBL-UG-2.1.1.71. Copyright 2008-2015 Texas Instruments Incorporated

TivaWare USB Library USER S GUIDE SW-TM4C-USBL-UG-2.1.1.71. Copyright 2008-2015 Texas Instruments Incorporated TivaWare USB Library USER S GUIDE SW-TM4C-USBL-UG-2.1.1.71 Copyright 2008-2015 Texas Instruments Incorporated Copyright Copyright 2008-2015 Texas Instruments Incorporated. All rights reserved. Tiva and

More information

Intel Rapid Start Technology User Guide for UEFI Mode

Intel Rapid Start Technology User Guide for UEFI Mode Intel Rapid Start Technology User Guide for UEFI Mode With Intel Rapid Start Technology, your computer can go from being in a very deep-sleep to fully awake in a flash. This responsiveness capability enables

More information

OnDemand Version 1.7. Installation Manual and User s Guide. AST Technology. Sophienstrasse 4 32051 Herford Germany

OnDemand Version 1.7. Installation Manual and User s Guide. AST Technology. Sophienstrasse 4 32051 Herford Germany OnDemand Version 1.7 Installation Manual and User s Guide AST Technology Sophienstrasse 4 32051 Herford Germany Contents Overview of OnDemand Software... 1 System and Software Requirements... 1 CVe Monitor

More information

Providing Patch Management with N-central. Version 9.1

Providing Patch Management with N-central. Version 9.1 Providing Patch Management with N-central Version 9.1 Contents Patch Management 4 Introduction 4 Monitoring for Missing Patches 4 Setting up Patch Management in N-central 5 Adding a WSUS Server to N-central

More information

WARNING!!: Before installing Truecrypt encryption software on your

WARNING!!: Before installing Truecrypt encryption software on your Truecrypt installation and usage guide for Windows XP, 7, Vista and 8 WARNING!!: Before installing Truecrypt encryption software on your computer, you should create an Acronis image back up of your computer

More information

XyLoc Windows7 Client Release Notes

XyLoc Windows7 Client Release Notes Support Information: XyLoc Windows7 Client Release Notes Ensure Technologies Technical Support is available to provide any needed assistance. Please contact us at (734) 547-1631 or at support@ensuretech.com.

More information

Using WMI Scripts with BitDefender Client Security

Using WMI Scripts with BitDefender Client Security Using WMI Scripts with BitDefender Client Security Whitepaper Copyright 2009 BitDefender; Table of Contents 1. Introduction... 3 2. Key Benefits... 4 3. Available WMI Script Templates... 5 4. Operation...

More information

Access to remote DVR from IE USER S MANUAL CONTENT

Access to remote DVR from IE USER S MANUAL CONTENT Access to remote DVR from IE CONTENT... 2 Preface... 2 1. Introduction... 2 2. System requirement and executing environment... 2 2.1. Supported operating System:... 2 2.2. Hardware requirement (recommend):...

More information

IM, Presence, and Contacts

IM, Presence, and Contacts Accept an IM request Click anywhere on the picture display area of the IM request pane. Set or change your presence Presence lets other people see at a glance whether you and your contacts are currently

More information

Hands-On Microsoft Windows Server 2008

Hands-On Microsoft Windows Server 2008 Hands-On Microsoft Windows Server 2008 Chapter 9 Server and Network Monitoring Objectives Understand the importance of server monitoring Monitor server services and solve problems with services Use Task

More information

Deploying Microsoft RemoteFX on a Single Remote Desktop Virtualization Host Server Step-by-Step Guide

Deploying Microsoft RemoteFX on a Single Remote Desktop Virtualization Host Server Step-by-Step Guide Deploying Microsoft RemoteFX on a Single Remote Desktop Virtualization Host Server Step-by-Step Guide Microsoft Corporation Published: October 2010 Abstract This step-by-step guide walks you through the

More information

ivms-4200 Client Software Quick Start Guide V1.02

ivms-4200 Client Software Quick Start Guide V1.02 ivms-4200 Client Software Quick Start Guide V1.02 Contents 1 Description... 2 1.1 Running Environment... 2 1.2 Surveillance System Architecture with an Performance of ivms-4200... 3 2 Starting ivms-4200...

More information

Providing Patch Management With N-central. Version 7.1

Providing Patch Management With N-central. Version 7.1 Providing Patch Management With N-central Version 7.1 Contents Patch Management 3 Introduction 3 Monitoring for Missing Patches 3 Setting up Patch Management in N-central 4 Adding a WSUS Server to N-central

More information

DSD Native DAC Setup Guide

DSD Native DAC Setup Guide CHANNEL D Pure Music DSD Native DAC Setup Guide Release 1.0 Copyright 2012 Channel D www.channel-d.com CHANNEL D Pure Music DSD Native DAC Setup Guide These instructions outline the setup steps required

More information

Lync 2013 Quick Reference Lync Meetings. Join a Lync Meeting. Schedule a Lync Meeting. Do I need a PIN, work number or extension? Set meeting options

Lync 2013 Quick Reference Lync Meetings. Join a Lync Meeting. Schedule a Lync Meeting. Do I need a PIN, work number or extension? Set meeting options Join a Lync Meeting 1. In the meeting request, click Join Lync Meeting or click Join Online in the meeting reminder. 2. On the Join Meeting Audio window, select one of the options: Use Lync (full audio

More information

Intel Management Engine BIOS Extension (Intel MEBX) User s Guide

Intel Management Engine BIOS Extension (Intel MEBX) User s Guide Intel Management Engine BIOS Extension (Intel MEBX) User s Guide User s Guide For systems based on Intel B75 Chipset August 2012 Revision 1.0 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH

More information

Timed Email Organizer User s Manual

Timed Email Organizer User s Manual Timed Email Organizer User s Manual Quick Start Guide... 3 Welcome... 4 Main Rules Window... 5 Status Bar... 6 Close... 6 Save As... 7 Add/Edit Rules... 7 Conditions... 9 Actions... 12 Delete Rules...

More information

Remote Backup Software User Manual V 2.0

Remote Backup Software User Manual V 2.0 Remote Backup Software User Manual V 2.0 Table of Contents Chapter 1 Welcome to Remote Backup Software... 2 1.1 Overview... 2 1.2 Computer Disposition Request... 2 1.3 Convention... 2 Chapter 2 Installing

More information

Developing Algo Trading Applications with SmartQuant Framework The Getting Started Guide. 24.02.2014 SmartQuant Ltd Dr. Anton B.

Developing Algo Trading Applications with SmartQuant Framework The Getting Started Guide. 24.02.2014 SmartQuant Ltd Dr. Anton B. Developing Algo Trading Applications with SmartQuant Framework The Getting Started Guide 24.02.2014 SmartQuant Ltd Dr. Anton B. Fokin Introduction... 3 Prerequisites... 3 Installing SmartQuant Framework...

More information

vtcommander Installing and Starting vtcommander

vtcommander Installing and Starting vtcommander vtcommander vtcommander provides a local graphical user interface (GUI) to manage Hyper-V R2 server. It supports Hyper-V technology on full and core installations of Windows Server 2008 R2 as well as on

More information

Sharing Software. Chapter 14

Sharing Software. Chapter 14 Chapter 14 14 Sharing Software Sharing a tool, like a software application, works differently from sharing a document or presentation. When you share software during a meeting, a sharing window opens automatically

More information

Installation Instruction STATISTICA. Concurrent Network License with Borrowing Domain Based Registration

Installation Instruction STATISTICA. Concurrent Network License with Borrowing Domain Based Registration Installation Instruction STATISTICA Concurrent Network License with Borrowing Domain Based Registration Notes: ❶ The installation of the Concurrent network version entails two parts: a) a server installation,

More information

For Windows XP 64 bit

For Windows XP 64 bit Installation Guide Beta drivers for Windows XP[64], Win 7[32/64bit,], Win 8.1[64bit] This version of Orange-5 software introduces support for 64 bit operational systems (Win XP 64 bit, Win7 64, etc..).

More information

UniFinger Engine SDK Manual (sample) Version 3.0.0

UniFinger Engine SDK Manual (sample) Version 3.0.0 UniFinger Engine SDK Manual (sample) Version 3.0.0 Copyright (C) 2007 Suprema Inc. Table of Contents Table of Contents... 1 Chapter 1. Introduction... 2 Modules... 3 Products... 3 Licensing... 3 Supported

More information

NVMS - 1000 USER MANUAL. Version 2.1.0

NVMS - 1000 USER MANUAL. Version 2.1.0 NVMS - 1000 USER MANUAL Version 2.1.0 Contents 1 Software Introduction... 1 1.1 Summary... 1 1.2 Operation Environment... 1 1.3 Install and Uninstall... 2 1.3.1 Install the Software... 2 1.3.2 Uninstall

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 Microsoft Hyper-V Integration Guide Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty The only warranties

More information

Using GIGABYTE Notebook for the First Time

Using GIGABYTE Notebook for the First Time Congratulations on your purchase of the GIGABYTE Notebook. This manual will help you to get started with setting up your notebook. The final product configuration depends on the model at the point of your

More information

To get started, you will need the following items Product Key Router with firewall capability Network cables

To get started, you will need the following items Product Key Router with firewall capability Network cables Quick Start Guide Windows Small Business Server 2011 Standard Installing Your New Server Depending on how your server came from the manufacturer, your set up steps are slightly different. Follow the instructions

More information

About Parallels Desktop 7 for Mac

About Parallels Desktop 7 for Mac About Parallels Desktop 7 for Mac Parallels Desktop 7 for Mac is a major upgrade to Parallels' award-winning software for running Windows on a Mac. About this Update This update for Parallels Desktop for

More information

Cloud Services. Mozy Backup. User Guide

Cloud Services. Mozy Backup. User Guide Cloud Services Mozy Backup User Guide 10/21/2014 CONTENTS Overview... 2 Installing Mozy... 3 Using the Settings Window... 4 Select Files to Back Up with the File System Tab... 10 Seeing How Much of Your

More information

Understanding offline files

Understanding offline files Understanding offline files Introduction If you've ever needed to access important files stored in a shared folder on your network but couldn't because the network connection was unavailable, then you

More information

NEC Versa Installing the NEC SoftDVD Player

NEC Versa Installing the NEC SoftDVD Player NEC Versa Installing the NEC SoftDVD Player Congratulations on purchasing the NEC Versa DVD-ROM drive with the NEC SoftDVD Player! The DVD-ROM drive features the latest in DVD-ROM technology. It is fully

More information

Using GIGABYTE Notebook for the First Time

Using GIGABYTE Notebook for the First Time P34 V6.0 Congratulations on your purchase of the GIGABYTE Notebook. This manual will help you to get started with setting up your notebook. The final product configuration depends on the model at the point

More information

Using GIGABYTE Notebook for the First Time

Using GIGABYTE Notebook for the First Time Congratulations on your purchase of the GIGABYTE Notebook P7! This Manual will help you to get started with setting up your notebook. For more detailed information, please visit our website at http://www.gigabyte.com.

More information

Ultra Thin Client TC-401 TC-402. Users s Guide

Ultra Thin Client TC-401 TC-402. Users s Guide Ultra Thin Client TC-401 TC-402 Users s Guide CONTENT 1. OVERVIEW... 3 1.1 HARDWARE SPECIFICATION... 3 1.2 SOFTWARE OVERVIEW... 4 1.3 HARDWARE OVERVIEW...5 1.4 NETWORK CONNECTION... 7 2. INSTALLING THE

More information

NxE Information and Configuration Tool Technical Bulletin Code No. LIT-1201990 Software Release 7.0 Issued December 5, 2014

NxE Information and Configuration Tool Technical Bulletin Code No. LIT-1201990 Software Release 7.0 Issued December 5, 2014 Code No. LIT-1201990 Software Release 7.0 Issued December 5, 2014 Refer to the QuickLIT website for the most up-to-date version of this document. Document Introduction...2 Features of the NCT...2 NCT Overview...2

More information

Getting Started with Endurance FTvirtual Server

Getting Started with Endurance FTvirtual Server Getting Started with Endurance FTvirtual Server Marathon Technologies Corporation Fault and Disaster Tolerant Solutions for Windows Environments Release 6.1.1 June 2005 NOTICE Marathon Technologies Corporation

More information

PowerPanel Personal Edition User Manual. User Manual. PowerPanel Personal Edition. Rev. 6 2012/02/24

PowerPanel Personal Edition User Manual. User Manual. PowerPanel Personal Edition. Rev. 6 2012/02/24 User Manual PowerPanel Personal Edition Rev. 6 2012/02/24 ELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL PERSONAL EDITION NOTICE TO USER: THIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE

More information

Getting Started with WebEx Access Anywhere

Getting Started with WebEx Access Anywhere Getting Started with WebEx Access Anywhere This guide provides basic instructions to help you start using WebEx Access Anywhere quickly. This guide assumes that you have a user account on your meeting

More information

BillQuick Agent 2010 Getting Started Guide

BillQuick Agent 2010 Getting Started Guide Time Billing and Project Management Software Built With Your Industry Knowledge BillQuick Agent 2010 Getting Started Guide BQE Software, Inc. 2601 Airport Drive Suite 380 Torrance CA 90505 Support: (310)

More information

GeoVision Setup. Once all the settings for Windows are completed and you have all the hard drives setup you can install GeoVision.

GeoVision Setup. Once all the settings for Windows are completed and you have all the hard drives setup you can install GeoVision. GeoVision Setup Once all the settings for Windows are completed and you have all the hard drives setup you can install GeoVision. Start in order beginning with the drivers. When you install the drivers

More information

ENLTV-FM3. PCI TV Tuner Adapter with FM Radio. User s Guide

ENLTV-FM3. PCI TV Tuner Adapter with FM Radio. User s Guide ENLTV-FM3 PCI TV Tuner Adapter with FM Radio User s Guide User s Notice No part of this manual, including the products and software described in it, may be reproduced, transmitted, transcribed, stored

More information

RedundancyMaster Help. 2014 Kepware Technologies

RedundancyMaster Help. 2014 Kepware Technologies 2014 Kepware Technologies 2 RedundancyMaster Help Table of Contents Table of Contents 2 Introduction 4 System Requirements 10 Accessing the Administration Menu 11 Setting Up Redundancy 11 Adding Redundancy

More information

SyncBreeze FILE SYNCHRONIZATION. User Manual. Version 7.7. Aug 2015. www.syncbreeze.com info@flexense.com. Flexense Ltd.

SyncBreeze FILE SYNCHRONIZATION. User Manual. Version 7.7. Aug 2015. www.syncbreeze.com info@flexense.com. Flexense Ltd. SyncBreeze FILE SYNCHRONIZATION User Manual Version 7.7 Aug 2015 www.syncbreeze.com info@flexense.com 1 1 SyncBreeze Overview...3 2 SyncBreeze Product Versions...5 3 Product Installation Procedure...6

More information

BlazeVideo HDTV Player v6.0r User s Manual. Table of Contents

BlazeVideo HDTV Player v6.0r User s Manual. Table of Contents BlazeVideo HDTV Player v6.0r User s Manual Table of Contents Ⅰ. Overview... 2 1.1 Introduction... 2 1.2 Features... 2 1.3 System Requirements... 2 Ⅱ. Appearance & Menus... 4 Ⅲ. Operation Guide... 7 3.1

More information

Push2TV Wireless Display Adapter

Push2TV Wireless Display Adapter Push2TV Wireless Display Adapter User Manual Model: PTV3000 April 2013 202-11063-01 350 East Plumeria Drive San Jose, CA 95134 USA Support Thank you for choosing NETGEAR. After installing your device,

More information

13 Managing Devices. Your computer is an assembly of many components from different manufacturers. LESSON OBJECTIVES

13 Managing Devices. Your computer is an assembly of many components from different manufacturers. LESSON OBJECTIVES LESSON 13 Managing Devices OBJECTIVES After completing this lesson, you will be able to: 1. Open System Properties. 2. Use Device Manager. 3. Understand hardware profiles. 4. Set performance options. Estimated

More information

Aqua Accelerated Protocol (AAP) For Mac User Manual

Aqua Accelerated Protocol (AAP) For Mac User Manual Aqua Accelerated Protocol (AAP) For Mac User Manual Table of Contents About Aqua Accelerated Protocol...3 System Requirements... 4 Hardware (Client)... 4 Hardware (Server Connecting to)... 4 Software (AAP

More information

USER GUIDE WEB-BASED SYSTEM CONTROL APPLICATION. www.pesa.com August 2014 Phone: 256.726.9200. Publication: 81-9059-0703-0, Rev. C

USER GUIDE WEB-BASED SYSTEM CONTROL APPLICATION. www.pesa.com August 2014 Phone: 256.726.9200. Publication: 81-9059-0703-0, Rev. C USER GUIDE WEB-BASED SYSTEM CONTROL APPLICATION Publication: 81-9059-0703-0, Rev. C www.pesa.com Phone: 256.726.9200 Thank You for Choosing PESA!! We appreciate your confidence in our products. PESA produces

More information

Drive encryption with Microsoft BitLocker

Drive encryption with Microsoft BitLocker Drive encryption with Microsoft BitLocker 1 General informations... 2 1.1 What is BitLocker?... 2 1.2 For who is BitLocker?... 2 1.3 Possible authentication features... 2 1.4 Security features... 2 2 Configuration...

More information

Lenovo Miix 2 8. User Guide. Read the safety notices and important tips in the included manuals before using your computer.

Lenovo Miix 2 8. User Guide. Read the safety notices and important tips in the included manuals before using your computer. Lenovo Miix 2 8 User Guide Read the safety notices and important tips in the included manuals before using your computer. Notes Before using the product, be sure to read Lenovo Safety and General Information

More information

Fleet Maintenance Software

Fleet Maintenance Software Fleet Maintenance Software Welcome Thank you for taking time to review FleetWise VB Maintenance Management Made Simple. This guide is intended to provide a quick overview of installing the software and

More information

C6 Easy Imaging Total Computer Backup. User Guide

C6 Easy Imaging Total Computer Backup. User Guide C6 Easy Imaging Total Computer Backup User Guide Clickfree and the Clickfree logo are trademarks or registered trademarks of Storage Appliance Corporation. Other product names used in this guide are recognized

More information

HP EliteBook and ProBook Notebook PCs - Upgrading from Windows 7 to Windows 8

HP EliteBook and ProBook Notebook PCs - Upgrading from Windows 7 to Windows 8 HP EliteBook and ProBook Notebook PCs - Upgrading from Windows 7 to Windows 8 This document pertains to HP business notebook computers to be upgraded from Windows 7 using a digital copy of Windows 8. You

More information

Gigabyte Management Console User s Guide (For ASPEED AST 2400 Chipset)

Gigabyte Management Console User s Guide (For ASPEED AST 2400 Chipset) Gigabyte Management Console User s Guide (For ASPEED AST 2400 Chipset) Version: 1.4 Table of Contents Using Your Gigabyte Management Console... 3 Gigabyte Management Console Key Features and Functions...

More information

Simple Computer Backup

Simple Computer Backup Title: Simple Computer Backup (Win 7 and 8) Author: Nancy DeMarte Date Created: 11/10/13 Date(s) Revised: 1/20/15 Simple Computer Backup This tutorial includes these methods of backing up your PC files:

More information

ZENworks 11 Support Pack 4 Full Disk Encryption Agent Reference. May 2016

ZENworks 11 Support Pack 4 Full Disk Encryption Agent Reference. May 2016 ZENworks 11 Support Pack 4 Full Disk Encryption Agent Reference May 2016 Legal Notice For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions, U.S. Government

More information

KCU-02 Monitor. Software Installation User Manual. For Windows XP and Windows 7

KCU-02 Monitor. Software Installation User Manual. For Windows XP and Windows 7 KCU-02 Monitor Software Installation User Manual For Windows XP and Windows 7 Headquarters : No.3, Lane 201, Chien Fu ST., Chyan Jenn Dist., Kaohsiung, TAIWAN Tel : + 886-7-8121771 Fax : + 886-7-8121775

More information

Practice Fusion API Client Installation Guide for Windows

Practice Fusion API Client Installation Guide for Windows Practice Fusion API Client Installation Guide for Windows Quickly and easily connect your Results Information System with Practice Fusion s Electronic Health Record (EHR) System Table of Contents Introduction

More information

About This Guide... 4. Signature Manager Outlook Edition Overview... 5

About This Guide... 4. Signature Manager Outlook Edition Overview... 5 Contents About This Guide... 4 Signature Manager Outlook Edition Overview... 5 How does it work?... 5 But That's Not All...... 6 And There's More...... 6 Licensing... 7 Licensing Information... 7 System

More information

WebEx Meeting Center User's Guide

WebEx Meeting Center User's Guide WebEx Meeting Center User's Guide Table of Contents Accessing WebEx... 3 Choosing the scheduler that works for you... 6 About the Quick Scheduler Page... 6 About the Advanced Scheduler... 8 Editing a scheduled

More information

Using AORUS Notebook for the First Time

Using AORUS Notebook for the First Time V2.0 Congratulations on your purchase of the AORUS Notebook! This Manual will help you to get started with setting up your notebook. For more detailed information, please visit our website at http://www.aorus.com.

More information

Using RAID Admin and Disk Utility

Using RAID Admin and Disk Utility Using RAID Admin and Disk Utility Xserve RAID Includes instructions for creating RAID arrays and monitoring Xserve RAID systems K Apple Computer, Inc. 2003 Apple Computer, Inc. All rights reserved. Under

More information

Getting Started. Document Overview. What is Faronics Power Save? Installation Process

Getting Started. Document Overview. What is Faronics Power Save? Installation Process Document Overview This document provides step-by-step instructions for installing Faronics Power Save on a single segment Local Area Network. Following these instructions will allow you to have Power Save

More information

Integrated Virtual Debugger for Visual Studio Developer s Guide VMware Workstation 8.0

Integrated Virtual Debugger for Visual Studio Developer s Guide VMware Workstation 8.0 Integrated Virtual Debugger for Visual Studio Developer s Guide VMware Workstation 8.0 This document supports the version of each product listed and supports all subsequent versions until the document

More information

Intel System Event Log (SEL) Viewer Utility

Intel System Event Log (SEL) Viewer Utility Intel System Event Log (SEL) Viewer Utility User Guide Document No. E12461-007 Legal Statements INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS FOR THE GENERAL PURPOSE OF SUPPORTING

More information

Windows Operating Systems. Basic Security

Windows Operating Systems. Basic Security Windows Operating Systems Basic Security Objectives Explain Windows Operating System (OS) common configurations Recognize OS related threats Apply major steps in securing the OS Windows Operating System

More information

Using GIGABYTE Notebook for the First Time

Using GIGABYTE Notebook for the First Time P55 V3.0 Congratulations on your purchase of the GIGABYTE Notebook. This manual will help you to get started with setting up your notebook. The final product configuration depends on the model at the point

More information

VMware Horizon FLEX User Guide

VMware Horizon FLEX User Guide Horizon FLEX 1.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of this

More information

ImagineWorldClient Client Management Software. User s Manual. (Revision-2)

ImagineWorldClient Client Management Software. User s Manual. (Revision-2) ImagineWorldClient Client Management Software User s Manual (Revision-2) (888) 379-2666 US Toll Free (905) 336-9665 Phone (905) 336-9662 Fax www.videotransmitters.com 1 Contents 1. CMS SOFTWARE FEATURES...4

More information

ViewPower. User s Manual. Management Software for Uninterruptible Power Supply Systems

ViewPower. User s Manual. Management Software for Uninterruptible Power Supply Systems ViewPower User s Manual Management Software for Uninterruptible Power Supply Systems Table of Contents 1. ViewPower Overview... 2 1.1. Introduction...2 1.2. Structure...2 1.3. Applications...2 1.4. Features...2

More information

Use Remote Desktop capabilities to Access your Work PC from home over VPN

Use Remote Desktop capabilities to Access your Work PC from home over VPN Use Remote Desktop capabilities to Access your Work PC from home over VPN With Remote Desktop on Windows XP Professional, you can have access to a Windows session that is running on your computer when

More information

Local Playback Software User Manual (V2.0)

Local Playback Software User Manual (V2.0) User Manual (V2.0) Thank you for purchasing our product. This manual applies to Local Playback software, please read it carefully for the better use of this software. The contents in this manual are subject

More information

QBalance.com. We make QuickBooks work for you. Call Toll-Free: (800) 216-0763. Congratulations! You are using the best accounting software available!

QBalance.com. We make QuickBooks work for you. Call Toll-Free: (800) 216-0763. Congratulations! You are using the best accounting software available! QBalance.com We make QuickBooks work for you CPA Call Toll-Free: (800) 216-0763 Congratulations! You are using the best accounting software available! But: you may be one of the 75% of all QuickBooks installations

More information

Sophos SafeGuard Disk Encryption, Sophos SafeGuard Easy Demo guide

Sophos SafeGuard Disk Encryption, Sophos SafeGuard Easy Demo guide Sophos SafeGuard Disk Encryption, Sophos SafeGuard Easy Demo guide Product version: 5.60 Document date: April 2011 Contents 1 Introduction...3 2 Requirements...5 3 The demo configuration package...6 4

More information

Iridium Extreme TM Satellite Phone. Data Services Manual

Iridium Extreme TM Satellite Phone. Data Services Manual Iridium Extreme TM Satellite Phone Data Services Manual Table of Contents 1 OVERVIEW... 1 2 HOW IT WORKS... 1 3 BEFORE INSTALLING... 2 4 USB DRIVER INSTALLATION... 3 5 MODEM INSTALLATION AND CONFIGURATION...

More information

Installing LearningBay Enterprise Part 2

Installing LearningBay Enterprise Part 2 Installing LearningBay Enterprise Part 2 Support Document Copyright 2012 Axiom. All Rights Reserved. Page 1 Please note that this document is one of three that details the process for installing LearningBay

More information

Important Notes for WinConnect Server ES Software Installation:

Important Notes for WinConnect Server ES Software Installation: Important Notes for WinConnect Server ES Software Installation: 1. Only Windows 8/8.1 Enterprise, Windows 8/8.1 Professional (32-bit & 64-bit) or Windows Server 2012 (64-bit) or Windows Server 2012 Foundation

More information

DigiDelivery Client Quick Start

DigiDelivery Client Quick Start DigiDelivery Client Quick Start Installing the DigiDelivery Client To download and install the DigiDelivery client software: 1 Launch your Web browser and navigate to www.digidesign.com/digidelivery/clients.

More information

Updating Your Firmware

Updating Your Firmware Updating Your Firmware WARNING: This firmware update is only valid for OCZ VERTEX Solid State Drives Flashing your Vertex will result in complete data loss. Please back up your drive before proceeding

More information

System Monitoring and Diagnostics Guide for Siebel Business Applications. Version 7.8 April 2005

System Monitoring and Diagnostics Guide for Siebel Business Applications. Version 7.8 April 2005 System Monitoring and Diagnostics Guide for Siebel Business Applications April 2005 Siebel Systems, Inc., 2207 Bridgepointe Parkway, San Mateo, CA 94404 Copyright 2005 Siebel Systems, Inc. All rights reserved.

More information

One step login. Solutions:

One step login. Solutions: Many Lotus customers use Lotus messaging and/or applications on Windows and manage Microsoft server/client environment via Microsoft Active Directory. There are two important business requirements in this

More information

AXIS Camera Station Quick Installation Guide

AXIS Camera Station Quick Installation Guide AXIS Camera Station Quick Installation Guide Copyright Axis Communications AB April 2005 Rev. 3.5 Part Number 23997 1 Table of Contents Regulatory Information.................................. 3 AXIS Camera

More information

SMART Classroom Suite 2011

SMART Classroom Suite 2011 SMART Classroom Suite 2011 Windows operating systems System administrator s guide Trademark notice SMART Board, SMART Classroom Suite, SMART Notebook, SMART Response, SMART Sync, SMART Document Camera,

More information

PowerPanel Personal Edition User Manual. User Manual. PowerPanel Personal Edition. Rev. 9 2015/12/2

PowerPanel Personal Edition User Manual. User Manual. PowerPanel Personal Edition. Rev. 9 2015/12/2 User Manual PowerPanel Personal Edition Rev. 9 2015/12/2 ELECTRONIC END USER LICENSE AGREEMENT FOR CYBERPOWER POWERPANEL PERSONAL EDITION NOTICE TO USER: THIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE

More information

Livestream Studio. Release Notes & New Features!!! For use with Livestream Studio version 3.0.0. Published on April 13, 2015

Livestream Studio. Release Notes & New Features!!! For use with Livestream Studio version 3.0.0. Published on April 13, 2015 Livestream Studio! Release Notes & New Features!!! For use with Livestream Studio version 3.0.0! Published on April 13, 2015 Table of Contents 1. Release notes 2. 4K/UHD and low definition project formats

More information