Intel Active Management Technology Release 1.0 Host Interface Design Guide

Size: px
Start display at page:

Download "Intel Active Management Technology Release 1.0 Host Interface Design Guide"

Transcription

1 Intel Active Management Technology Release 1.0 Host Interface Design Guide Version February 2008

2 Information in this document is provided in connection with Intel products. No license, express or implied, by estoppels or otherwise, to any intellectual property rights is granted by this document. Except as provided in Intel s Terms and Conditions of Sale for such products, Intel assumes no liability whatsoever, and Intel disclaims any express or implied warranty, relating to sale and/or use of Intel products including liability or warranties relating to fitness for a particular purpose, merchantability, or infringement of any patent, copyright or other intellectual property right. Intel products are not intended for use in medical, life saving, or life sustaining applications. Intel may make changes to specifications and product descriptions at any time, without notice. The API and software may contain design defects or errors known as errata which may cause the product to deviate from published specifications. Current characterized errata are available on request. This document and the software described in it are furnished under license and may only be used or copied in accordance with the terms of the license. The information in this document is furnished for informational use only, is subject to change without notice, and should not be construed as a commitment by Intel Corporation. Intel Corporation assumes no responsibility or liability for any errors or inaccuracies that may appear in this document or any software that may be provided in association with this document. Except as permitted by such license, no part of this document may be reproduced, stored in a retrieval system, or transmitted in any form or by any means without the express written consent of Intel Corporation. Contact your local Intel sales office or your distributor to obtain the latest specifications and before placing your product order. Copies of documents which have an ordering number and are referenced in this document or other Intel literature may be obtained by calling or by visiting Intel s website at Copyright Intel Corporation. All rights reserved. * Third party other names and brands may be claimed as the property of others. 2

3 1 Introduction This document describes the Intel Active Management Technology (Intel AMT) Release 1.0 Host Information Interface APIs, which are provided to Independent Software Vendors (ISV) for their applications. These APIs allow an ISV application to collect information about Intel AMT in the OS-present state. These APIs do not operate through the Intel-provided storage library, but do require the presence of the Keyboard Controller Style (KCS) driver (Intel AMT Release 1.0) or the Intel Management Engine Interface (Intel AMT Release 2.0) driver in order to function. The KCS driver operates on either a Windows or a Linux platform, while the Intel Management Engine Interface driver is compatible only with Windows. Moreover, these APIs are designed to operate only on a local system; there is no provision for a remote method of invocation. NOTE: This interface is an Intel AMT Release 1.0 interface. It is supported for Intel AMT Release 2.0 or later releases only when configured for Legacy Mode. For interfaces supported by Intel AMT Release 2.0 and later releases refer to the Network Interface Guide. 2 ISV Application ISVs can use these APIs to provide configuration information for Intel AMT-enabled hardware. Throughout this document, the ISV application is local. Interfacing with the ISV application is accomplished via a C language based-api (C-API) interface. The code for the C-API is provided as sample code for ISVs and the code can be used in its entirety in ISV applications without additional licensing. The interface was chosen so as to enhance portability regarding any OSspecific mechanisms, such as COM or WMI. Note: In the Windows implementation, COM is used and should be initialized by the calling application. Note: If an ISV application links both with the Host Information interface and with the Storage Library, perform the following so that linker errors do not occur: For a Windows application, in Visual Studio.NET, go to Project properties->linker->input- >Ignore Specific Library field and type LIBCD.lib (for debug version) or LIBC.lib (for release version) For a Linux application, compile the application with a lssl flag. 3 Function and Data Types Naming Input: Input parameters in API functions Output: Output parameters in API functions Input/Output: Input/Output parameters in API functions. A fixed-width font is used to distinguish pseudo-code from other text. 3.1 PT_ Data Types Prefix All Data Types prefixed with PT_ describe general Intel AMT data types. 3.2 CFG_ Data Types Prefix All Data Types prefixed with CFG_ describe general Intel AMT data types. 3

4 3.3 PTSDK_ Data Types Prefix All Data Types prefixed with PTSDK_ describe specific data types used by the Host Information API. 3.4 Data Structures PT_VERSION_TYPE PT_VERSION_TYPE represents the version of Intel AMT firmware component. typedef struct _PT_VERSION_TYPE PT_UNICODE_STRING Description; PT_UNICODE_STRING Version; } PT_VERSION_TYPE; Description Version The firmware component description string. The string that contains the firmware component version. Notes: Version defined as an at-most 11-byte long null terminated string, with three groups of numbers, separated by periods as follows: "X.Y.Z", where: X major version (at most two characters). Y minor version (at most two characters). Z micro version (at most four characters). For forward compatibility, each version string will be accompanied by a description string and a counter signifying the actual number of versions returned. See the following table: Version type ROM Flash (NetStack + AMTApps + Patches) Netstack AMTApps Patch1 Patch2 Description string "ROM" Flash "Netstack" "AMTApps" "Patch1" "Patch2" CODE_VERSIONS CODE_VERSION represents a list of versions of all Intel AMT firmware components and the BIOS version. typedef struct _CODE_VERSIONS UINT8 BiosVersion[65]; UINT32 VersionsCount; PT_VERSION_TYPE Versions[6]; } CODE_VERSIONS; 4

5 BiosVersion Version of BIOS. This is defined by [SMBIOS] as a free format string of 64 bytes. VersionsCount The number of component versions. Versions Array of component versions SECURITY_PARAMS SECURITY_PARAMS represents a list of relevant configurations of Intel AMT firmware. typedef struct _SECURITY_PARAMS PT_BOOLEAN EnterpriseMode; PT_BOOLEAN TLSEnabled; PT_BOOLEAN HWCryptoEnabled; PT_PROVISIONING_STATE ProvisioningState; PT_BOOLEAN NetworkInterfaceEnabled; PT_BOOLEAN SOLEnabled; PT_BOOLEAN IDEREnabled; PT_BOOLEAN FWUpdateEnabled; PT_BOOLEAN LinkIsUp; } SECURITY_PARAMS; EnterpriseMode TLSEnabled HWCryptoEnabled ProvisioningState NetworkInterfaceEnabled SOLEnabled IDEREnabled FWUpdateEnabled LinkIsUp TRUE Intel AMT is in Enterprise mode; FALSE SMB. TRUE TLS enabled; FALSE TLS disabled. TRUE Crypto fuse is burned, FALSE crypto fuse is not burned (no HW crypto). Indicated configuration state (according to ENUM). TRUE network interface enabled; FALSE network interface disabled. TRUE SOL device enabled; FALSE SOL device disabled. TRUE IDER device enabled; FALSE IDER device disabled. TRUE FWUpdate feature enabled; FALSE FWUpdate feature disabled. TRUE Link is up; FALSE Link is down IDER_SESSION_LOG IDER_SESSION_LOG represents a cyclic list of up to 16 entries of IDER sessions. typedef struct _IDER_SESSION_LOG CFG_IDER_SESSION_LOG_ENTRY LogData[16]; PT_BOOLEAN WrapAround; UINT8 Index; } IDER_SESSION_LOG; LogData Hold the last 16 records of opened IDER sessions. 5

6 WrapAround Index TRUE indicates that there were more than 16 IDER sessions, and that the log contains only the last 16. FALSE there were less than 17 IDER sessions. Index - points to the last valid entry +1. If the WrapAround flag is FALSE, then the valid entries in the log are 0 to Index 1. If the WrpaAround flag is TRUE, the valid entries are from Index to 15 and from 0 to Index CFG_IDER_SESSION_LOG_ENTRY CFG_IDER_SESSION_LOG_ENTRY represents a list of up to 16 entries of IDER sessions. typedef struct _CFG_IDER_SESSION_LOG_ENTRY CFG_IPv4_ADDRESS ConsoleAddress; CFG_TIMESTAMP TimeStamp; CFG_TCPIP_PORT Port; } CFG_IDER_SESSION_LOG_ENTRY; ConsoleAddress TimeStamp Port Remote console IP address. Timestamp (when session opened) Remote console TCP port. Note: Empty entries will have Timestamp = 0x0. IDER session log timestamp may not be set (Example: if the AMTBx BIOS extension is not enabled) CFG_TIMESTAMP CFG_TIMESTAMP represents the number of seconds elapsed since 00:00 hours, Jan 1, 1970 UTC according the clock set into Intel AMT by the BIOS. typedef UINT32 CFG_TIMESTAMP; CFG_TCPIP_PORT CFG_TCPIP_PORT represent TCP port. typedef UINT16 CFG_TCPIP_PORT; CFG_IPv4_ADDRESS CFG_IPv4_ADDRESS represents IP version 4 addresses. Addresses are represented per [IP] i.e. value: 0x maps to IP address: typedef UINT32 CFG_IPv4_ADDRESS; PT_PROVISIONING_STATE PT_PROVISIONING_STATE represents the configuration mode of Intel AMT firmware. 6

7 typedef enum _PT_PROVISIONING_STATE PROVISIONING_STATE_PRE = 0, PROVISIONING_STATE_IN = 1, PROVISIONING_STATE_POST = 2, } PT_PROVISIONING_STATE; PROVISIONING_STATE_PRE PROVISIONING_STATE_IN PROVISIONING_STATE_POST Factory Setup Mode Setup Mode Operational Mode PT_UNICODE_STRING PT_UNICODE_STRING represents a Unicode string in UTF-8 format. Unicode strings are used by Intel AMT to describe Version type and Version description. typedef struct _PT_UNICODE_STRING UINT16 Length; UINT8 String[20]; } PT_UNICODE_STRING; Length String The length in bytes of the string stored in String. Length does not include the trailing NULL, if exists. The buffer used to contain an array of characters PT_BOOLEAN PT_BOOLEAN defined to represent Boolean values true and false. typedef UINT32 PT_BOOLEAN; const PT_BOOLEAN PT_FALSE = 0; const PT_BOOLEAN PT_TRUE = 1; PT_FALSE PT_TRUE Boolean False. Boolean True PT_STATUS PT_STATUS defines status codes that are returned by the Host Information API calls. typedef UINT32 PT_STATUS; static const PT_STATUS PT_STATUS_SUCCESS = 0; static const PT_STATUS PT_STATUS_INTERNAL_ERROR = 0x0001; static const PT_STATUS PT_STATUS_INVALID_MESSAGE_LENGTH = 0x0004; static const PT_STATUS PTSDK_STATUS_INTERNAL_ERROR = 0x1000; static const PT_STATUS PTSDK_STATUS_INVALID_PARAM = 0x1003; static const PT_STATUS PTSDK_STATUS_RESOURCES = 0x1004; 7

8 static const PT_STATUS PTSDK_STATUS_HARDWARE_ACCESS_ERROR = 0x1005; Error s Unless stated otherwise each function call can return the following error codes: PT_STATUS_SUCCESS PT_STATUS_INTERNAL_ERROR PT_STATUS_INVALID_MESSAGE_LENGTH PTSDK_STATUS_INTERNAL_ERROR PTSDK_STATUS_HARDWARE_ACCESS_ERROR PTSDK_STATUS_RESOURCES PTSDK_STATUS_INVALID_PARAM The requested operation was successfully executed. Intel AMT has identified an internal HW error. Length field of header is invalid. An internal Host Information API error occurred. The Host Information has identified a HW Internal error. This can include: Intel AMT not preset, Intel Management Engine Interface or KCS driver not loaded, or version of Intel AMT that doesn t identify this command. The Host Information API could not allocate sufficient resources to complete the operation. One of the parameters is invalid (usually indicates a NULL) 3.5 Host Information API GetSecurityParameters GetSecurityParameters is called by the ISV application to retrieve a list of the current security settings and other relevant configurations parameters: Mode of operation (SMB / Enterprise) TLS state (Enabled / Disabled) Crypto enable fuse state (Enabled / Disabled) Provisioning state (Factory Setup Mode, Setup Mode, Operational Mode) Network interface (Enabled / Disabled) IDER state (Enabled / Disabled) SOL state (Enabled / Disabled) FW Update (Enabled / Disabled) Link state (Connected / Disconnected) PT_STATUS GetSecurityParameters(SECURITY_PARAMS *securityparams); Function Parameters Parameters Input/output Description securityparams Input/Output Input. The pointer to the pre-allocated SECURITY_PARAMS structure. Output. The structure, containing the current Intel AMT firmware configuration parameters. 8

9 Function Return Status PT_STATUS_SUCCESS PT_STATUS_INTERNAL_ERROR PT_STATUS_INVALID_MESSAGE_LENGTH PTSDK_STATUS_INTERNAL_ERROR PTSDK_STATUS_HARDWARE_ACCESS_ERROR PTSDK_STATUS_RESOURCES PTSDK_STATUS_INVALID_PARAM The requested operation was successfully executed. Intel AMT has identified an internal HW error. Length field of header is invalid. An internal Host Information API error occurred. The Host Information has identified a HW Internal error. This can include: Intel AMT not preset, Intel Management Engine Interface driver or KCS driver not loaded, or version of Intel AMT that doesn t identify this command. The Host Information API could not allocate sufficient resources to complete the operation. One of the parameters is invalid (usually indicates a NULL) GetVersions GetVersions is called by the ISV application to retrieve a list of versions of Intel AMT firmware components and the BIOS version. PT_STATUS GetVersions (CODE_VERSIONS *codeversions); Function Parameters Parameters Input/output Description codeversions Input/Output Input. The pointer to the pre-allocated CODE_VERSIONS structure. Output. The structure, containing a list of versions of Intel AMT firmware components and the BIOS version. Function Return Status PT_STATUS_SUCCESS PT_STATUS_INTERNAL_ERROR PT_STATUS_INVALID_MESSAGE_LENGTH PTSDK_STATUS_INTERNAL_ERROR PTSDK_STATUS_HARDWARE_ACCESS_ERROR PTSDK_STATUS_RESOURCES The requested operation was successfully executed. Intel AMT has identified an internal HW error. Length field of header is invalid. An internal Host Information API error occurred. The Host Information API has identified a HW Internal error. This can include: Intel AMT not preset, Intel Management Engine Interface driver or KCS driver not loaded, or version of Intel AMT that doesn t identify this command. The Host Information API could not allocate sufficient resources to complete the operation. 9

10 PTSDK_STATUS_INVALID_PARAM One of the parameters is invalid (usually indicates a NULL) GetIderSessionLog GetVersions is called by the ISV application to retrieve the IDER session log. PT_STATUS GetIderSessionLog(IDER_SESSION_LOG *idersessionlog); Function Parameters Parameters Input/output Description idersessionlog Input/Output Input. The pointer to the pre-allocated IDER_SESSION_LOG structure. Output. The structure, containing a cyclic list of up to 16 entries of IDER sessions. Function Return Status PT_STATUS_SUCCESS PT_STATUS_INTERNAL_ERROR PT_STATUS_INVALID_MESSAGE_LENGTH PTSDK_STATUS_INTERNAL_ERROR PTSDK_STATUS_HARDWARE_ACCESS_ERROR PTSDK_STATUS_RESOURCES PTSDK_STATUS_INVALID_PARAM The requested operation was successfully executed. Intel AMT has identified an internal HW error. Length field of header is invalid. An internal Host Information API error occurred. The Host Information API has identified a HW Internal error. This can include: Intel AMT not preset, Intel Management Engine Interface driver or KCS driver not loaded, or version of Intel AMT that doesn t identify this command. The Host Information API could not allocate sufficient resources to complete the operation. One of the parameters is invalid (usually indicates a NULL) 4 Reference Documents The following documents are companion and supporting specifications for the Host Information API: Document Description [IP] IETF RFC 791 [SMBIOS] System Management BIOS (SMBIOS) Reference Specification, v2.3.4, December 6,

Intel Setup and Configuration Service. (Lightweight)

Intel Setup and Configuration Service. (Lightweight) Intel Setup and Configuration Service (Lightweight) Release Notes Version 6.0 (Technology Preview #3) Document Release Date: August 30, 2009 Information in this document is provided in connection with

More information

Intel Setup and Configuration Service Lite

Intel Setup and Configuration Service Lite Intel Setup and Configuration Service Lite Release Notes Version 6.0 Document Release Date: February 4, 2010 Information in this document is provided in connection with Intel products. No license, express

More information

Intel Education Theft Deterrent Release Note WW16'14. August 2014

Intel Education Theft Deterrent Release Note WW16'14. August 2014 Intel Education Theft Deterrent Release Note WW16'14 August 2014 Legal Notices Information in this document is provided in connection with Intel products. No license, express or implied, by estoppels

More information

Intel Platform Administration Technology Quick Start Guide

Intel Platform Administration Technology Quick Start Guide Intel Platform Administration Technology Quick Start Guide 320014-003US This document explains how to get started with core features of Intel Platform Administration Technology (Intel PAT). After reading

More information

Intel vpro Technology Virtual Seminar 2010

Intel vpro Technology Virtual Seminar 2010 Intel Software Network Connecting Developers. Building Community. Intel vpro Technology Virtual Seminar 2010 Getting to know Intel Active Management Technology 6.0 Remote Encryption Management Andy Schiestl

More information

Intel Manageability Commander User Guide

Intel Manageability Commander User Guide Intel Manageability Commander User Guide Document Release Date: October 27, 2016 Legal Information INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED,

More information

Event Service API for Windows Operating Systems

Event Service API for Windows Operating Systems Event Service API for Windows Operating Systems Programming Guide October 2005 05-1918-003 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED, BY

More information

IEEE1588 Frequently Asked Questions (FAQs)

IEEE1588 Frequently Asked Questions (FAQs) IEEE1588 Frequently Asked Questions (FAQs) LAN Access Division December 2011 Revision 1.0 Legal INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED,

More information

Intel Desktop Board DZ68DB

Intel Desktop Board DZ68DB Intel Desktop Board DZ68DB Specification Update April 2011 Part Number: G31558-001 The Intel Desktop Board DZ68DB may contain design defects or errors known as errata, which may cause the product to deviate

More information

Intel Desktop Board D945GCLF2

Intel Desktop Board D945GCLF2 Intel Desktop Board D945GCLF2 Specification Update July 2010 Order Number: E54886-006US The Intel Desktop Board D945GCLF2 may contain design defects or errors known as errata, which may cause the product

More information

GUID Partition Table (GPT)

GUID Partition Table (GPT) GUID Partition Table (GPT) How to install an Operating System (OS) using the GUID Disk Partition Table (GPT) on an Intel Hardware RAID (HWR) Array under uefi environment. Revision 1.0 December, 2009 Enterprise

More information

Software Evaluation Guide for ImTOO* YouTube* to ipod* Converter Downloading YouTube videos to your ipod

Software Evaluation Guide for ImTOO* YouTube* to ipod* Converter Downloading YouTube videos to your ipod Software Evaluation Guide for ImTOO* YouTube* to ipod* Converter Downloading YouTube videos to your ipod http://www.intel.com/performance/resources Version 2008-09 Rev. 1.0 Information in this document

More information

Intel Server Compute Blade SBX82

Intel Server Compute Blade SBX82 Intel Server Compute Blade SBX82 Specification Update Intel Order Number D17793-010 December, 2005 Enterprise Platforms and Services Marketing December, 2005 Intel Server Compute Blade SBX82 Specification

More information

Intel Server Board S2600CW2S

Intel Server Board S2600CW2S Redhat* Testing Services Enterprise Platforms and Services Division Intel Server Board S2600CW2S Server Test Submission (STS) Report For Redhat* Certification Rev 1.0 This report describes the Intel Server

More information

Intel Cache Acceleration Software for Windows* Workstation

Intel Cache Acceleration Software for Windows* Workstation Intel Cache Acceleration Software for Windows* Workstation Release 3.1 Release Notes July 8, 2016 Revision 1.3 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS

More information

Using Tasking to Scale Game Engine Systems

Using Tasking to Scale Game Engine Systems Using Tasking to Scale Game Engine Systems Yannis Minadakis March 2011 Intel Corporation 2 Introduction Desktop gaming systems with 6 cores and 12 hardware threads have been on the market for some time

More information

LED Manager for Intel NUC

LED Manager for Intel NUC LED Manager for Intel NUC User Guide Version 1.0.0 March 14, 2018 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED, BY ESTOPPEL OR OTHERWISE, TO

More information

Intel Stereo 3D SDK Developer s Guide. Alpha Release

Intel Stereo 3D SDK Developer s Guide. Alpha Release Intel Stereo 3D SDK Developer s Guide Alpha Release Contents Why Intel Stereo 3D SDK?... 3 HW and SW requirements... 3 Intel Stereo 3D SDK samples... 3 Developing Intel Stereo 3D SDK Applications... 4

More information

Intel Atom Processor E3800 Product Family Development Kit Based on Intel Intelligent System Extended (ISX) Form Factor Reference Design

Intel Atom Processor E3800 Product Family Development Kit Based on Intel Intelligent System Extended (ISX) Form Factor Reference Design Intel Atom Processor E3800 Product Family Development Kit Based on Intel Intelligent System Extended (ISX) Form Factor Reference Design Quick Start Guide March 2014 Document Number: 330217-002 Legal Lines

More information

TLBs, Paging-Structure Caches, and Their Invalidation

TLBs, Paging-Structure Caches, and Their Invalidation TLBs, Paging-Structure Caches, and Their Invalidation Application Note April 2007 Document Number: 317080-001 Legal Statements INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS.

More information

Lenovo ThinkCentre M90z with Intel vpro Technology. Stefan Richards Intel Corporation Business Client Platform Division

Lenovo ThinkCentre M90z with Intel vpro Technology. Stefan Richards Intel Corporation Business Client Platform Division Lenovo ThinkCentre M90z with Intel vpro Technology Stefan Richards Intel Corporation Business Client Platform Division stefan.n.richards@intel.com 1 Legal Information 1. INFORMATION IN THIS DOCUMENT IS

More information

Intel Desktop Board DH55TC

Intel Desktop Board DH55TC Intel Desktop Board DH55TC Specification Update December 2011 Order Number: E88213-006 The Intel Desktop Board DH55TC may contain design defects or errors known as errata, which may cause the product to

More information

Intel Desktop Board DG41CN

Intel Desktop Board DG41CN Intel Desktop Board DG41CN Specification Update December 2010 Order Number: E89822-003US The Intel Desktop Board DG41CN may contain design defects or errors known as errata, which may cause the product

More information

Intel Desktop Board D975XBX2

Intel Desktop Board D975XBX2 Intel Desktop Board D975XBX2 Specification Update July 2008 Order Number: D74278-003US The Intel Desktop Board D975XBX2 may contain design defects or errors known as errata, which may cause the product

More information

Intel 82580EB/82580DB GbE Controller Feature Software Support. LAN Access Division (LAD)

Intel 82580EB/82580DB GbE Controller Feature Software Support. LAN Access Division (LAD) Intel 82580EB/82580DB GbE Controller Feature Software Support LAN Access Division (LAD) Revision: 1.3 March 2012 Intel 82580EB/82580DB GbE Controller Legal Legal INFORMATION IN THIS DOCUMENT IS PROVIDED

More information

Intel vpro Technology Virtual Seminar 2010

Intel vpro Technology Virtual Seminar 2010 Intel Software Network Connecting Developers. Building Community. Intel vpro Technology Virtual Seminar 2010 Getting to know Intel Active Management Technology 6.0 Fast and Free Software Assessment Tools

More information

Intel Desktop Board D945GCCR

Intel Desktop Board D945GCCR Intel Desktop Board D945GCCR Specification Update January 2008 Order Number: D87098-003 The Intel Desktop Board D945GCCR may contain design defects or errors known as errata, which may cause the product

More information

Upgrading Intel Server Board Set SE8500HW4 to Support Intel Xeon Processors 7000 Sequence

Upgrading Intel Server Board Set SE8500HW4 to Support Intel Xeon Processors 7000 Sequence Upgrading Intel Server Board Set SE8500HW4 to Support Intel Xeon Processors 7000 Sequence January 2006 Enterprise Platforms and Services Division - Marketing Revision History Upgrading Intel Server Board

More information

Intel Desktop Board D945GCLF

Intel Desktop Board D945GCLF Intel Desktop Board D945GCLF Specification Update July 2010 Order Number: E47517-008US The Intel Desktop Board D945GCLF may contain design defects or errors known as errata, which may cause the product

More information

Intel Desktop Board D845PT Specification Update

Intel Desktop Board D845PT Specification Update Intel Desktop Board D845PT Specification Update Release Date: February 2002 Order Number: A83341-002 The Intel Desktop Board D845PT may contain design defects or errors known as errata which may cause

More information

Intel Desktop Board DG41RQ

Intel Desktop Board DG41RQ Intel Desktop Board DG41RQ Specification Update July 2010 Order Number: E61979-004US The Intel Desktop Board DG41RQ may contain design defects or errors known as errata, which may cause the product to

More information

Intel IXP400 Digital Signal Processing (DSP) Software: Priority Setting for 10 ms Real Time Task

Intel IXP400 Digital Signal Processing (DSP) Software: Priority Setting for 10 ms Real Time Task Intel IXP400 Digital Signal Processing (DSP) Software: Priority Setting for 10 ms Real Time Task Application Note November 2005 Document Number: 310033, Revision: 001 November 2005 Legal Notice INFORMATION

More information

Intel Desktop Board DP55SB

Intel Desktop Board DP55SB Intel Desktop Board DP55SB Specification Update July 2010 Order Number: E81107-003US The Intel Desktop Board DP55SB may contain design defects or errors known as errata, which may cause the product to

More information

Reference Boot Loader from Intel

Reference Boot Loader from Intel Document Number: 328739-001 Introduction INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED, BY ESTOPPEL OR OTHERWISE, TO ANY INTELLECTUAL PROPERTY

More information

Intel G31/P31 Express Chipset

Intel G31/P31 Express Chipset Intel G31/P31 Express Chipset Specification Update For the Intel 82G31 Graphics and Memory Controller Hub (GMCH) and Intel 82GP31 Memory Controller Hub (MCH) February 2008 Notice: The Intel G31/P31 Express

More information

Intel Serial to Parallel PCI Bridge Evaluation Board

Intel Serial to Parallel PCI Bridge Evaluation Board Intel 41210 Serial to Parallel PCI Bridge Evaluation Board User s Guide October 2004 Order Number: 278947-002 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS

More information

Intel Desktop Board D946GZAB

Intel Desktop Board D946GZAB Intel Desktop Board D946GZAB Specification Update Release Date: November 2007 Order Number: D65909-002US The Intel Desktop Board D946GZAB may contain design defects or errors known as errata, which may

More information

Intel Extreme Memory Profile (Intel XMP) DDR3 Technology

Intel Extreme Memory Profile (Intel XMP) DDR3 Technology Intel Extreme Memory Profile (Intel XMP) DDR3 Technology White Paper March 2008 Document Number: 319124-001 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS

More information

Windows* 2003 Cluster Implementation Guide for the Intel RAID controller SRCU42X

Windows* 2003 Cluster Implementation Guide for the Intel RAID controller SRCU42X Windows* 2003 Cluster Implementation Guide for the Intel RAID controller SRCU42X Revision 1.0 May 2003 Enterprise Platforms and Services Marketing Disclaimers Information in this document is provided in

More information

Introduction to Intel Boot Loader Development Kit (Intel BLDK) Intel SSG/SSD/UEFI

Introduction to Intel Boot Loader Development Kit (Intel BLDK) Intel SSG/SSD/UEFI Introduction to Intel Boot Loader Development Kit (Intel BLDK) Intel SSG/SSD/UEFI Legal Disclaimer INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED,

More information

INTEL PERCEPTUAL COMPUTING SDK. How To Use the Privacy Notification Tool

INTEL PERCEPTUAL COMPUTING SDK. How To Use the Privacy Notification Tool INTEL PERCEPTUAL COMPUTING SDK How To Use the Privacy Notification Tool LEGAL DISCLAIMER THIS DOCUMENT CONTAINS INFORMATION ON PRODUCTS IN THE DESIGN PHASE OF DEVELOPMENT. INFORMATION IN THIS DOCUMENT

More information

Software Evaluation Guide for CyberLink MediaEspresso *

Software Evaluation Guide for CyberLink MediaEspresso * Software Evaluation Guide for CyberLink MediaEspresso 6.7.3521* Version 2013-04 Rev. 1.3 Information in this document is provided in connection with Intel products. No license, express or implied, by estoppel

More information

Intel Desktop Board DG31PR

Intel Desktop Board DG31PR Intel Desktop Board DG31PR Specification Update May 2008 Order Number E30564-003US The Intel Desktop Board DG31PR may contain design defects or errors known as errata, which may cause the product to deviate

More information

Intel vpro Technology Virtual Seminar 2010

Intel vpro Technology Virtual Seminar 2010 Intel Software Network Connecting Developers. Building Community. Intel vpro Technology Virtual Seminar 2010 Getting to know Intel Active Management Technology 6.0 Intel Active Management Technology (AMT)

More information

Intel Server Board S5520HC

Intel Server Board S5520HC Red Hat* Testing Services Enterprise Platforms and Services Division Rev 1.0 Intel Server Board S5520HC Server Test Submission (STS) Report For Red Hat* Enterprise Linux Certification Dec 28, 2010 This

More information

BIOS Update Release Notes

BIOS Update Release Notes BIOS Update Release Notes PRODUCTS: NUC5CPYH, NUC5PPYH, NUC5PGYH (Standard BIOS) BIOS Version 0058 - PYBSWCEL.86A.0058.2016.1102.1842 Date: November 02, 2016 Security Enhancements BIOS Version - PYBSWCEL.86A.0057.2016.1012.1134

More information

Intel IXP400 Software Version 1.5

Intel IXP400 Software Version 1.5 Intel IXP400 Software Version 1.5 Order Number: 308225, Revision: 001 Legal Notice Legal Lines and Disclaimers INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS

More information

Software Evaluation Guide for Photodex* ProShow Gold* 3.2

Software Evaluation Guide for Photodex* ProShow Gold* 3.2 Software Evaluation Guide for Photodex* ProShow Gold* 3.2 http://www.intel.com/performance/resources Version 2007-12 Rev. 1.0 Information in this document is provided in connection with Intel products.

More information

Sample for OpenCL* and DirectX* Video Acceleration Surface Sharing

Sample for OpenCL* and DirectX* Video Acceleration Surface Sharing Sample for OpenCL* and DirectX* Video Acceleration Surface Sharing User s Guide Intel SDK for OpenCL* Applications Sample Documentation Copyright 2010 2013 Intel Corporation All Rights Reserved Document

More information

Intel RealSense D400 Series Calibration Tools and API Release Notes

Intel RealSense D400 Series Calibration Tools and API Release Notes Intel RealSense D400 Series Calibration Tools and API Release Notes July 9, 2018 Version 2.6.4.0 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED,

More information

Intel 852GME/852PM Chipset Graphics and Memory Controller Hub (GMCH)

Intel 852GME/852PM Chipset Graphics and Memory Controller Hub (GMCH) Intel 852GME/852PM Chipset Graphics and Memory Controller Hub (GMCH) Specification Update July 2003 Notice: The Intel 852GME/852PM chipset may contain design defects or errors known as errata, which may

More information

Intel 848P Chipset. Specification Update. Intel 82848P Memory Controller Hub (MCH) August 2003

Intel 848P Chipset. Specification Update. Intel 82848P Memory Controller Hub (MCH) August 2003 Intel 848P Chipset Specification Update Intel 82848P Memory Controller Hub (MCH) August 2003 Notice: The Intel 82848P MCH may contain design defects or errors known as errata which may cause the product

More information

Intel Desktop Board DH61SA

Intel Desktop Board DH61SA Intel Desktop Board DH61SA Specification Update December 2011 Part Number: G52483-001 The Intel Desktop Board DH61SA may contain design defects or errors known as errata, which may cause the product to

More information

Intel IXP400 Software Version 2.1

Intel IXP400 Software Version 2.1 Intel IXP400 Software Version 2.1 Order Number: 310288, Revision: 001 Legal Notice Legal Lines and Disclaimers INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS

More information

BIOS Update Release Notes

BIOS Update Release Notes BIOS Update Release Notes PRODUCTS: NUC5CPYH, NUC5PPYH, NUC5PGYH (Standard BIOS) BIOS Version 0064 - PYBSWCEL.86A.0064.2017.0815.1055 Date: August 15, 2017 Option ROM: Build 1007 PC 14.34 UEFI Driver:

More information

BIOS Update Release Notes

BIOS Update Release Notes BIOS Update Release Notes PRODUCTS: D525MW, D525MWV, D425KT, D425KTW (Standard BIOS) BIOS Version 0132 - MWPNT10N.86A.0132.2013.0726.1534 Date: July 26, 2013 Fixed issue where system hangs when plugging

More information

Intel RealSense Depth Module D400 Series Software Calibration Tool

Intel RealSense Depth Module D400 Series Software Calibration Tool Intel RealSense Depth Module D400 Series Software Calibration Tool Release Notes January 29, 2018 Version 2.5.2.0 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE,

More information

Intel X48 Express Chipset Memory Controller Hub (MCH)

Intel X48 Express Chipset Memory Controller Hub (MCH) Intel X48 Express Chipset Memory Controller Hub (MCH) Specification Update March 2008 Document Number: 319123-001 Legal Lines and Disclaimers INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH

More information

Intel X38 Express Chipset

Intel X38 Express Chipset Intel X38 Express Chipset Specification Update For the 82X38 Memory Controller Hub (MCH) December 2007 Document Number: 317611-002 Legal Lines and Disclaimers INFORMATION IN THIS DOCUMENT IS PROVIDED IN

More information

Intel Atom Processor Based Platform Technologies. Intelligent Systems Group Intel Corporation

Intel Atom Processor Based Platform Technologies. Intelligent Systems Group Intel Corporation Intel Atom Processor Based Platform Technologies Intelligent Systems Group Intel Corporation Legal Disclaimer INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS

More information

Intel Server Board S1200BTS

Intel Server Board S1200BTS Novell* SuSE* Testing Services Enterprise Platforms and Services Division Intel Server Board S1200BTS Server Test Submission (STS) Report For Novell* SuSE* Linux Certification Rev 2.0 Jun. 26 th, 2012

More information

BIOS Update Release Notes

BIOS Update Release Notes BIOS Update Release Notes PRODUCTS: DQ57TM, DQ57TML (Standard BIOS) BIOS Version 0046 - TMIBX10H.86A.0046.2011.0722.0944 Date: July 22, 2011 Integrated Graphics Option ROM Revision on TM: 2114 PC Integrated

More information

SDK API Reference Manual for VP8. API Version 1.12

SDK API Reference Manual for VP8. API Version 1.12 SDK API Reference Manual for VP8 API Version 1.12 LEGAL DISCLAIMER INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED, BY ESTOPPEL OR OTHERWISE,

More information

Intel Theft Deterrent Client User Guide

Intel Theft Deterrent Client User Guide Intel Theft Deterrent Client User Guide Legal Notices Information in this document is provided in connection with Intel products. No license, express or implied, by estoppels or otherwise, to any intellectual

More information

Intel Server Board S2400SC

Intel Server Board S2400SC VMware* Testing Services Enterprise Platforms and Services Division Intel Server Board S2400SC Server Test Submission (STS) Report For VMware* ESX 4.1 Server Certification Rev 1.0 Dec. 3 rd, 2012 This

More information

Bitonic Sorting Intel OpenCL SDK Sample Documentation

Bitonic Sorting Intel OpenCL SDK Sample Documentation Intel OpenCL SDK Sample Documentation Document Number: 325262-002US Legal Information INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED, BY ESTOPPEL

More information

Intel Server Board S2600STB

Intel Server Board S2600STB Server Testing Services Intel Server Board Server Test Submission (STS) Report For the VMWare6.0u3 Certification Rev 1.0 Jul 19, 2017 This report describes the Intel Server Board VMWare* Logo Program test

More information

March Getting Started with the Intel Desktop Board DQ77MK UEFI Development Kit

March Getting Started with the Intel Desktop Board DQ77MK UEFI Development Kit March 2014 Getting Started with the Intel Desktop Board DQ77MK UEFI 2.3.1 Development Kit Getting Started with the Intel Desktop Board DQ77MK UEFI 2.3.1 Development Kit Legal Information INFORMATION IN

More information

Intel Desktop Board DP67DE

Intel Desktop Board DP67DE Intel Desktop Board DP67DE Specification Update December 2011 Part Number: G24290-003 The Intel Desktop Board DP67DE may contain design defects or errors known as errata, which may cause the product to

More information

Intel Desktop Board D102GGC2 Specification Update

Intel Desktop Board D102GGC2 Specification Update Intel Desktop Board D102GGC2 Specification Update Release Date: November 2006 Order Number: D59474-003US The Intel Desktop Board D102GGC2 may contain design defects or errors known as errata, which may

More information

Boot Agent Application Notes for BIOS Engineers

Boot Agent Application Notes for BIOS Engineers Boot Agent Application Notes for BIOS Engineers September 2007 318275-001 Revision 1.0 Legal Lines and Disclaimers INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE,

More information

Intel Desktop Board DQ57TM

Intel Desktop Board DQ57TM Intel Desktop Board DQ57TM Specification Update December 2010 Order Number: E88215-006US The Intel Desktop Board DQ57TM may contain design defects or errors known as errata, which may cause the product

More information

BIOS Update Release Notes

BIOS Update Release Notes PRODUCTS: DQ77KB (Standard BIOS) BIOS Update Release Notes BIOS Version 0059 - KBQ7710H.86A.0059.2017.0526.1645 Date: May 26, 2017 ME Firmware: 8.1.71.3608 Updated Intel ME firmware to version 8.1.71.3608.

More information

Clear CMOS after Hardware Configuration Changes

Clear CMOS after Hardware Configuration Changes Clear CMOS after Hardware Configuration Changes Technical White Paper August 2018 Revision 001 Document Number: 337986-001 You may not use or facilitate the use of this document in connection with any

More information

Intel IXDPG465 Reference Platform Bootloader LSP Release Notes Version 1.0 May 2006

Intel IXDPG465 Reference Platform Bootloader LSP Release Notes Version 1.0 May 2006 Intel IXDPG465 Reference Platform Bootloader LSP Version 1.0 May 2006 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTE PRODUCTS. EXCEPT AS PROVIDED IN INTEL S TERMS AND CONDITIONS OF SALE

More information

Intel 945(GM/GME)/915(GM/GME)/ 855(GM/GME)/852(GM/GME) Chipsets VGA Port Always Enabled Hardware Workaround

Intel 945(GM/GME)/915(GM/GME)/ 855(GM/GME)/852(GM/GME) Chipsets VGA Port Always Enabled Hardware Workaround Intel 945(GM/GME)/915(GM/GME)/ 855(GM/GME)/852(GM/GME) Chipsets VGA Port Always Enabled Hardware Workaround White Paper June 2007 Order Number: 12608-002EN INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION

More information

Intel IXP400 Software: VLAN and QoS Application Version 2.2 Release Notes August 2, 2007

Intel IXP400 Software: VLAN and QoS Application Version 2.2 Release Notes August 2, 2007 Intel IXP400 Software: VLAN and QoS Application Version 2.2 Release Notes August 2, 2007 Document Number: 301925-005 Legal Lines and Disclaimers INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH

More information

BIOS Update Release Notes

BIOS Update Release Notes BIOS Update Release Notes PRODUCTS: NUC5CPYH, NUC5PPYH, NUC5PGYH (Standard BIOS) BIOS Version 0069 - PYBSWCEL.86A.0069.2018.0314.1745 Date: March 14, 2018 TXE Firmware: 02.00.05.3117 PV Framework BIOS

More information

BIOS Update Release Notes

BIOS Update Release Notes BIOS Update Release Notes PRODUCTS: D53427RKE, DC53427HYE (Standard BIOS) BIOS Version 0050 - RKPPT10H.86A.0050.2018.0321.1337 Date: March 21, 2018 ME Firmware: 8.1.72.3002 Integrated Graphics: o Option

More information

Data Center Energy Efficiency Using Intel Intelligent Power Node Manager and Intel Data Center Manager

Data Center Energy Efficiency Using Intel Intelligent Power Node Manager and Intel Data Center Manager Data Center Energy Efficiency Using Intel Intelligent Power Node Manager and Intel Data Center Manager Deploying Intel Intelligent Power Node Manager and Intel Data Center Manager with a proper power policy

More information

Intel Desktop Board D815BN Specification Update

Intel Desktop Board D815BN Specification Update Intel Desktop Board D815BN Specification Update Release Date: May 2001 Order Number: A42948-004 The Intel Desktop Board D815BN may contain design defects or errors known as errata which may cause the product

More information

BIOS Update Release Notes

BIOS Update Release Notes BIOS Update Release Notes PRODUCTS: NUC5CPYH, NUC5PPYH, NUC5PGYH (Standard BIOS) BIOS Version 0075 - PYBSWCEL.86A.0075.2018.0917.1423 Date: September 17, 2018 TXE Firmware: 02.00.05.3117 PV Framework BIOS

More information

Software Evaluation Guide for Sony Vegas Pro 8.0b* Blu-ray Disc Image Creation Burning HD video to Blu-ray Disc

Software Evaluation Guide for Sony Vegas Pro 8.0b* Blu-ray Disc Image Creation Burning HD video to Blu-ray Disc Software Evaluation Guide for Sony Vegas Pro 8.0b* Blu-ray Disc Image Creation Burning HD video to Blu-ray Disc http://www.intel.com/performance/resources Version 2008-09 Rev. 1.0 Information in this document

More information

How to Create a.cibd File from Mentor Xpedition for HLDRC

How to Create a.cibd File from Mentor Xpedition for HLDRC How to Create a.cibd File from Mentor Xpedition for HLDRC White Paper May 2015 Document Number: 052889-1.0 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS

More information

Intel Transparent Computing

Intel Transparent Computing Intel Transparent Computing Jeff Griffen Director of Platform Software Infrastructure Software and Services Group October, 21 2010 1 Legal Information INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION

More information

Intel Server Board SE7505VB2 SMBIOS Update Utility User s Manual

Intel Server Board SE7505VB2 SMBIOS Update Utility User s Manual Intel Server Board SE7505VB2 SMBIOS Update Utility User s Manual Revision 1.0 April, 2003 Revision History Date Rev Modifications 04/01/03 1.0 Initial Release Intel Corporation 2003 Information in this

More information

Intel Desktop Board DH61CR

Intel Desktop Board DH61CR Intel Desktop Board DH61CR Specification Update December 2011 Order Number: G27744-003 The Intel Desktop Board DH61CR may contain design defects or errors known as errata, which may cause the product to

More information

Software Evaluation Guide for WinZip 15.5*

Software Evaluation Guide for WinZip 15.5* Software Evaluation Guide for WinZip 15.5* http://www.intel.com/performance/resources Version 2011-06 Rev. 1.1 Information in this document is provided in connection with Intel products. No license, express

More information

BIOS Update Release Notes

BIOS Update Release Notes PRODUCTS: DN2820FYK (Standard BIOS) BIOS Update Release Notes BIOS Version 0034 - FYBYT10H.86A.0034.2014.0513.1413 Date: May 13, 2014 TXE Firmware: 1.0.4.1089 Framework BIOS Reference Code: Based on 1.3.6

More information

BIOS Update Release Notes

BIOS Update Release Notes PRODUCTS: DG41RQ (Standard BIOS) BIOS Update Release Notes BIOS Version 0016 January 19, 2011 RQG4110H.86A.0016.2011.0119.0935 Fixed issue where users do not have view access to the bios if a supervisor

More information

How to Create a.cibd/.cce File from Mentor Xpedition for HLDRC

How to Create a.cibd/.cce File from Mentor Xpedition for HLDRC How to Create a.cibd/.cce File from Mentor Xpedition for HLDRC White Paper August 2017 Document Number: 052889-1.2 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE,

More information

BIOS Update Release Notes

BIOS Update Release Notes PRODUCTS: DB65AL (Standard BIOS) BIOS Update Release Notes BIOS Version 0056 - ALB6510H.86A.0056.2017.0601.1655 Date: June 01, 2017 ME Firmware: 5MB SKU 7.1.91. 3272 Production Updated Intel ME firmware

More information

Evolving Small Cells. Udayan Mukherjee Senior Principal Engineer and Director (Wireless Infrastructure)

Evolving Small Cells. Udayan Mukherjee Senior Principal Engineer and Director (Wireless Infrastructure) Evolving Small Cells Udayan Mukherjee Senior Principal Engineer and Director (Wireless Infrastructure) Intelligent Heterogeneous Network Optimum User Experience Fibre-optic Connected Macro Base stations

More information

OpenCL* and Microsoft DirectX* Video Acceleration Surface Sharing

OpenCL* and Microsoft DirectX* Video Acceleration Surface Sharing OpenCL* and Microsoft DirectX* Video Acceleration Surface Sharing Intel SDK for OpenCL* Applications Sample Documentation Copyright 2010 2012 Intel Corporation All Rights Reserved Document Number: 327281-001US

More information

Introduction. How it works

Introduction. How it works Introduction Connected Standby is a new feature introduced by Microsoft in Windows 8* for SOC-based platforms. The use case on the tablet/mobile systems is similar to that on phones like Instant ON and

More information

Intel Server Board S1200V3RPO Intel Server System R1208RPOSHORSPP

Intel Server Board S1200V3RPO Intel Server System R1208RPOSHORSPP Server WHQL Testing Services Enterprise Platforms and Services Division Intel Server Board S1200V3RPO Intel Server System R1208RPOSHORSPP Rev 1.0 Server Test Submission (STS) Report For the Microsoft Windows

More information

Intel Desktop Board D845HV Specification Update

Intel Desktop Board D845HV Specification Update Intel Desktop Board D845HV Specification Update Release Date: February 2002 Order Number: A73418-006 The Intel Desktop Board D845HV may contain design defects or errors known as errata which may cause

More information

Intel RAID Smart Battery AXXRSBBU6

Intel RAID Smart Battery AXXRSBBU6 Intel RAID Smart Battery AXXRSBBU6 Technical Product Specification February 2008 Enterprise Platforms and Services Marketing Revision History Revision History Date Revision Number February 2008 1.0 initial

More information

Intel Server Board S1200V3RPO Intel Server System R1208RPOSHORSPP

Intel Server Board S1200V3RPO Intel Server System R1208RPOSHORSPP Server WHQL Testing Services Enterprise Platforms and Services Division Intel Server Board S1200V3RPO Intel Server System R1208RPOSHORSPP Rev 1.0 Server Test Submission (STS) Report For the Microsoft Windows

More information

Software Evaluation Guide Adobe Premiere Pro CS3 SEG

Software Evaluation Guide Adobe Premiere Pro CS3 SEG Software Evaluation Guide Adobe Premiere Pro CS3 SEG http://www.intel.com/performance/resources Version 2007-09 Rev 1.0 Performance tests and ratings are measured using specific computer systems and/or

More information