Home > Articles > Hardware

This chapter is from the book

Software Components

PC software components depend upon the Operating System (OS) installed. The OS is a set of programs coordinating all work activity in the PC. Without it and other software, the PC does nothing but heat the room.

The most common PC operating systems are:

  • DOS—The original PC operating system is used to set up and sometimes to troubleshoot PCs. DOS makes the functionality of the computer hardware accessible for running the Windows setup. DOS is the basic set of computer instructions that manages the flow of information in the PC.

  • WindowsThere are several major iterations of Windows: Windows 3.x, Windows 95, Windows 98, and Windows Millennium Edition (Me). Windows Me is the operating system that was delivered with most new PCs. It provides a graphical user interface (GUI) and multitasking capabilities. A version of Windows XP is now filling that role.

  • Windows NTThis is the network server and industrial strength operating system for PCs. It provides a GUI similar to Windows 9x. Windows NT is a more robust operating system than Windows with better isolation of DOS, Windows, and Windows NT applications from each other. This makes for a more reliable operating environment.

  • Windows 2000This is the operating system that has evolved from Windows NT. The user interface is virtually identical to Windows Me. Underneath the user interface is an improved Windows operating system based upon the same core technology used in Windows NT servers. Windows 2000 supports a variety of CPU chips (Windows Me runs only on Pentium and Pentium-compatible CPU chips), runs on two CPUs simultaneously, and supports plug-and-play hardware components. In the long term, variations of Windows 2000, soon to be called Windows XP, will become the Microsoft operating system delivered with all Windows PCs. There are server and workstation versions of Windows 2000. The workstation version of Windows 2000 is called Windows 2000 Professional.

Each operating system has several major components.

DOS

DOS is not a knowledge objective of the current A+ certification. However, DOS is still an important operating system because hardware diagnostic and configuration programs use it. For example, a DOS program in most cases performs updating a PC BIOS by flashing NVRAM. Further, DOS commands are implemented in all Windows operating systems.

The PC DOS components are:

  • COMMAND.COM—This is the command interpreter for DOS. Commands typed on the keyboard at the DOS user command prompt are processed first by COMMAND.COM. It interprets the command and initiates the other software activities to complete the command. COMMAND.COM interfaces to MSDOS.COM through the DOS Application Programming Interface (API).

  • MSDOS.SYS—This performs the tasks and schedules the programs required to accomplish the DOS commands. This component is the heart and hands of DOS.

  • IO.SYS—This DOS component handles the detailed I/O activities of DOS. It interfaces to device driver programs that perform the most detailed hardware operation and control activities. IO.SYS works in conjunction with device driver software for standard and special PC hardware.

  • Device drivers—Device drivers tell DOS how to interface properly with an external device and are specified by DEVICE= statements in CONFIG.SYS. Some DOS device drivers are:

    • SMARTDRIVE.EXE—Manages the disk cache and double buffering for SCSI drives

    • HIMEM.SYS—Provides access to extended memory

    • EMM386.EXE—Manages the upper memory area and creates expanded memory from extended memory

  • Application programs—Application program software interfaces with DOS to use the PC hardware to perform useful work for us. It is through the application program that we see the PC. Under DOS, the application program may have its own device drivers and command interpreter functions. Applications are typically a single large program loaded entirely into memory along with the data being worked upon.

DOS as an operating system runs one program at a time. It provides a command-line user interface. See Figure 1–36.

Figure 1-36Figure 1–36 DOS architecture.

Windows Components

Similar to DOS, Windows 3.x knowledge is no longer an A+ certification objective. However, all Windows operating systems have evolved from the first Windows operating system. Windows 3.x best illustrates the evolution from DOS to Windows and helps us understand the further evolution of the current Windows operating systems.

Windows 3.x expanded upon DOS. It used the basic DOS disk and memory driver programs to perform I/O operations. Windows 3.x substitutes a multitasking KRNL.EXE program for MSDOS.SYS and adds to it GUI components, GDI.EXE and USER.EXE. In this manner, Windows 3.x expands on the foundation laid with DOS to provide the cooperative multitasking operating system with a GUI. See Figure 1–37.

Figure 1-37Figure 1–37 Windows 3.x structure.

Windows 3.x components are:

  • Windows Virtual Machine (VM)—The VM program manages the execution of all Windows applications, performing the cooperative multitasking between them.

  • KRNL.EXE—The kernel is the scheduling program managing the DOS and Windows VMs.

  • GDI.EXE—The GDI program is one half of the GUI. It handles the PC display and other graphical devices.

  • USER.EXE—This is the user graphical interface program monitoring user mouse operations and similar tasks. This is the Windows equivalent to the DOS COMMAND.COM.

Windows 95, Windows 98, and Windows Me are referred to here collectively as Windows 9x. Windows 9x components are generally the same as those for Windows 3.x. However, they function differently to provide improved multitasking and GUI features. The improved features are due to Windows 9x incorporating improved file management, networking, Virtual Machine Manager (VMM), and device drivers as shown in Figure 1–38.

Figure 1-38Figure 1–38 General Windows 9x system structure.

The Windows 9x overall architecture has the same basic components. These are:

  • VM—Manages execution of both Windows 16-bit and 32-bit applications. Multitasking has been changed from cooperative multitasking to preemptive multitasking. In preemptive multitasking, no application program can dominate the VM as was possible with cooperative multitasking.

  • API layerConsists of the Windows kernel, the GDI, and user interface programs. The KRNL386.EXE still manages DOS and Windows VMs. The DOS VMs are not shown in Figure 1–38. The GDI.EXE program supports font scaling, color management, printing, and all the drawing on the screen. Finally, the USER.EXE program creates windows and controls mouse movement, dialogue boxes, and message handling and similar functions.

  • Base systemSupports the system VM and the API layer. The base system is responsible for handling key functions implemented in the Windows 9x operating system.

A powerful feature of Windows 9x is its VMs. Under Windows 3.x, VMs used the 80386 CPU virtual 8086 operating mode. In virtual 8086 mode, a VM emulated an 8086 processor with 1 MB of RAM, I/O ports, and CPU registers. Windows 9x VMs are different. A Windows 9x VM contains a memory map of the memory allocated to the application program, identifies any Windows resources allotted to the application, and tracks hardware registers.

Under Windows 9x, there are the system VMs and DOS VMs. The system VM operates in the Pentium CPU's protected mode. All Windows programs, 16 bit or 32 bit, execute from this area and tie themselves into Windows through the API layer. This linkage between the application and the Windows subsystem is made during the program's load sequence. Within this VM, all 16-bit applications share a common address space, common message queue, and memory heaps. This means that, if one 16-bit application crashes, it often corrupts one of these shared areas.

Within this system VM, 16-bit Windows applications are cooperatively multitasked. Windows 32-bit applications do not use shared areas and resources. Each 32-bit application gets its own memory address space from the system VM. The application message queue and the memory heaps reside within its memory address space. The separate memory address spaces for 32-bit applications make them more reliable than 16-bit applications.

DOS VMs are very much like a PC running DOS with 1 MB of memory. The applications running in DOS VMs make service requests of the system, just like they would under DOS, through the Hexadecimal Interrupt 21 (INT21H). These requests, however, are intercepted and passed on to protected-mode code tying into system services. This is similar to the 32-bit file access function of Windows 3.11. Each DOS VM is formed from an invisible VM created during the Windows boot process. This VM contains the global environment for all DOS VMs, including information such as which Terminate-and-Stay-Resident (TSR) programs were loaded from the AUTOEXEC.BAT file. Similar to Windows 3.x, each DOS application runs in its own VM.

The Windows 9x API is designed to maintain backward compatibility to Windows 3.x. Most programs first used with Windows 9x were Windows 3.x applications (Windows 16-bit applications). Windows 9x is a 32-bit operating system, so it also has a 32-bit application API. This 32-bit API is compatible with the Win32 API of Windows NT and Windows 2000. Three main components, the GDI, the user graphical interface program, and the kernel, support the Windows 9x API. All Windows applications use these same modules. The modules additionally have been designed to handle both 32-bit and 16-bit operations.

The Windows 9x base system is comprised of several components including:

  • Device Drivers—Windows 95 uses DOS device drivers as well as newer 32-bit device drivers. Some older DOS applications must have the older drivers loaded in order to function with the PC's hardware components. Windows 95 provides a number of these drivers in the 32-bit form, including those for PCMCIA cards, CD-ROMs, and the mouse.

  • VMM System—This is likely the most important base system component, providing a central core of virtual services. Windows 95 has more than 700 services in the base system, and more than half of those are provided by the VMM. The VMM is a Virtual Device Driver (VxD) that resides in the file DOS386.EXE. It is responsible for handling event coordination (thread supervision), performing interrupt handling, managing memory (virtual and physical), scheduling (time slicing), and controlling the VMs.

  • OS services—This area performs many of the miscellaneous functions of the OS, including fulfilling date and time requests and the plug-and-play configuration system.

  • Network subsystem—The network subsystem is the latest version of the peer-to-peer network, released with Windows for Workgroups. This version uses the file management system as a way to coordinate file access across the network. Because of the Installable File System (IFS) manager, the network subsystem can also provide access to other network systems simultaneously. With the network subsystem comes support for Novell, Transmission Control Protocol/Internet Protocol (TCP/IP), and Server Message Block (SMB).

  • File management system—In Windows 3.1, DOS performed the fixed disk file management functions. This caused most disk operations to be performed in real mode, not in protected mode. Such switching between real and protected mode was inefficient, but necessary, because DOS controlled disk operations. In Windows 9x, Windows controls disk operations with a new file system manager. The IFS manager provides interfaces for local fixed disks, CD-ROMs, and networks.

Windows NT Features and Components

Windows NT components carry the same nomenclature as Windows 3.x and Windows 9x components, but their functionality differs from Windows 9x. From a user perspective, the GUI appears nearly identical, but the VM, API, kernel, and driver programs provide capabilities beyond those of Windows 9x. The Windows NT functionality includes:

  • Large platform support—Windows NT provided support for a wide array of CPU chip platforms, from Intel 386 to Reduced Instruction Set Computer (RISC) processors, like the Million Instructions Per Second (MIPS) R4000 and Digital's Alpha AXP.

  • True 32-bit preemptive multitaskingWindows NT allows preemptive multitasking to DOS, Windows 16-bit, and Windows 32-bit, OS/2, and POSIX applications. The user only learns how to use another application, not another operating system.

  • Easy networkingWindows NT comes with its own networking component built in. It comes with support for TCP/IP networking, Microsoft LAN Manager, Windows for Workgroups, Novell NetWare, Apple Talk, and more.

  • Multiprotocol supportWindows NT supports all key network protocols including TCP/IP, Network Basic Input/Output (NetBIOS) Enhanced User Interface (NETBEUI), and Sequenced Packet Exchange/Internetwork Packet Exchange (SPX/IPX).

  • Large capacitiesWindows NT supports 4 GB of RAM and 16 exabytes of disk space. Disk drive capacity terminology is presented in detail in Chapter 14, but be assured an exabyte is much larger than a gigabyte.

  • Broad file system supportWindows NT provides support for the DOS File Allocation Table (FAT), the OS/2 High Performance File System (HPFS), the Windows NT File System (NTFS), and the CD File System (CDFS).

The same basic architecture as Windows 9x provides these capabilities, including a system VM, an API, and base system functions supporting the system VM and the API. At this point, the similarity ends. Windows NT was written from the ground up to be both a client and a server OS. Its program code is not an improvement on existing Windows programs, but rather all new code designed to be run on high-end PCs and servers. Windows NT provides a user interface similar to Windows 95x.

Windows NT 4.0 lacks the plug-and-play capabilities of Windows 9x and is more limited in the PC hardware that it supports.

Finally, Windows NT was developed without regard for backward compatibility. This means that some Windows 16-bit applications do not run on Windows NT while they run just fine on Windows 9x. In contrast, Windows 9x is not designed to run as network server software. Windows 9x only supports peer-to-peer networking and is not robust enough to operate under heavy networking loads.

Windows NT additional server applications software augments Windows NT by design to customize its functionality to specific networking needs. Microsoft's Structured Query Language (SQL) and Exchange Server programs are examples of such server-centric applications.

Windows 2000

Some Windows 2000 software components have the same names as Windows 9x components. From a user perspective, the interface appears to be the same between Windows Me and Windows 2000. However, underneath, the operating system is very different. The similar Windows NT and Windows 2000 functionality includes:

  • Multiple platform support—Windows 2000 provides support for several CPU chip platforms, from the Intel Pentium Complex Instruction Set Computer (CISC) chips to RISC processors.

  • Robust OSWindows 2000 provides Symmetric Multiprocessing (SMP); 32-bit preemptive multitasking; and the ability to run DOS, Windows 16-bit, Windows 32-bit, and POSIX applications.

  • Network server capabilitiesIt has the ability to act as a network server, providing advanced networking controls, file system security, PC security, and networking security features not found in Windows 9x.

  • Plug-and-play supportWindows 2000 supports a wide variety of multimedia plug-and-play hardware components unlike Windows NT.

  • Reliable operating environmentIt has fewer crashes than Windows 9x. Our experience is that Windows 2000 still vengefully crashes. Such crashes are caused most often by mismatched display driver software, bad network connections, and problematic USB devices. Windows 2000 is very reliable, however, once good drivers are installed.

Windows 2000 provides better memory management, reducing the conflicts between software applications, and provides automatic repair of errant applications. See Figure 1–39. The main reasons for moving to Windows 2000 include:

  • Provides increased reliability and performance over Windows 95 and Windows 98

  • Includes specific features for laptop computers

  • Makes it easier to manage and support with the self-healing application features

  • Includes comprehensive security features

  • Supports USB and IEEE 1394 interfaces

  • Provides an improved user interface over Windows 98

Windows XP is basically the same as Windows 2000 but, with a more modern look and feel.

Study Break: Finding USER.EXE and GDI.EXE

It is time to find key components inside Windows. The two files that we are looking for are USER.EXE and GDI.EXE. These files should be locatable in Windows 95, Windows 98, Windows Me, Windows NT, and Windows 2000 by doing the following:

  1. Click on the Start menu, drag to Find, and finally click on Find Files or Folders.

  2. Type in "User*.*", and then click Find.

  3. Next, type in "GDI*.*", and then click Find.

Both of these files should come right up because they are key components of the Windows operating systems.

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