Windows Internals & Software Drivers Training

Size: px
Start display at page:

Download "Windows Internals & Software Drivers Training"

Transcription

1 Overview Windws Internals & Sftware Drivers Training This training is designed fr sftware engineers and architects wh need t understand the details f the majr Windws architectural cmpnents, as well as hw t create sftware nly kernel-mde drivers that serve as extensins t the Windws perating system. The training includes a review f basic Windws architecture, and cvers the basics f building and debugging kernel-mde drivers fr Windws. It then discusses the details f driver structure, including the I/O and PnP subsystems, device discvery, enumeratin, and interrupt prcessing. Other extensin mechanisms, such as Object Manager, Prcess Manager, and Registry callbacks are discussed. The training als includes in-depth discussins f the Windws Kernel, prcess and thread instantiatin, and the Memry Manager. During lab sessins, participants create and mdify sftware-nly drivers t perfrm varius kernel-mde tasks. Nte that this training fcuses n the develpment f drivers that service as Windws perating system extensins but d nt service any hardware. Thus, while the basic cncepts f drivers fr devices are discussed, the lab sessins fcus strictly n the develpment f sftware (i.e. pseud) drivers which typically use legacy r NT V4 style interfaces (as ppsed t PnP). Details Length: 5 days Delivery: Lecture and Lab Target Audience Security researchers, engineers invlved in security and threat analysis/ mdeling, wh need a slid understanding f key Windws internals and data structures, and the ptins available t mnitr and extend the actins f the Windws perating system. This training is als apprpriate fr engineers actively invlved in the areas f intelligence and infrmatin and driver testing fr clients. ask@eact-tech.cm embeddedact.cm

2 Prerequisites This is nt a training fr beginners withut knwledge r experience in either perating systems r firmware. Rather, it is an intense, practical, architectural study f specific parts f the Windws O/S, interspersed with practical exercises. Students attending this training will need a gd understanding f general O/S cncepts and will be well served by starting with at least a basic Windws O/S architectural. Because it is a hands-n training, students need a wrking knwledge f the C prgramming language, as well as the basic ability t use a Windws system. Develpers wh want t develp file systems r file system filter drivers will als need the infrmatin presented in this training, as it is an abslute prerequisite t understanding thse tpics. Curse Outline Windws Operating System Architecture Overview A brief review f the general architecture f the Windws perating system. Kernel Mde and Key Structures In this mdule, we discuss fundamentals f Kernel Mde in Windws, including cverage f key bject types (Dispatcher, Cntrl, Executive) and data structures (KPCR, KTHREAD, EPROCESS) that Windws uses. Device Stacks The Windws I/O Subsystem A discussin f hw the PnP Manager wrks with drivers t build stacks f devices thrugh the enumeratin prcess. The rle f Functin Drivers, Bus Drivers, and Filter Drivers is discussed. PDOs, FDOs, and Filter Device Objects are defined. The relatinship f the PnP prcess t the prcess f lading legacy style drivers is discussed. Installing Legacy Drivers n Windws In this sectin, we discuss hw t create installatin cntrl files fr legacy style, sftware-nly drivers. Als included is a brief discussin f PnP (WDM) driver installatin using INF files. Building and Debugging This sectin describes hw WDM drivers are built using the WDK build envirnment as well as the basics f hw t setup and use the Windws kernel mde debugger, WinDbg. Interrupt Request Levels and DPCs Windws synchrnizes kernel mde activity by using a set f Interrupt Request Levels (IRQLs). This sectin cvers hw IRQLs are used t achieve synchrnizatin within the OS. Als the prcessing that ccurs at these IRQLs including Deferred Prcedure Calls (DPCs) and dispatching are discussed. Passing Requests t Other Drivers IRPs, I/O Stack Lcatins, and hw requests are sent frm driver t driver using ICallDriver are all discussed. Synchrnus and asynchrnus IRP cmpletin. A brief discussin f cmpletin rutines is als included. I/O Functin Cdes and Buffer Methds A specific discussin f I/O functin cdes (majr and minr), as well as defining custm Device Cntrl requests (IOCTLs). A detailed discussin f the way that Windws passes buffers frm usermde applicatins t kernel-mde, including the security implicatins f each methd. DriverEntry PnP vs. Legacy This sectin describes hw sftware nly drivers are initialized, and includes a walk-thrugh and discussin f the actins taken in a typical DriverEntry functin. The discussin is runded-ut with a descriptin f the initializatin functins used by PnP drivers (Add Device and Start Device). ask@eact-tech.cm embeddedact.cm

3 Dispatching and Cmpleting Requests This mdule describes Dispatch Rutines including I/O request validatin, as well as the basics f request queuing and cmpletin. Serializatin: Wait Lcks and Spin Lcks A discussin f the varius mechanisms used in Windws kernel-mde prgramming t perfrm synchrnizatin and serializatin. The different types f spin lcks, mutexes, and ther lcks are discussed, alng with guidelines fr when each might be apprpriate fr use. Tls fr Driver Quality In this sectin, we discuss tls that are available in the Windws Driver Kit t test and validate drivers. Windws Driver Verifier, OACR/PREfast, and Static Driver Verifier are all discussed, alng with the strengths and weaknesses f each tl and recmmendatins fr the best use f each. Bt, Crash, and Hibernatin Prcesses A discussin f hw Windws starts, including transitins frm 16-bit mde. Als, a discussin f the crash dump and hibernatin prcesses (which are remarkably similar n Windws). Versin-specific differences are als discussed. Windws System Services Hw system service calls are implemented in Windws, bth in new versins f the OS and histrically. A descriptin f a selectin f NtXxxx and ZwXxx functins, and hw their use in usermde and kernel mde differs. Prcess and Thread Creatin In this sectin, we discuss the rle f the Prcess Manager, including hw prcesses and threads are instantiated. The majr data structures (ETHREAD, EPROCESS) are described. The native system services fr creating prcesses and threads are als briefly discussed. Hw dispatching (scheduling) is perfrmed in Windws. Other Kernel Extensins An extended discussin f methds, ther than thse in the I/O dmain, f extending the Windws perating system using sftware nly drivers. This includes a discussin f Object Manager, Prcess Manager, and Registry callbacks, including the significant differences in the availability f these methds amng varius Windws versins. Cleanup, Clse, and Cancel Cleanup, clse and request cancellatin are cmpared and cntrasted. When ne might need t implement supprt fr each in a typical WDM driver is discussed. Guidelines fr supprting request cancellatin, including Cancel Safe Queues and in-prgress request handling are presented. Windws Virtual Memry A discussin f Windws virtual memry subsystem, including prtins f the Memry Manager and Cache Manager. Page tables. Paging and page fault handling. The Details f I/O Cmpletin In this sectin, we describe the details f hw Windws cmpletes I/O requests, as well as the crrect handling f different types f I/O cmpletin requirements within drivers. This includes a discussin f hw the I/O Manager manages maintains synchrnus request handling when requested by an applicatin, even when a driver perfrms asynchrnus I/O prcessing. Guidelines fr prper driver implementatin are develped and discussed. * * * * * * * * ask@eact-tech.cm embeddedact.cm

4 Writing WDF Drivers Training The Windws Driver Fundatin (WDF) is the mdern standard fr creating Windws drivers, and is the preferred way t implement mst new drivers fr Windws. WDF enables develpers t write drivers that execute in either kernel-mde using the Kernel Mde Driver Framewrk (KMDF) r user-mde using the User Mde Driver Framewrk V2 (UMDF V2). The gal f this seminar is t help engineers learn bth the fundamental and practical details f KMDF and UMDF V2. This includes bth basic architectural infrmatin abut Windws and the Windws I/O Subsystem as it relates t WDF, plus the specific details f hw t write, test, diagnse, and supprt drivers using KMDF and UMDF V2. The seminar fcuses specifically n KMDF and UMDF V2 sftware drivers, filter drivers, drivers fr USB devices, as well as drivers fr prgrammed I/O type devices (interfaced via either PCI-family r mtherbard-based buses). The basics f writing KMDF client drivers fr SC/IT-type envirnments and lw-pwer devices such as that cnnect via GPIO, I2C, and SPI are als discussed (thugh this tpic is nt cvered in detail). The seminar takes a unique apprach t the tpics presented: Key architectural details are described first, and then thse details are made cncrete and accessible via presentatin f task-based practical implementatin steps. Finally, larger grups f architectural and implementatin cncepts are cllected and made directly useful thugh the review and discussin f several carefully chsen case studies. Target Audience This seminar is designed fr engineers wh need t understand hw t design, develp, and test Windws drivers using the WDF Kernel Mde Driver Framewrk (KMDF) r the WDF User Mde Driver Framewrk V2 (UMDF V2). Prerequisites Students attending this seminar will be assumed t have a gd wrking knwledge f general O/S cncepts (user mde versus kernel mde, virtual memry cncepts, and cncurrency issues) and device cncepts (such as buses, interrupts, and registers). Previus experience develping device drivers (n any perating system) will definitely be an advantage, but is nt required. Due t the hands-n rientatin f this seminar, attendees will be assumed t be able t use Windws at a user level, including hw t use Micrsft s Visual Studi. Wrking knwledge f the C prgramming language, and hw t read and write t a file using Win32 APIs (CreateFile, ReadFile, WriteFile) are als assumed. ask@eact-tech.cm embeddedact.cm

5 Details Length: 5 days Delivery: Lecture and Lab Seminar Outline Intrductin Welcme remarks, seminar gals and bjectives. Intrductin t WDF, as well as KMDF and UMDF V1 and UMDF V2 and when each mdel is the mst apprpriate. Windws OS Architecture fr Driver Writers A review f cre Windws architecture cncepts f specific imprtance t driver develpers. Tpics include: General rganizatin f NTOS: Executive, Kernel, and HAL. Prcesses and threads. Memry management. Intrductin t key I/O Manager bjects (File Object, Device Object, Driver Object). Overview f PnP prcess. Pwer Management. Executive Services. Object Manager Hw an bject name (such as a file specificatin) is prcessed. Hw File Objects are created and the prcess-specific handle table. Windws Kernel intrductin. Windws HAL intrductin. The Windws Device Tree This mdule cmprises a detailed view f hw the Windws PnP subsystem discvers and enumerates devices and lads their assciated drivers. Details fr devices n dynamically enumerable buses (such as PCIe, USB, r Bluetth) and nn-dynamically enumerable buses (such as SPI, I2C, r GPIO) are described. All abut Physical Device Objects (PDOs), Functin Device Objects (FDOs), and filter Device Objects. Hw filter drivers wrk their magic. Hw requests are prcessed, and passed frm driver t driver within the Windws I/O Subsystem. I/O request cmpletin handling. Further discussin and descriptin (expanding n infrmatin frm the previus mdule) f hw system requests in general and I/O request in particular are passed frm user-mde t kernel-mde, initially in the cntext f the requesting thread. ask@eact-tech.cm embeddedact.cm

6 Driver Installatin Hw t create installatin cntrl files fr KMDF drivers. The Ten Mst Frequently Used INF File sectins are discussed. The KMDF C-Installer, and hw t specify it in an INF file, is described. The WDF Object Mdel WDF bject characteristics and taxnmy. Hw bjects are instantiated and used in KMDF and UMDF V2. An verview f the mst cmmn WDF bjects. Driver Initializatin Hw a WDF driver and its assciated device are initialized. Als, handling typical PnP and pwer management events such as device discvery (EvtDriverDeviceAdd), pwer-up (EvtDeviceD0Entry), and pwer-dwn (EvtDeviceD0Exit). Hw WDF drivers are ntified f and claim their hardware resurces, including registers, prts, cnnectins, and interrupts. Building and Debugging Students are assumed t already be familiar with the basics f hw t use Visual Studi. We ll review the details, as well as discuss hw t setup and use WinDbg, the Windws kernel debugger. We ll als discuss specific issues abut building and debugging drivers fr Windws using the WDK and Visual Studi, as well as tls such as Cde Analysis and Static Driver Verifier. We als discuss the WDF Kernel Debugger Extensins (WDFKD), including retrieving the WDF Lg frm the in flight recrder. LAB: Building and Debugging, Driver Initializatin (DriverEntry, EvtDeviceD0Entry, etc.). Interrupt Request Levels & Deferred Prcedure Calls In this mdule, we discuss the all-imprtant cncept f Interrupt Request Levels (IRQLs), and the specific uses that Windws makes f varius IRQLs. We als discuss Deferred Prcedure Calls (DPCs) and hw they re used in Windws fr Interrupt Service Rutine cmpletin (DPCfrISR). We als discuss passive-level interrupts and its assciated Wrk Item fr ISR. Queues and Requests Hw a WDF driver gets I/O requests, and hw thse requests are prcessed. Tpics include: hw WDF Queues are instantiated, Queue dispatch types, and hw Queues can be used t srt Requests; Framewrk Requests and hw Requests are prcessed and cmpleted; hw the user data buffer assciated with a Request is accessed and in what cntext this access is allwed; hw Requests are cmpleted with data, status, and infrmatin returned. Buffer Methds and Device Cntrls The different ways that requestr data buffers can be described are discussed. Direct I/O, Buffered I/O, and Neither I/O are described, cmpared, and cntrasted. Als discussed is hw t define custm Device IO Cntrl Cdes (IOCTLs), and hw the previusly described buffering methds apply t IOCTLs. LAB: Request Prcessing and Cmpletin, Filtering Case Study 1: Prgrammed I/O Device This case study reviews and demnstrates all the tpics discussed in the ask@eact-tech.cm embeddedact.cm

7 seminar t this pint. T d this, the instructr takes students n a guided walk-thrugh f the cde fr a driver fr the wrld s simplest device, reviewing and reinfrcing cncepts alng the way. All phases f driver peratin are reviewed frm device discvery, t claiming hardware resurces, prcessing pwer state changes, and prcessing and cmpleting requests bth synchrnusly and asynchrnusly. I/O Targets Hw a driver sends Requests t ther drivers in the system, and ptinally receives the results. Lcal, Remte, and Special I/O Targets. Bth synchrnusly and asynchrnusly send peratins are discussed. Cmpletin rutines are als cvered. Case Study 2: USB Part 1: USB Cncepts The basics f USB are discussed including device, cnfiguratin, and interface descriptrs. Endpints and pipes are described. Part 2: Implementing WDF USB Drivers In this sectin, we describe hw USB drivers are implemented in KMDF. This includes hw a cnfiguratin and interface is chsen, and hw endpints are retrieved. Hw t send vendr cmmands t a device via Endpint. Using Bulk and Interrupt endpints. The WDF Cntinuus Reader is briefly discussed, as is supprting Selective Suspend (USB device pwer management). LAB: USB using the OSR USB-FX2 device (dem by trainer -understanding) Case Study 3: SPB/GPIO Device Hw Simple Peripheral Bus clients and GPIO-cnnected devices (such as senrs n SPI, I2C, and GPIO buses) are supprted in Windws. SPBs and the RESOURCE_HUB. Cntrller drivers and Client drives. Walk-thrugh f the initializatin and I/O prcessing a Client driver that receives interrupts via a GPIO line and cllects data frm an I2C r SPI bus. And intrductin t the Pwer Management Framewrk (PFx), including review f example cnfiguratins and callbacks fr single-cmpnent devices. Serializatin In this mdule, we discuss issues relating t synchrnizing access t shared data within a driver. The much misunderstd tpic f WDF Synchrnizatin Scpe is fully described, as is extending sync scpe t ther callback rutines via the Autmatic Serializatin parameter. WDFSPINLOCKs and WDFWAITLOCKs are discussed, alng with the underlying implementatins f each and hw they re used and the implicatins f using each f these serializatin mechanisms frm user-mde drivers. Cleanup, Clse, and Cancel Strategies fr handling queued and in-prgress requests are discussed, as what prcessing typically takes place as part f cleanup and clse prcessing. Helpful Classes A brief descriptin f a few Framewrk classes such as WDFCOLLECTION, ask@eact-tech.cm embeddedact.cm

8 WDFWORKITEM, and WDFTIMER that might be useful fr driver develpers t knw. LAB: USB cntinued, Open/Clse prcessing. * * * * * * * * Duratin: 3-4Days Windws 10 IT Cre Level: Intermediate Objectives: The bjectives f the Windws 10 IT Cre prgram are as fllws: 1. T intrduce the participants t the dmain f the Internet f Things (IT). IT technlgies are set t explde in a variety f applicatins ranging frm Machine t Machine (M2M) Cmmunicatin, Cntrl and Autmatin, persnal healthcare devices, hme autmatin, supply chain management, cnsumer and electrnic entertainment devices and s frth. 2. T intrduce the participants t Micrsft s IT perating system ffering as it seeks t be a majr player in the IT space. Further Windws 10 IT cre aims t prvide seamless cnnectivity t desktp and clud cmputing envirnments. Pre-requisites: 1. Participants are expected t be familiar with micrcntrller-based embedded system hardware, firmware and peripheral prgramming in general fr cmmn peripherals such as GPIOs, I2C, SPI, USB etc. 2. Participants are als expected t be familiar with embedded cmmunicatin prtcls such as Bluetth LE, ZigBee, 6LWPAN etc. 3. Familiarity with ther embedded OSs, develpment tls and techniques in general. ask@eact-tech.cm embeddedact.cm

9 Day 1 Intrductin t Embedded Hardware and Firmware Architecture f Embedded Systems Hardware and Firmware Prgramming Techniques and Key Differences frm Desktp Systems Embedded Prcessrs, Peripherals and Prtcls General Purpse I/Os (GPIOs) I2C Bus SPI Bus USB Embedded OSes and RTOSes Embedded Cmmunicatin Technlgies Wired and Wireless Intrductin t Lw Pwer Wireless Technlgies Bluetth Lw Energy (LE) ZigBee 6LWPAN Requirements f Machine-t-Machine (M2M) Cmmunicatin, Cntrl and Autmatin Systems Day 2 Intrductin t IT Technlgies Cncepts and Definitins f The Internet f Things (IT) Applicatins and Requirements IT Architecture IT Enabling Technlgies Majr cmpnents f IT Hardware, sensrs, actuatrs, Systems-n-a-Chip, firmware, device drivers, applicatin sftware, cnnectivity, clud, and security Intrductin t Raspberry Pi 2 Rle f wired and wireless cmmunicatin IT Cmmunicatin and Netwrking Prtcls IT Services and Applicatins Security Clud Cmputing and the Internet f Things IT Platfrms Day 3 & 4 Case Study using Windws 10 IT Cre Prblem Statement ask@eact-tech.cm embeddedact.cm

10 Requirements and Specificatins f the IT Device Hardware Sftware Designing the Overall System Architecture Intrductin t Windws 10 IT Cre Setting up the Develpment System Implementing and Cnfiguring the Hardware Cmpnents Implementing the Sftware Cmpnents Drivers fr Sensrs and Actuatrs Applicatin Sftware Cmmunicatin Prtcl Implementatin Integratin with Clud-based Services Testing the Final Prduct ask@eact-tech.cm embeddedact.cm

Course 6368A: Programming with the Microsoft.NET Framework Using Microsoft Visual Studio 2008

Course 6368A: Programming with the Microsoft.NET Framework Using Microsoft Visual Studio 2008 Curse 6368A: Prgramming with the Micrsft.NET Framewrk Using Micrsft Visual Studi 2008 5 Days Abut this Curse This five-day, instructr-led curse prvides an intrductin t develping n-tier applicatins fr the

More information

Course 10262A: Developing Windows Applications with Microsoft Visual Studio 2010 OVERVIEW

Course 10262A: Developing Windows Applications with Microsoft Visual Studio 2010 OVERVIEW Curse 10262A: Develping Windws Applicatins with Micrsft Visual Studi 2010 OVERVIEW Abut this Curse In this curse, experienced develpers wh knw the basics f Windws Frms develpment gain mre advanced Windws

More information

Developing Microsoft SharePoint Server 2013 Core Solutions

Developing Microsoft SharePoint Server 2013 Core Solutions Develping Micrsft SharePint Server 2013 Cre Slutins Develping Micrsft SharePint Server 2013 Cre Slutins Curse Cde: 20488 Certificatin Exam: 70-488 Duratin: 5 Days Certificatin Track: N/A Frmat: Classrm

More information

CLOUD & DATACENTER MONITORING WITH SYSTEM CENTER OPERATIONS MANAGER. Course 10964B; Duration: 5 Days; Instructor-led

CLOUD & DATACENTER MONITORING WITH SYSTEM CENTER OPERATIONS MANAGER. Course 10964B; Duration: 5 Days; Instructor-led CENTER OF KNOWLEDGE, PATH TO SUCCESS Website: www.inf-trek.cm CLOUD & DATACENTER MONITORING WITH SYSTEM CENTER OPERATIONS MANAGER Curse 10964B; Duratin: 5 Days; Instructr-led WHAT YOU WILL LEARN This curse

More information

Developing Java Web Services. Duration: 5 days

Developing Java Web Services. Duration: 5 days QWERTYUIOP{ Develping Java Web Services Duratin: 5 days The Develping Java Web Services training class prepares Java prgrammers t develp interperable Java Web services and using SOAP, WSDL, and XML Schema.

More information

Operating systems. Module 7 IPC (Interprocess communication) PART I. Tami Sorgente 1

Operating systems. Module 7 IPC (Interprocess communication) PART I. Tami Sorgente 1 Operating systems Mdule 7 IPC (Interprcess cmmunicatin) PART I Tami Srgente 1 INTERPROCESS COMMUNICATION Prcesses within a system may be independent r cperating Cperating prcess can affect r be affected

More information

Intro. to Computer Repair & Advanced Computer Repair

Intro. to Computer Repair & Advanced Computer Repair Intr. t Cmputer Repair & Advanced Cmputer Repair Grades 10-12 Draft Feb. 2004 Killingly Public Schls COMPUTER REPAIR Installatin, Cnfiguratin and Upgrading CONTENT STANDARD 9-12 C.R 1: The student will

More information

CNS-222-1I: NetScaler for Apps and Desktops

CNS-222-1I: NetScaler for Apps and Desktops CNS-222-1I: NetScaler fr Apps and Desktps Overview Designed fr students with little r n previus NetScaler, NetScaler Gateway r Unified Gateway experience, this curse is best suited fr individuals wh will

More information

Introduction to Programming ArcObjects using the Microsoft.Net Framework

Introduction to Programming ArcObjects using the Microsoft.Net Framework Intrductin t Prgramming ArcObjects using the Micrsft.Net Framewrk Three days Overview ArcObjects cmpnents are the building blcks f the ArcGIS family f prducts, and the ArcObjects libraries prvide a set

More information

Hands-on Windows Azure Application Architecture & Development (3 days)

Hands-on Windows Azure Application Architecture & Development (3 days) Benjamin Day Cnsulting, Inc. 17 Rberts St #2 Brkline, MA 02445 617-645-0188 http://benday.cm Hands-n Windws Azure Applicatin Architecture & Develpment (3 days) D yu really want t run yur wn data center?

More information

Admin Report Kit for Exchange Server

Admin Report Kit for Exchange Server Admin Reprt Kit fr Exchange Server Reprting tl fr Micrsft Exchange Server Prduct Overview Admin Reprt Kit fr Exchange Server (ARKES) is an Exchange Server Management and Reprting slutin that addresses

More information

Computer Science Department cs.salemstate.edu. ITE330 Web Systems. Catalog description:

Computer Science Department cs.salemstate.edu. ITE330 Web Systems. Catalog description: Cmputer Science Department cs.salemstate.edu ITE330 Web Systems 4 cr. Catalg descriptin: This curse prvides an intrductin t web systems and technlgies, including an verview f architecture f a website,

More information

EView/400i Management Pack for Systems Center Operations Manager (SCOM)

EView/400i Management Pack for Systems Center Operations Manager (SCOM) EView/400i Management Pack fr Systems Center Operatins Manager (SCOM) Cncepts Guide Versin 7.0 July 2015 1 Legal Ntices Warranty EView Technlgy makes n warranty f any kind with regard t this manual, including,

More information

Iowa State University

Iowa State University Iwa State University Cyber Security Smart Grid Testbed Senir Design, Design Dcument Dec 13-11 Derek Reiser Cle Hven Jared Pixley Rick Suttn Faculty Advisr: Prfessr Manimaran Gvindarasu Table f Cntents

More information

Implementing a Data Warehouse with Microsoft SQL Server

Implementing a Data Warehouse with Microsoft SQL Server Implementing a Data Warehuse with Micrsft SQL Server Implementing a Data Warehuse with Micrsft SQL Server Curse Cde: 20463 Certificatin Exam: 70-463 Duratin: 5 Days Certificatin Track: MCSA: SQL Server

More information

NCTA-Certified Cloud Technologist (NCT) Exam NCT-110

NCTA-Certified Cloud Technologist (NCT) Exam NCT-110 NCTA-Certified Clud Technlgist (NCT) Exam NCT-110 Exam Infrmatin Candidate Eligibility: The NCTA-Certified Clud Technlgist (NCT) exam requires n applicatin fee, supprting dcumentatin, nr ther eligibility

More information

IT103T Operating Systems [Onsite]

IT103T Operating Systems [Onsite] IT103T [Onsite] Curse Descriptin: This curse serves as a survey n typical internal functins f a generic cmputer perating system. The cmputer s ability t manage such resurces as memry, device, I/O, files

More information

HP ExpertOne. HP2-T21: Administering HP Server Solutions. Table of Contents

HP ExpertOne. HP2-T21: Administering HP Server Solutions. Table of Contents HP ExpertOne HP2-T21: Administering HP Server Slutins Industry Standard Servers Exam preparatin guide Table f Cntents In this sectin, include a table f cntents (TOC) f all headings. After yu have finished

More information

Final Report. Graphical User Interface for the European Transport Model TREMOVE. June 15 th 2010

Final Report. Graphical User Interface for the European Transport Model TREMOVE. June 15 th 2010 Date June 15 th 2010 Authrs Charitn Kuridis Dr Mia Fu Dr Andrew Kelly Thmas Papagergiu Client Eurpean Cmmissin DG Climate Actin Directrate A: Internatinal & Climate Strategy Unit A4: Strategy & Ecnmic

More information

CNS-220-1I: Citrix NetScaler Essentials and Traffic Management

CNS-220-1I: Citrix NetScaler Essentials and Traffic Management CNS-220-1I: Citrix NetScaler Essentials and Traffic Management Overview Designed fr students with little r n previus NetScaler experience, this curse is best suited fr individuals wh will be deplying r

More information

IMPORTING INFOSPHERE DATA ARCHITECT MODELS INFORMATION SERVER V8.7

IMPORTING INFOSPHERE DATA ARCHITECT MODELS INFORMATION SERVER V8.7 IMPORTING INFOSPHERE DATA ARCHITECT MODELS INFORMATION SERVER V8.7 Prepared by: March Haber, march@il.ibm.cm Last Updated: January, 2012 IBM MetaData Wrkbench Enablement Series Table f Cntents: Table f

More information

CAMPBELL COUNTY GILLETTE, WYOMING

CAMPBELL COUNTY GILLETTE, WYOMING CAMPBELL COUNTY GILLETTE, WYOMING System Supprt Analyst I System Supprt Analyst II Senir System Supprt Analyst Class specificatins are intended t present a descriptive list f the range f duties perfrmed

More information

Courseware Setup. Hardware Requirements. Software Requirements. Prerequisite Skills

Courseware Setup. Hardware Requirements. Software Requirements. Prerequisite Skills The Internet and Cmputing Cre Certificatin Guide cnsists f 64 Lessns, with lessn bjectives, summary and ten review questins. IC³ bjectives are easily lcated by using symbls thrughut the curseware. Curse

More information

Software Engineering

Software Engineering Sftware Engineering Chapter #1 Intrductin Sftware systems are abstract and intangible. Sftware engineering is an engineering discipline that is cncerned with all aspects f sftware prductin. Sftware Prducts

More information

Customer Information. Agilent 2100 Bioanalyzer System Startup Service G2949CA - Checklist

Customer Information. Agilent 2100 Bioanalyzer System Startup Service G2949CA - Checklist This checklist is used t prvide guidance and clarificatin n aspects f the auxillary Startup Service (G2949CA) including Security Pack Installatin and Familiarizatin f yur Agilent 2100 Bianalyzer System

More information

SAP Business One Hardware Requirements Guide

SAP Business One Hardware Requirements Guide Hardware Requirements Guide Dcument Versin: 1.13 2018-02-02 Release Family 9 Typgraphic Cnventins Type Style Example Descriptin Wrds r characters quted frm the screen. These include field names, screen

More information

CONTROL-COMMAND. Software Technical Specifications for ThomX Suppliers 1.INTRODUCTION TECHNICAL REQUIREMENTS... 2

CONTROL-COMMAND. Software Technical Specifications for ThomX Suppliers 1.INTRODUCTION TECHNICAL REQUIREMENTS... 2 Réf. ThmX-NT-SI-CC001 Table f Cntents Sftware Technical Specificatins fr ThmX Authr : Philippe Page 1 / 9 1.INTRODUCTION... 2 2.TECHNICAL REQUIREMENTS... 2 3.DOCUMENTATION REQUIREMENTS... 4 4.COMPUTING

More information

(CNS-220) Citrix NetScaler Essentials and Traffic Management

(CNS-220) Citrix NetScaler Essentials and Traffic Management (CNS-220) Citrix NetScaler Essentials and Traffic Management Overview Designed fr students with little r n previus NetScaler experience, this curse is best suited fr individuals wh will be deplying r managing

More information

App Center User Experience Guidelines for Apps for Me

App Center User Experience Guidelines for Apps for Me App Center User Experience Guidelines fr Apps fr Me TABLE OF CONTENTS A WORD ON ACCESSIBILITY...3 DESIGN GUIDELINES...3 Accunt Linking Prcess... 3 Cnnect... 5 Accept Terms... 6 Landing Page... 6 Verificatin...

More information

Xilinx Answer Xilinx PCI Express DMA Drivers and Software Guide

Xilinx Answer Xilinx PCI Express DMA Drivers and Software Guide Xilinx Answer 65444 Xilinx PCI Express DMA Drivers and Sftware Guide Imprtant Nte: This dwnladable PDF f an Answer Recrd is prvided t enhance its usability and readability. It is imprtant t nte that Answer

More information

Overview. Recommended pre-requisite courses: Key Skills. : CNS-220-1I: Citrix NetScaler Traffic Management

Overview. Recommended pre-requisite courses: Key Skills. : CNS-220-1I: Citrix NetScaler Traffic Management Mdule Title Duratin : CNS-220-1I: Citrix NetScaler Traffic Management : 5 days Overview Designed fr students with little r n previus NetScaler experience, this curse is best suited fr individuals wh will

More information

ITE310 Computer Networks

ITE310 Computer Networks Cmputer Science Department cs.salemstate.edu ITE310 Cmputer Netwrks 4 cr. Catalg descriptin: This curse begins with an intrductin t cmputer netwrks, including hardware, sftware, trubleshting, and maintenance.

More information

CXA-206-1I Citrix XenApp 6.5 Administration

CXA-206-1I Citrix XenApp 6.5 Administration CXA-206-1I Citrix XenApp 6.5 Administratin Citrix XenApp 6.5 Administratin training curse prvides the fundatin necessary fr administratrs t effectively centralize and manage applicatins in the datacenter

More information

NiceLabel LMS. Installation Guide for Single Server Deployment. Rev-1702 NiceLabel

NiceLabel LMS. Installation Guide for Single Server Deployment. Rev-1702 NiceLabel NiceLabel LMS Installatin Guide fr Single Server Deplyment Rev-1702 NiceLabel 2017. www.nicelabel.cm 1 Cntents 1 Cntents 2 2 Architecture 3 2.1 Server Cmpnents and Rles 3 2.2 Client Cmpnents 3 3 Prerequisites

More information

HP Server Virtualization Solution Planning & Design

HP Server Virtualization Solution Planning & Design Cnsulting & Integratin Infrastructure Services HP Server Virtualizatin Slutin Planning & Design Service descriptin Hewlett-Packard Cnsulting & Integratin Infrastructure Cnsulting Packaged Services (HP

More information

Licensing the Core Client Access License (CAL) Suite and Enterprise CAL Suite

Licensing the Core Client Access License (CAL) Suite and Enterprise CAL Suite Vlume Licensing brief Licensing the Cre Client Access License (CAL) Suite and Enterprise CAL Suite Table f Cntents This brief applies t all Micrsft Vlume Licensing prgrams. Summary... 1 What s New in this

More information

Core Java and Advanced Java

Core Java and Advanced Java Cre Java and Advanced Java 1. Intrductin t Java prgramming The Java Virtual Machine Variables and data types Cnditinal and lping cnstructs Arrays 2. Object-riented prgramming with Java Classes and Objects

More information

VMware AirWatch Certificate Authentication for Cisco IPSec VPN

VMware AirWatch Certificate Authentication for Cisco IPSec VPN VMware AirWatch Certificate Authenticatin fr Cisc IPSec VPN Fr VMware AirWatch Have dcumentatin feedback? Submit a Dcumentatin Feedback supprt ticket using the Supprt Wizard n supprt.air-watch.cm. This

More information

CCNA course contents:

CCNA course contents: CCNA curse cntents: Prerequisites: The knwledge and skills that yu must have befre attending this curse are as fllws: Basic cmputer literacy Windws navigatin skills Basic Internet usage skills Fundamental

More information

CXD Citrix XenDesktop 5 Administration

CXD Citrix XenDesktop 5 Administration CXD-202-1 Citrix XenDesktp 5 Administratin This curse prvides the fundatin necessary fr administratrs t effectively centralize and manage desktps in the datacenter and deliver them as a service t users

More information

Level 2 Development Training

Level 2 Development Training Level 2 Develpment Training Level 2 Develpment Training Level 2 Develpment Training Vide Capture RSS 4000 Level 2 Develpment Training Vide Capture Cntents 1 Intrductin... 3 Intrductin... 3 Available Resurces...

More information

CS4500/5500 Operating Systems Synchronization

CS4500/5500 Operating Systems Synchronization Operating Systems Synchrnizatin Yanyan Zhuang Department f Cmputer Science http://www.cs.uccs.edu/~yzhuang UC. Clrad Springs Recap f the Last Class Multiprcessr scheduling Tw implementatins f the ready

More information

Application Notes for Stratus ftserver 6310 with VMWare and Avaya Aura Contact Center Release 6.2 Issue 1.0

Application Notes for Stratus ftserver 6310 with VMWare and Avaya Aura Contact Center Release 6.2 Issue 1.0 Avaya Slutin & Interperability Test Lab Applicatin Ntes fr Stratus ftserver 6310 with VMWare and Avaya Aura Cntact Center Release 6.2 Issue 1.0 Abstract These Applicatin Ntes describes the integratin,

More information

USER MANUAL. RoomWizard Administrative Console

USER MANUAL. RoomWizard Administrative Console USER MANUAL RmWizard Administrative Cnsle Cntents Welcme... 3 Administer yur RmWizards frm ne lcatin... 3 Abut This Manual... 4 Setup f the Administrative Cnsle... 4 Installatin... 4 The Cnsle Windw...

More information

CA CMDB Connector for z/os

CA CMDB Connector for z/os PRODUCT SHEET: CA CMDB CONNECTOR FOR Z/OS CA CMDB Cnnectr fr z/os CA CMDB Cnnectr fr z/os discvers mainframe cnfiguratin items (CIs) and enables ppulatin f that infrmatin int the CA CMDB repsitry. Designed

More information

1 Getting and Extracting the Upgrader

1 Getting and Extracting the Upgrader Hughes BGAN-X 9202 Upgrader User Guide (PC) Rev 1.0 (23-Feb-12) This dcument explains hw t use the Hughes BGAN-X Upgrader prgram fr the 9202 User Terminal using a PC. 1 Getting and Extracting the Upgrader

More information

CaseWare Working Papers. Data Store user guide

CaseWare Working Papers. Data Store user guide CaseWare Wrking Papers Data Stre user guide Index 1. What is a Data Stre?... 3 1.1. When using a Data Stre, the fllwing features are available:... 3 1.1.1.1. Integratin with Windws Active Directry... 3

More information

Please contact technical support if you have questions about the directory that your organization uses for user management.

Please contact technical support if you have questions about the directory that your organization uses for user management. Overview ACTIVE DATA CALENDAR LDAP/AD IMPLEMENTATION GUIDE Active Data Calendar allws fr the use f single authenticatin fr users lgging int the administrative area f the applicatin thrugh LDAP/AD. LDAP

More information

Implementing a SQL Data Warehouse

Implementing a SQL Data Warehouse Implementing a SQL Data Warehuse Implementing a SQL Data Warehuse Curse Cde: 20767 Certificatin Exam: 70-767 Duratin: 5 Days Certificatin Track: MCSA: SQL 2016 BI Develpment Frmat: Classrm Level: 300 Abut

More information

Essentials for IBM Cognos BI (V10.2) Day(s): 5. Overview

Essentials for IBM Cognos BI (V10.2) Day(s): 5. Overview Essentials fr IBM Cgns BI (V10.2) Day(s): 5 Curse Cde: B5270G Overview NOTE: This is an Instructr Led Online curse. Please d nt make any travel arrangements. IBM Cgns Educatin is nw pleased t ffer yu ur

More information

1 Getting and Extracting the Upgrader

1 Getting and Extracting the Upgrader Hughes BGAN-X 9202 Upgrader User Guide (Mac) Rev 1.0 (23-Feb-12) This dcument explains hw t use the Hughes BGAN Upgrader prgram fr the 9202 User Terminal using a Mac Nte: Mac OS X Versin 10.4 r newer is

More information

Operating systems. Module 15 kernel I/O subsystem. Tami Sorgente 1

Operating systems. Module 15 kernel I/O subsystem. Tami Sorgente 1 Operating systems Mdule 15 kernel I/O subsystem Tami Srgente 1 SWAP SPACE MANAGEMENT Swap space can be defined as a temprary strage lcatin that is used when system s memry requirements exceed the size

More information

These tasks can now be performed by a special program called FTP clients.

These tasks can now be performed by a special program called FTP clients. FTP Cmmander FAQ: Intrductin FTP (File Transfer Prtcl) was first used in Unix systems a lng time ag t cpy and mve shared files. With the develpment f the Internet, FTP became widely used t uplad and dwnlad

More information

Aloha Offshore SDLC Process

Aloha Offshore SDLC Process Alha Sftware Develpment Life Cycle Alha Offshre SDLC Prcess Alha Technlgy fllws a sftware develpment methdlgy that is derived frm Micrsft Slutins Framewrk and Ratinal Unified Prcess (RUP). Our prcess methdlgy

More information

DB2 10 for z/os System Administration. Day(s): 5. Overview

DB2 10 for z/os System Administration. Day(s): 5. Overview DB2 10 fr z/os System Administratin Day(s): 5 Curse Cde: CV851G Overview The curse is updated fr DB2 10 fr z/os. This is the Classrm versin f Instructr-led Online Curse (3V851GB). Administratrs f DB2 10

More information

Contents: Module. Objectives. Lesson 1: Lesson 2: appropriately. As benefit of good. with almost any planning. it places on the.

Contents: Module. Objectives. Lesson 1: Lesson 2: appropriately. As benefit of good. with almost any planning. it places on the. 1 f 22 26/09/2016 15:58 Mdule Cnsideratins Cntents: Lessn 1: Lessn 2: Mdule Befre yu start with almst any planning. apprpriately. As benefit f gd T appreciate architecture. it places n the understanding

More information

Btec National in IT Student Assignment package

Btec National in IT Student Assignment package Btec Natinal in IT Student Assignment package Unit: 2 Cmputer Systems Assignment 1 Guide t PC Hardware and System Sftware Deadline: Criteria achieved P1 P2 P3 M1 First draft Referral Yes/N Date Yes/N Date

More information

Date: October User guide. Integration through ONVIF driver. Partner Self-test. Prepared By: Devices & Integrations Team, Milestone Systems

Date: October User guide. Integration through ONVIF driver. Partner Self-test. Prepared By: Devices & Integrations Team, Milestone Systems Date: Octber 2018 User guide Integratin thrugh ONVIF driver. Prepared By: Devices & Integratins Team, Milestne Systems 2 Welcme t the User Guide fr Online Test Tl The aim f this dcument is t prvide guidance

More information

CXA Basic Administration for Citrix XenApp 6

CXA Basic Administration for Citrix XenApp 6 CXA-204-2 Basic Administratin fr Citrix XenApp 6 Basic Administratin fr Citrix XenApp 6 training curse prvides the fundatin necessary fr administratrs t effectively centralize and manage applicatins in

More information

WinEst 15.2 Installation Guide

WinEst 15.2 Installation Guide WinEst 15.2 Installatin Guide This installatin guide prvides yu with step-by-step instructins n hw t install r upgrade WinEst. Fr a successful installatin, ensure that all machines meet the requirements.

More information

Andrid prgramming curse Sessin bjectives Intrductin URL & HttpCnnectin Netwrking APIs Using URL t read data Using HttpCnnectin pst data Reading netwrk state Web Service SOAP REST By Võ Văn Hải Faculty

More information

App Orchestration 2.6

App Orchestration 2.6 App Orchestratin 2.6 Terminlgy in App Orchestratin 2.6 Last Updated: July 8, 2015 Page 1 Terminlgy Cntents Elements f App Orchestratin... 3 Dmains... 3 Multi-Datacenter Deplyments... 4 Delivery Sites...

More information

Application Note. Digi Connect Wi-SP Troubleshooting Guide. Digi Technical Support 10 May 2016

Application Note. Digi Connect Wi-SP Troubleshooting Guide. Digi Technical Support 10 May 2016 Applicatin Nte Digi Cnnect Wi-SP Trubleshting Guide Digi Technical Supprt 10 May 2016 Cntents 1 Intrductin... 3 1.1 Assumptins... 3 1.2 Crrectins... 3 2 Quick Facts... 3 2.1 Cmmn Questins Abut the Cnnect

More information

GMU SWE645, Spring Component-based Software Development SWE 645, Spring Semester 2006

GMU SWE645, Spring Component-based Software Development SWE 645, Spring Semester 2006 Cmpnent-based Sftware Develpment SWE 645, Spring Semester 2006 Instructr: Dr. Nick Duan Email: nduan@gmu.edu URL: http://ise.gmu.edu/~nduan/swe645 Office Hurs: Anytime electrnically r 20 min befre class

More information

CNS-301 Citrix NetScaler 10.5 Advanced Implementation

CNS-301 Citrix NetScaler 10.5 Advanced Implementation CNS-301 Citrix NetScaler 10.5 Advanced Implementatin Curse Overview This curse prvides the fundatin t manage, cnfigure and mnitr advanced features and cmpnents f Citrix NetScaler 10.5. Interactive discussin

More information

Supported System Requirements for DRC CTB LAS Links Online Testing Effective August September 2017

Supported System Requirements for DRC CTB LAS Links Online Testing Effective August September 2017 Supprted System Requirements fr DRC CTB LAS Links Online Testing Effective August September 2017 This dcument describes the current system requirements fr the DRC INSIGHT Online Testing System and Central

More information

Supported System Requirements for ACCESS for ELLs 2.0 and Screener. Effective June September 2018

Supported System Requirements for ACCESS for ELLs 2.0 and Screener. Effective June September 2018 Supprted System Requirements fr ACCESS fr ELLs 2.0 and Screener Effective June September 2018 This dcument describes the current system requirements recmmended by WIDA fr the DRC INSIGHT Online Testing

More information

Customized RTU for Local and Remote Supervision

Customized RTU for Local and Remote Supervision AUSTRALIAN JOURNAL OF BASIC AND APPLIED SCIENCES ISSN:1991-8178 EISSN: 2309-8414 Jurnal hme page: www.ajbasweb.cm Custmized RTU fr Lcal and Remte Supervisin 1 Mayssa Hajar, 2 Raed ElRafei, 3 Khaled Muchref

More information

Course Name: VMware vsphere: Install, Configure, Manage [V6.5] Duration: 5 Days

Course Name: VMware vsphere: Install, Configure, Manage [V6.5] Duration: 5 Days Curse Name: VMware vsphere: Install, Cnfigure, Manage [V6.5] Duratin: 5 Days Overview: This five-day curse features intensive hands-n training that fcuses n installing, cnfiguring, and managing VMware

More information

UFuRT: A Work-Centered Framework and Process for Design and Evaluation of Information Systems

UFuRT: A Work-Centered Framework and Process for Design and Evaluation of Information Systems In: Prceedings f HCI Internatinal 2007 UFuRT: A Wrk-Centered Framewrk and Prcess fr Design and Evaluatin f Infrmatin Systems Jiajie Zhang 1, Keith A. Butler 2 1 University f Texas at Hustn, 7000 Fannin,

More information

1 Getting and Extracting the Upgrader

1 Getting and Extracting the Upgrader Hughes BGAN-X 9211 Upgrader User Guide (Mac) Rev 1.2 (6-Jul-17) This dcument explains hw t use the Hughes BGAN Upgrader prgram fr the 9211 User Terminal using a Mac Nte: Mac OS X Versin 10.4 r newer is

More information

SOLA and Lifecycle Manager Integration Guide

SOLA and Lifecycle Manager Integration Guide SOLA and Lifecycle Manager Integratin Guide SOLA and Lifecycle Manager Integratin Guide Versin: 7.0 July, 2015 Cpyright Cpyright 2015 Akana, Inc. All rights reserved. Trademarks All prduct and cmpany names

More information

CXD-203: Managing App and Desktop Solutions with Citrix XenApp and XenDesktop 7.6

CXD-203: Managing App and Desktop Solutions with Citrix XenApp and XenDesktop 7.6 CXD-203: Managing App and Desktp Slutins with Citrix XenApp and XenDesktp 7.6 Curse Overview The Managing App and Desktp Slutins with Citrix XenApp and XenDesktp 7.6 curse prvides students with the skills

More information

Troubleshooting Citrix- Published Resources Configuration in VMware Identity Manager

Troubleshooting Citrix- Published Resources Configuration in VMware Identity Manager Trubleshting Citrix- Published Resurces Cnfiguratin in VMware Identity Manager VMware Identity Manager A U G U S T 2 0 1 7 V1 Table f Cntents Overview... 1 Supprted Versins f Cmpnents... 1 Prerequisites...

More information

Multi-Session Terminal. 8 concurrent and independent virtual terminals Each virtual terminal can connect automatically. Multi-Host Terminal

Multi-Session Terminal. 8 concurrent and independent virtual terminals Each virtual terminal can connect automatically. Multi-Host Terminal UNIX AX 3000 ETHERNET TCP/IP VGA clur Platine Terminal with integrated Print and TTY servers Multi-Sessin Terminal 8 cncurrent and independent virtual terminals Each virtual terminal can cnnect autmatically

More information

Analysing Big Data with Microsoft R

Analysing Big Data with Microsoft R Analysing Big Data with Micrsft R Analysing Big Data with Micrsft R Curse Cde: 20773 Certificatin Exam: 70-773 Duratin: 3 Days Certificatin Track: MCSA: Machine Learning Frmat: Classrm Level: 300 Abut

More information

WDBWL v1.2 Cisco Deploying Basic Wireless LANs

WDBWL v1.2 Cisco Deploying Basic Wireless LANs WDBWL v1.2 Cisc Deplying Basic Wireless LANs Curse Length: 3 Curse Delivery: Traditinal Classrm Online Live Curse Overview This 3-day instructr-led, hands-n curse is designed t give yu a firm understanding

More information

Getting Started with the SDAccel Environment on Nimbix Cloud

Getting Started with the SDAccel Environment on Nimbix Cloud Getting Started with the SDAccel Envirnment n Nimbix Clud Revisin Histry The fllwing table shws the revisin histry fr this dcument. Date Versin Changes 09/17/2018 201809 Updated figures thrughut Updated

More information

BMC Remedyforce Integration with Remote Support

BMC Remedyforce Integration with Remote Support BMC Remedyfrce Integratin with Remte Supprt 2003-2018 BeyndTrust, Inc. All Rights Reserved. BEYONDTRUST, its lg, and JUMP are trademarks f BeyndTrust, Inc. Other trademarks are the prperty f their respective

More information

HPE LoadRunner Best Practices Series. LoadRunner Upgrade Best Practices

HPE LoadRunner Best Practices Series. LoadRunner Upgrade Best Practices HPE LadRunner Best Practices Series LadRunner 12.50 Upgrade Best Practices Dcument publicatin date: Nvember 2015 Cntents 1. Intrductin... 3 Overview... 3 Audience... 3 2. Preparatin... 3 Backup assets...

More information

Querying Data with Transact SQL

Querying Data with Transact SQL Querying Data with Transact SQL Curse Cde: 20761 Certificatin Exam: 70-761 Duratin: 5 Days Certificatin Track: MCSA: SQL 2016 Database Develpment Frmat: Classrm Level: 200 Abut this curse: This curse is

More information

Varargs Training & Software Development Centre Private Limited, Web Component Development using Servlets and JSP

Varargs Training & Software Development Centre Private Limited, Web Component Development using Servlets and JSP Advance Java Curriculum Web Cmpnent Develpment using Servlets and JSP INTRODUCTION TO J2EE & WEB APPLICATION What is web applicatin Intrductin with URL, Query String Web Server, Client & Server side script

More information

CNS-207 Implementing Citrix NetScaler 10.5 for App and Desktop Solutions

CNS-207 Implementing Citrix NetScaler 10.5 for App and Desktop Solutions CNS-207 Implementing Citrix NetScaler 10.5 fr App and Desktp Slutins Curse Overview The bjective f Implementing Citrix NetScaler 10.5 fr App and Desktp Slutins is t prvide the fundatinal cncepts and skills

More information

Standardizing On A Set Of Radio Set APIs To Ensure Waveform Portability

Standardizing On A Set Of Radio Set APIs To Ensure Waveform Portability Standardizing On A Set Of Radi Set APIs T Ensure Wavefrm Prtability Glenn Fgarty Embedded Sftware Engineer The Being Cmpany, Anaheim, CA glenn.a.fgarty@being.cm (714) 762-0137 Wavefrm Applicatin Prtability

More information

FollowMe. FollowMe. Q-Server Quick Integration Guide. Revision: 5.4 Date: 11 th June Page 1 of 26

FollowMe. FollowMe. Q-Server Quick Integration Guide. Revision: 5.4 Date: 11 th June Page 1 of 26 Q-Server Quick Integratin Guide Revisin: 5.4 Date: 11 th June 2009 Page 1 f 26 Cpyright, Disclaimer and Trademarks Cpyright Cpyright 1997-2009 Ringdale UK Ltd. All rights reserved. N part f this publicatin

More information

Troubleshooting of network problems is find and solve with the help of hardware and software is called troubleshooting tools.

Troubleshooting of network problems is find and solve with the help of hardware and software is called troubleshooting tools. Q.1 What is Trubleshting Tls? List their types? Trubleshting f netwrk prblems is find and slve with the help f hardware and sftware is called trubleshting tls. Trubleshting Tls - Hardware Tls They are

More information

Web Application Security Version 13.0 Training Course

Web Application Security Version 13.0 Training Course Web Applicatin Security Versin 13.0 Training Curse SecureSphere Web Applicatin Security Versin 13.0 Required Training Units: 4 (TR-UNIT) Training Units are gd fr 1 year frm the time f purchase. Length:

More information

Point-to-Point Encryption (P2PE)

Point-to-Point Encryption (P2PE) Payment Card Industry (PCI) Pint-t-Pint Encryptin (P2PE) Template fr P2PE Applicatin Reprt n Validatin (Applicatin P-ROV) Applicatin P-ROV Template Fr Applicatins used with PCI P2PE Hardware/Hardware Standard

More information

CS4500/5500 Operating Systems Computer and Operating Systems Overview

CS4500/5500 Operating Systems Computer and Operating Systems Overview Operating Systems Cmputer and Operating Systems Overview Yanyan Zhuang Department f Cmputer Science http://www.cs.uccs.edu/~yzhuang UC. Clrad Springs Ref. MOS4E, OS@Austin, Clumbia, UWisc Overview Recap

More information

Block 1: ZYNQ-7000 Architecture. Objectives:

Block 1: ZYNQ-7000 Architecture. Objectives: Blck 1: ZYNQ-7000 Architecture Describe the architecture and cmpnents that cmprise the Zynq All Prgrammable SC prcessing system (PS) Relate a user design gal t the functin, benefit, and use f the Zynq

More information

HW4 Software version 3. Device Manager and Data Logging LOG-RC Series Data Loggers

HW4 Software version 3. Device Manager and Data Logging LOG-RC Series Data Loggers Page 1 f 18 HW4 Sftware versin 3 Device Manager and Data Lgging LOG-RC Series Data Lggers 2011; Page 2 f 18 Table f cntents 1 ORGANIZATION OF THE HW4 MANUALS... 3 2 OVERVIEW... 4 3 INITIAL SETUP... 4 3.1

More information

Dynamic Storage (ECS)

Dynamic Storage (ECS) User Guide Dynamic Strage (ECS) Swisscm (Schweiz) AG 1 / 10 Cntent 1 Abut Dynamic Strage... 3 2 Virtual drive, the EMC CIFS-ECS Tl... 4 3 Amazn S3 Brwer... 6 4 Strage Gateway Appliance... 9 5 Amazn S3

More information

ITIL 2011 Service Offerings and Agreements (SOA)

ITIL 2011 Service Offerings and Agreements (SOA) IT SERVICE MANAGEMENT ITIL 2011 Service Offerings and Agreements (SOA) CERTIFICATE: DURATION: COURSE DELIVERY: LANGUAGE: ITIL 2011 Service Offerings and Agreements (SOA) 5 Days Classrm, Live Virtual Classrm

More information

WHITE PAPER January 2019 RASPBERRY PI 3B+ AND VMWARE PULSE 1.1. Version 0.1

WHITE PAPER January 2019 RASPBERRY PI 3B+ AND VMWARE PULSE 1.1. Version 0.1 WHITE PAPER January 2019 RASPBERRY PI 3B+ AND VMWARE PULSE 1.1 Versin 0.1 Table f Cntents Executive Summary... 1 Business Case... 1 Slutin Overview... 1 Intrductin... 2 Purpse... 2 Audience... 2 Slutin

More information

Service Level Agreement

Service Level Agreement Service Level Agreement Infrastructure Supprt Service This Infrastructure Supprt Service Level Agreement ( SLA ) is incrprated int the Qute executed by TekLinks and Custmer fr Infrastructure Supprt Services

More information

CSE 3320 Operating Systems Synchronization Jia Rao

CSE 3320 Operating Systems Synchronization Jia Rao CSE 3320 Operating Systems Synchrnizatin Jia Ra Department f Cmputer Science and Engineering http://ranger.uta.edu/~jra Recap f the Last Class Multiprcessr scheduling Tw implementatins f the ready queue

More information

present Advanced MSBI Automate your SDLC

present Advanced MSBI Automate your SDLC present Advanced MSBI Autmate yur SDLC advanced MSBI autmate yur sdlc SUMMARY This 3 days training prgram will allw intermediate t senir Micrsft BI develpers and architects t intrduce elements f DevOps,

More information

Lecture Handout. Database Management System. Overview of Lecture. Vertical Partitioning. Lecture No. 24

Lecture Handout. Database Management System. Overview of Lecture. Vertical Partitioning. Lecture No. 24 Lecture Handut Database Management System Lecture N. 24 Reading Material Database Systems Principles, Design and Implementatin written by Catherine Ricard, Maxwell Macmillan. Database Management Systems,

More information

ADSS Server Evaluation Quick Guide

ADSS Server Evaluation Quick Guide ADSS Server Evaluatin Quick Guide This dcument aims t prvide a quick d this and it wrks guide t evaluating ADSS Enterprise Server as a PDF Signing Server bth fr server-side signing and als fr client-side

More information