Home > Store

Win32 System Programming: A Windows 2000 Application Developer's Guide, 2nd Edition

Register your product to gain access to bonus material or receive a coupon.

Win32 System Programming: A Windows 2000 Application Developer's Guide, 2nd Edition

Book

  • Sorry, this book is no longer in print.
Not for Sale

Description

  • Copyright 2001
  • Dimensions: 7-3/8" x 9-1/4"
  • Pages: 544
  • Edition: 2nd
  • Book
  • ISBN-10: 0-201-70310-6
  • ISBN-13: 978-0-201-70310-8

"If you are new to the Win32 API, but have programmed for other high-end operating systems such as UNIX or VMS, then Win32 System Programming is the book for you. HIGHLY RECOMMENDED."

--Christopher L.T. Brown, Windows 2000 Magazine

A practical guide to the central features and functions of the Win32 API, Win32 System Programming, Second Edition, will get you up and running with Windows NT and Windows 2000. Unlike most Windows programming resources, this book focuses exclusively on the core system services--file system, memory, processes, communication, and security--rather than on the more commonly featured graphical user interface functions. Especially geared for those already familiar with UNIX or other high-end operating systems, Win32 System Programming, Second Edition, helps you to build on your knowledge base to learn Win32 features quickly and easily.

This new edition has been updated and enhanced with new coverage of network programming, servers, NT services, thread performance, and synchronization. It also offers a preview of Win64, the new 64-bit API for Windows 2000. Beginning with an examination of the features required in a single-process application, the text gradually progresses to increasingly sophisticated functions relating to a multithreaded environment. You will find extensive coverage of such critical Win32 topics as:

  • The Win32 file system
  • Character I/O and Unicode
  • The registry
  • Structured exception handling
  • Security services
  • Memory management and DLLs
  • Threads, process management, scheduling, and thread synchronization
  • Interprocess communication, featuring pipes and mailslots
  • Network programming with sockets
  • NT services, including the service control handler, event logging, and debugging
  • Asynchronous I/O
  • Remote Procedure Calls
  • Win64, covering architecture, programming models, data types, and legacy code migration
Short, practical examples illustrate each topic, and are included on the accompanying CD-ROM and supporting Web site (http://world.std.com/~jmhart/w32.htm). The appendixes compare Win32, UNIX, and the C library; and provide performance measurements and results.

Win32 System Programming, Second Edition, will give you a solid grounding in the core operating system functions of the Windows environment, an understanding of Win64 for Windows 2000, and the know-how you need to put them to work.

0201703106B04062001

Sample Content

Downloadable Sample Chapter

Click below for Sample Chapter related to this title:
chap2.pdf

Table of Contents



Preface.


1. Getting Started with Win32 and Win64.

Operating System Essentials.

Win32 and Windows 2000, NT, 9x, and CE.

Win32, Standards, and Open Systems.

Win32 Principles.

Getting Ready for Win64.

The Standard C Library: When to Use It for File Processing.

What You Need to Use This Book.

Example: A Simple Sequential File Copy.

Summary.

Exercises.



2. Using the Win32 File System and Character I/O.

The Win32 File Systems.

File Naming.

Opening, Reading, Writing, and Closing Files.

Interlude: Unicode and Generic Characters.

Unicode Strategies.

Standard Devices and Console I/O.

Example: Printing and Prompting.

Example: Error Processing.

Example: Copying Multiple Files to Standard Output.

Example: ASCII to Unicode Conversion.

File and Directory Management.

Example: Printing the Current Directory.

Summary.

Exercises.



3. Advanced File and Directory Processing, and the Registry.

The 64-Bit File System.

File Pointers.

Getting the File Size.

Example: Viewing the Tail of a File.

File Attributes and Directory Processing.

Example: Listing File Attributes.

Example: Setting File Times.

File Processing Strategies.

File Locking.

The Registry.

Registry Management.

Example: Listing Registry Keys and Contents.

Summary.

Exercises.



4. Structured Exception Handling.

Exceptions and Their Handlers.

Floating-Point Exceptions.

Errors and Exceptions.

Example: Treating Errors as Exceptions.

Termination Handlers.

Example: Using Termination Handlers to Improve Program Quality.

Example: Using a Filter Function.

Console Control Handlers.

Example: A Console Control Handler.

Summary.

Exercises.



5. Securing Win32 Objects.

Security Attributes.

Security Overview: The Security Descriptor.

Security Identifiers.

Managing ACLs.

Example: UNIX-Style Permission for NTFS Files.

Example: Initializing Security Attributes.

Reading and Changing Security Descriptors.

Example: Reading File Permissions.

Example: Changing File Permissions.

Overview of Additional Security Features.

Summary.

Exercises.



6. Memory Management, Memory-Mapped Files, and DLLs.

Win32 Memory Management Architecture.

Heaps.

Managing Heap Memory.

Example: Sorting Files with a Binary Search Tree.

Memory-Mapped Files.

Example: Sequential File Processing with Mapped Files.

Example: Sorting a Memory-Mapped File.

Example: Using Based Pointers.

Dynamic Link Libraries.

Example: Explicitly Linking a File Conversion Function.

The DLL Entry Point.

Summary.

Exercises.



7. Process Management.

Windows Processes and Threads.

Process Creation.

Process Identities.

Duplicating Handles.

Exiting and Terminating a Process.

Waiting for a Process to Terminate.

Environment Blocks and Strings.

Example: Parallel Pattern Searching.

Process Execution Times.

Example: Process Execution Times.

Generating Console Control Events.

Example: Simple Job Management.

Job Objects.

Summary.

Exercises.



8. Threads and Scheduling.

Thread Overview.

Thread Basics.

Thread Management.

Using the C Library in Threads.

Example: Multithreaded Pattern Searching.

The Boss/Worker and Other Threading Models.

Example: Merge-Sort — Divide and Conquer to Exploit SMP.

Thread Local Storage.

Process and Thread Priority and Scheduling.

Thread States.

Pitfalls and Common Mistakes.

Timed Waits.

Fibers.

Summary.

Exercises.



9. Thread Synchronization.

The Need for Thread Synchronization.

Thread Synchronization Objects.

The CRITICAL_SECTION Object.

A CRITICAL_SECTION for Protecting Shared Variables.

Example: A Simple Producer/Consumer System.

Mutexes.

Semaphores.

Events.

Example: A Producer/Consumer System.

Example: Synchronization Performance Impact.

More Mutex and CRITICAL_SECTION Guidelines.

More Interlocked Functions.

Memory Management Performance Considerations.

Summary.

Exercises.



10. Advanced Thread Synchronization.

Mutexes, Events, and the Condition Variable Model.

Example: A Threshold Barrier Object.

A Queue Object.

Example: Using Queues in a Multistage Pipeline.

Hints for Designing, Debugging, and Testing.

Summary.

Exercises.



11. Interprocess Communication.

Anonymous Pipes.

Example: I/O Redirection Using an Anonymous Pipe.

Named Pipes.

Named Pipe Transaction Functions.

Example: A Client/Server Command Line Processor.

Comments on the Client/Server Command Line Processor.

Mailslots.

Pipe and Mailslot Creation, Connection, and Naming.

Example: A Server That Clients Can Locate.

Comments on Thread Models.

Summary.

Exercises.



12. Network Programming with Windows Sockets.

Windows Sockets.

Socket Server Functions.

Socket Client Functions.

Comparing Named Pipes and Sockets.

Example: A Socket Message Receive Function.

Example: A Socket-Based Client.

Example: A Socket-Based Server with New Features.

In-Process Services.

Line-Oriented Messages, DLL Entry Points, and TLS.

Example: A Thread-Safe DLL for Socket Messages.

Example: An Alternative Thread-Safe DLL Strategy.

Datagrams.

Berkeley vs. Windows Sockets.

Overlapped I/O with Windows Sockets.

Windows Sockets 2.

Summary.

Exercises.



13. NT Services.

Writing NT Services — Overview.

The Main Function.

The ServiceMain Functions.

The Service Control Handler.

Example: A Service "Wrapper".

Managing Windows NT Services.

Summary: Service Operation and Management.

Example: A Service Control Shell.

Sharing Kernel Objects with a Service.

Event Logging.

Notes on Debugging a Service.

Summary.

Exercises.



14. Asynchronous Input/Output and Completion Ports.

Overview of Win32 Asynchronous I/O.

Overlapped I/O.

Example: Synchronizing on a File Handle.

Example: File Conversion with Overlapped I/O and Multiple Buffers.

Extended I/O with Completion Routines.

Example: File Conversion with Extended I/O.

Asynchronous I/O with Threads.

Waitable Timers.

Example: Using a Waitable Timer.

I/O Completion Ports.

Example: A Server Using I/O Completion Ports.

Summary.

Exercises.



15. Remote Procedure Calls and COM Overview.

Remote Procedure Calls.

Basic RPC Architecture.

RPC Interface Definitions.

Example: An Interface Definition.

Example: An RPC Client.

Example: An RPC Server.

A Brief COM and DCOM Overview.

Summary.

Exercises.



16. Win64 Programming.

64-Bit Architecture Overview.

The Win64 Programming Model.

The Data Types.

The Three Win64 Programming Models.

Legacy Code Migration.



Appendix A: Using the Sample Programs.

Disc Organization.

Include File Listings.

Additional Utility Programs.



Appendix B: Win32, UNIX, and C Library Comparisons.

Chapters 2 and 3: File and Directory Management.

Chapter 4: Structured Exception Handling.

Chapter 5: Securing Win32 Objects.

Chapter 6: Memory Management, Memory-Mapped Files, and DLLs.

Chapter 7: Process Management.

Chapter 8: Threads and Scheduling.

Chapters 9 and 10: Thread Synchronization.

Chapter 11: Interprocess Communication.

Chapter 14: Asynchronous I/O.



Appendix C: Performance Results.

Test Configurations.

Performance Measurements.

Running the Tests.



Bibliography.


Index. 0201703106T04062001

Preface

This book shows how to use the Win32 Application Programming Interface (API) and the emerging Win64 API, concentrating on the core system services, including the file system, process and thread management, interprocess communication, network programming, and synchronization. User interfaces, internals, and I/O drivers, although important and interesting topics, are beyond the scope of this book. The examples concentrate on scenarios that are likely to arise in practice, and in many cases the examples can be used as bases for real applications.

The Win32 API is supported by Microsoft's family of 32-bit operating systems: Windows 2000, Windows NT, Windows 98, Windows 95, and Windows CE. Win64, to be supported as a 64-bit interface on Windows 2000, is very similar, and migration issues are discussed as required. There is no doubt that Win32, along with Win64, is an important factor for application developers, in many cases replacing UNIX as the preferred API for application programs targeted at desktop and server systems. Many observers predict that Win32 will become the dominant programming interface, although it appears that UNIX and Win32 will continue to coexist and that each will find its own niche.

Regardless of the outcome of the operating system wars, many experienced programmers will want to learn the Win32 API quickly, and this book is designed to help them do so.

The first objectives are to explain what Win32 is, show how to use it in realistic situations, and do so as quickly as possible without burdening the reader with unnecessary detail. This book is, therefore, not comprehensive, but it explains the central features of the most important functions and shows how to use them in realistic programming situations. Equipped with this knowledge, the reader will be able to use the comprehensive Microsoft reference documentation to explore details, advanced options, and the more obscure functions as requirements or interests dictate. I have found the Win32 API easy to learn using this approach, and I have greatly enjoyed developing Win32 programs, despite occasional frustration. This enthusiasm will show through at times, as it should. This does not mean that I feel that Win32 is necessarily better than other operating system APIs, but it certainly has many attractive features.

Many Win32 books assume that the user is familiar only with 16-bit Windows 3.1 programming. These books spend a great deal of time explaining how processes, virtual memory, interprocess communication, and preemptive scheduling work without showing how to use them in realistic situations. A programmer experienced in UNIX, VAX VMS, IBM MVS, or another high-end operating system--that is, nearly anything other than the long-obsolete Windows 3.1 Win16 API--will be familiar with these concepts and will be impatient to find out how they are implemented in Win32. Most Win32 books also spend a great deal of space on user interface programming. This book avoids the user interface, beyond discussing simple character-based console I/O, in the interest of concentrating on the important core features.

This book takes the point of view that Win32 is just an operating system (OS) API, providing a well understood set of features. Many programmers, regardless of experience level, need to learn Win32 and the Windows operating systems quickly, and an understanding of Win32 is invaluable in discussing subjects such as Microsoft's Component Object Model (COM). The Windows systems, when compared with other systems, have good, bad, and average features and quality. The purpose of this book is to show how to use those features efficiently and in realistic situations to develop useful, high-quality, and high-performance applications.

Audience
  • Anyone who has experience programming in UNIX or another operating system, even Windows 3.1, and who wants to learn about Win32 quickly.
  • Programmers and software engineers who must port existing applications, often in UNIX, to Win32 for operation under Windows 2000 or any of the other Windows platforms. This book contains many comparisons among Win32, UNIX, and standard C library functions and programming models. All common UNIX functionality, including process management, synchronization, file systems, and interprocess communication, is covered in Win32 terms.
  • Programmers who are developing servers or other systems or components in which management of resources such as processes and threads is of primary importance and in which the user interface is of secondary importance.
  • Programmers using COM or DCOM will find much of the information here helpful in understanding COM's DLL usage, thread models, interfaces, and synchronization.
  • Readers starting new projects who are not constrained by the need to port existing code. Many aspects of program design and implementation are covered, and Win32 functions are used to create useful applications and to solve common programming problems.
  • Computer science students at the upperclass undergraduate or beginning graduate level in courses covering systems programming or application development. This book will also be useful to those who are learning multithreaded programming or need to build networked applications. This book would be a useful complementary text to a book such as W. Richard Stevens' Advanced Programming in the UNIX Environment (see the Bibliography) so that students could compare Win32 and UNIX. Students in operating systems courses will find this book to be a useful supplement as it illustrates how a commercially important operating system provides essential OS functionality.

The only other assumption, implicit in all the others, is a knowledge of C programming.

Organization
Chapters are organized topically so that the features required in even a single-threaded application are covered first, followed by process and thread management features, and finally network programming in a multithreaded environment. This organization allows the reader to advance logically from file systems to security, memory management, and file mapping, and then to processes, threads, and synchronization, followed by interprocess and network communication. This organization also allows the examples to evolve in a natural way, much as a developer might create a simple prototype and then add additional capability. The advanced features, such as asynchronous I/O, appear last.

Within each chapter, after introducing the functionality area, such as process management or memory-mapped files, we discuss important Win32 functions and their relationships in detail. Illustrative examples follow. Within the text, only essential parts of programs are listed; complete programs and the required include files, utility functions, and the like are in an appendix or on the disc provided with the book. Throughout, we identify those features supported only by Windows 2000 and NT, because Windows 98, 95, and CE do not implement many advanced features. Each chapter suggests related additional reading and gives some exercises. Many exercises address interesting and important issues that did not fit within the normal text, and others allow the reader to explore advanced or specialized topics.

Chapter 1 is a high-level introduction to the Windows OS family and Win32. A simple example program shows the basic elements of Win32 programming style and lays the foundation for more advanced Win32 features. Win64 and migration issues are introduced in Chapter 1, described extensively in Chapter 16, and included throughout the book as required.

Chapters 2 and 3 deal with file systems, console I/O, file locking, and directory management. Unicode, the extended character set used by Windows 2000/NT, is also introduced in Chapter 2. Examples include sequential and direct file processing and a directory traversal program. Chapter 3 ends with a discussion of registry management programming, which is similar in many ways to file and directory management.

Chapter 4 introduces Win32's Structured Exception Handling (SEH) capability, which will be used extensively throughout the book. Many books defer SEH to later chapters, but by introducing it early we will be able to use SEH throughout and thus simplify some programming tasks and improve quality.

Chapter 5 explains Windows NT object security, showing, in an example, how to emulate UNIX-style file permissions. Security upgrades can then be applied to the examples as appropriate. Although security is used in the later chapters, feel free to skip this chapter if you are not interested in this topic.

Chapter 6 treats Win32 memory management and shows how to use memory-mapped files both to simplify programming and for performance. This chapter also covers dynamic link libraries (DLLs).

Chapter 7 introduces Win32 processes, process management, and simple process synchronization. Chapter 8 then describes thread management in similar terms. Examples in each chapter show the many benefits, including program simplicity and performance, of threads and processes.

Chapters 9 and 10 provide an extended, in-depth treatment of Win32 thread synchronization, one of Win32's strong features. Synchronization is a complex topic, and these two chapters use extended examples and well understood models to help you obtain the programming and performance benefits of threads while avoiding many of the pitfalls.

Chapters 11 and 12 are concerned with interprocess and interthread communication and networking. Chapter 11 concentrates on the features that are properly part of Win32--namely, pipes, named pipes, and mailslots. Chapter 12 treats Windows Sockets, which allow interoperability with non-Windows systems using industry-standard protocols, primarily TCP/IP. Windows Sockets, while not strictly part of Win32, provide for network and Internet communication and interoperability, and the subject matter is consistent with the rest of the book. A multithreaded client/server system illustrates how to use interprocess communication along with threads.

Chapter 13 describes how Windows 2000 and Windows NT provide "NT services" that allow you to manage background servers, such as the ones created in Chapters 11 and 12. Some small programming changes will turn the servers into NT services.

Chapter 14 shows how to use overlapped I/O with events and completion routines. For file systems, this feature applies only to Windows 2000 and NT, and you can achieve much the same thing with threads. The closely related I/O completion ports are, however, necessary for scalable multithreaded servers, so this feature is illustrated with the servers created in Chapters 11, 12, and 13. Waitable timers are described, because they require concepts first introduced in Chapter 14.

Chapter 15 concludes with a survey of two specialized topics: Remote Procedure Calls (RPCs) and Microsoft's COM object model, which integrates many of the concepts in the book. Remote procedures and COM objects frequently use the features described throughout this book. Simple examples are included, and this chapter illustrates that readers now have the necessary information to learn other Win32 topics beyond the core system services.

Chapter 16 describes the Win64 programming issues and how to plan for application migration and portability.

There are three appendices. Appendix A describes the programs on the disc and how to use them. Appendix B contains several tables that compare Win32 functions with their counterparts in UNIX and the Standard C library. Appendix C compares the performance of alternative implementations of some of the examples in the text so that you can gauge the trade-offs between Win32 features, both basic and advanced, and the C library.

Notes on the Second Edition
The Second Edition includes extensive new material along with significant updating and reorganization. Objectives of the Second Edition include:

  • Cover Windows 2000 and Win64 migration.
  • Provide increased coverage of threads and synchronization. Chapter 10 is new, as are the examples in Chapter 9.
  • Add coverage of sockets and remote procedure calls (Chapters 12 and 15) and NT services (Chapter 13), thereby dealing with issues that are important when developing services and servers, particularly for Windows 2000.
  • Describe the performance implications of threads and synchronization in more depth (Chapters 9 and 10).
  • Incorporate reader and student feedback to fix defects, improve explanations, improve the organization, and address numerous small details.

UNIX and C Library Notes and Tables
Within the text at appropriate points, we contrast Win32 style and functionality with the comparable UNIX (and LINUX) and ANSI Standard C library features. Tables listing the comparable functions are presented in Appendix B. This information is included because many readers are familiar with UNIX and are interested in the comparisons between the two systems. Readers without a UNIX background should feel free to skip these paragraphs. Such discussions are indented, in a smaller font.

Examples
The examples are designed to do the following:

  • Illustrate common, representative, and useful applications of the Win32 functions.
  • Correspond to real programming situations encountered in program development, consulting, and teaching. Some of my clients and course participants have used the code examples as the bases for their own systems. During my consulting activities, I frequently encounter code that is similar to that used in the examples, and on several occasions I have seen code taken directly from the First Edition. (Feel free to do so yourself, and an acknowledgment in your documentation would be greatly appreciated.) Frequently, this code occurs as part of COM or C++ objects. The examples are "real-world" examples and solve "real-world" problems.
  • Emphasize how the functions actually behave and interact, which is not always as you might first expect after reading the documentation. Throughout this book, the text and the examples concentrate on interactions between functions rather than the functions themselves.
  • Grow and expand, adding new capability to a previous solution in an easy and natural manner and exploring alternative implementation techniques.
  • In the earlier chapters, many examples implement UNIX commands, such as ls, touch, chmod, and sort, showing the Win32 functions in a familiar context while creating a useful set of utilities. Different implementations of the same command will also give us an easy way to compare performance benefits available with advanced Win32 features. Appendix C contains the results of these performance tests.

Examples in the early chapters are usually short, but the later chapters present longer examples when appropriate.

Exercises at the end of each chapter suggest alternative designs, subjects for investigation, and additional functionality that is important but beyond the scope of this book. Some exercises are easy, and a few are very challenging. Frequently, clearly labeled defective solutions are provided, because fixing the bugs is an excellent way to sharpen skills.

All examples have been debugged and tested under Windows 2000, Windows NT, and, where appropriate, Windows 98 and 95. For Windows NT testing we used Version 4.0, and although the bulk of the development was performed on single-processor, Intel-based systems, many programs were also tested on multiprocessor systems. The client/server applications have been tested using multiple clients simultaneously interacting with a server. Nonetheless, there is no guarantee or assurance of program correctness, completeness, or fitness for any purpose. Undoubtedly, even the simplest examples contain defects or will fail under some conditions; such is the fate of nearly all software. I will, however, gratefully appreciate any messages regarding program defects--and, better still, fixes.

Book errata, along with additional examples, reader contributions, additional explanations, and much more, will be maintained at my home page: http://world.std.com/~jmhart. The code will be updated as required when defects are found and fixed and as reader input is received. If you encounter any difficulties with the programs or any material in the book, check this location first, because there may already be a fix or explanation. If that does not answer your question, feel free to send e-mail to jmhart@world.std.com.



0201703106P04062001

Updates

Submit Errata

More Information

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020