Windows 2000

It has been suggested that Windows 2000 Server be merged into this article or section. (Discuss)

Windows 2000 (also referred to as Win2K, W2K or Windows NT 5.0) is a preemptible and interruptible, graphical, business-oriented operating system that was designed to work with either uniprocessor or symmetric multi-processor (SMP) 32-bit Intel x86 computers. It is part of the Microsoft Windows NT line of operating systems and was released on February 17, 2000. Windows 2000 comes in four versions: Professional, Server, Advanced Server, and Datacenter Server. Additionally, Microsoft offers Windows 2000 Advanced Server- Limited Edition, which released in 2001 and runs on 64-bit Intel Itanium microprocessors. Windows 2000 is classified as a hybrid-kernel operating system, and its architecture is divided into two modes: user mode and kernel mode. The kernel mode provides unrestricted access to system resources and facilitates the user mode, which is heavily restricted and designed for most applications.

All versions of Windows 2000 have common functionality, including many system utilities such as the Microsoft Management Console (MMC) and standard system management applications such as a disk defragmentation utility. Support for people with disabilities has also been improved by Microsoft across their Windows 2000 line, and they have included increased support for different languages and locale information. All versions of the operating system support the Windows NT filesystem, NTFS 5, the Encrypted File System (EFS), as well as basic and dynamic disk storage. Dynamic disk storage allows different types of volumes to be used. The Windows 2000 Server family has enhanced functionality, including the ability to provide Active Directory services (a hierarchical framework of resources), Distributed file system (a file system that supports sharing of files) and fault-redundant storage volumes.

Windows 2000 can be installed and deployed to an enterprise through either an attended or unattended installation. Unattended installations rely on the use of answer files to fill in installation information, and can be performed through a bootable CD using Microsoft Systems Management Server (SMS), by the System Preparation Tool (Sysprep).

History

Windows 2000 originally descended from the Microsoft Windows NT operating system product line. Originally called Windows NT 5, Microsoft changed the name to Windows 2000 on October 27th, 1998. [1] It was also the first Windows version that was released without a code name, though Windows 2000 Service Pack 1 was codenamed "Asteroid" and Windows 2000 64-bit was codenamed "Janus" (not to be confused with Windows 3.1, which had the same codename). The first beta for Windows 2000 was released on September 27, 1997 and several further betas were released until Beta 3 which was released on April 29, 1999. From here Microsoft issued three release candidates from between July to November 1999 and finally released the operating system to partners on December 12, 1999. [2] The public received the full version of Windows 2000 on February 17, 2000 and the press immediately hailed it as the most stable operating system Microsoft had ever released. Novell, however, was not so impressed with Microsoft's new directory service architecture as they found it to be less scalable or reliable than their own Novell Directory Services (NDS) technology. [3] On September 29, 2000, Microsoft released Windows 2000 Datacenter. Microsoft released Service Pack 1 (SP1) on August 15, 2000, Service Pack 2 (SP2) on May 16, 2001, Service Pack 3 (SP3) on August 29, 2002 and its last Service Pack (SP4) on June 26, 2003. Microsoft has stated that they will not release a Service Pack 5, but instead, have offered an "Update Rollup" for Service Pack 4. Microsoft phased out all development of their Java Virtual Machine (JVM) from Windows 2000 in Service Pack 3.

Windows 2000 has since been superseded by newer Microsoft operating systems. Microsoft has replaced Windows 2000 Server products with Windows Server 2003, and Windows 2000 Professional with Windows XP Professional. Windows Neptune started development in 1999, and was supposed to be the home-user edition of Windows 2000. However, the project lagged in production time – and only one alpha release was built. Windows Me was released as a substitute, and the Neptune project was forwarded to the production of Whistler (Windows XP). The only elements of the Windows project which were included in Windows 2000 were the ability to upgrade from Windows 95 or Windows 98, and support for the FAT32 file system.

Several notable security flaws have been found in Windows 2000. Code Red and Code Red II were famous (and highly visible to the worldwide press) computer worms that exploited vulnerabilities of the indexing service of Windows 2000's Internet Information Services (IIS). In August 2003, two major worms named the Sobig worm and the Blaster worm began to attack millions of Microsoft Windows computers, resulting in the largest down-time and clean-up cost ever. The worms have also had political consequences as many companies in several countries started to call for government action to prevent further damages from Windows worms.

Architecture

The Windows 2000 operating system architecture consists of two layers (user mode and kernel mode), with many different modules within both of these layers.

Windows 2000 is a highly modular system that consists of two main layers: a user mode and a kernel mode. The user mode refers to the mode in which user programs are run. Such programs are limited in terms of what system resources they have access to, while the kernel mode has unrestricted access to the system memory and external devices. All user mode applications access system resources through the executive which runs in kernel mode.

User mode

User mode in Windows 2000 is made of subsystems capable of passing I/O requests to the appropriate kernel mode drivers by using the I/O manager. Two subsystems make up the user mode layer of Windows 2000: the environment subsystem and the integral subsystem.

The environment subsystem was designed to run applications written for many different types of operating systems. These applications, however, run at a lower priority than kernel mode processes. There are three main environment subsystems:

  1. Win32 subsystem runs 32-bit Windows applications and also supports Virtual DOS Machines (VDMs), which allows MS-DOS and 16-bit Windows 3.x (Win16) applications to run on Windows.
  2. OS/2 environment subsystem supports 16-bit character-based OS/2 applications and emulates OS/2 1.3 and 1.x, but not 2.x or later OS/2 applications.
  3. POSIX environment subsystem supports applications that are strictly written to either the POSIX.1 standard or the related ISO/IEC standards.

The integral subsystem looks after operating system specific functions on behalf of the environment subsystem. It consists of a security subsystem (grants/denies access and handles logons), workstation service (helps the computer gain network access) and a server service (lets the computer provide network services).

Kernel mode

Kernel mode in Windows 2000 has full access to the hardware and system resources of the computer. The kernel mode stops user mode services and applications from accessing critical areas of the operating system that they should not have access to.

Each object in Windows 2000 exists in its own namespace. This is a screenshot from SysInternal's WinObj

The executive interfaces with all the user mode subsystems. It deals with I/O, object management, security and process management. It contains various components, including:

  • Object manager: a special executive subsystem that all other executive subsystems must pass through to gain access to Windows 2000 resources. This essentially is a resource management infrastructure service that allows Windows 2000 to be an object oriented operating system.
  • I/O Manager: allows devices to communicate with user-mode subsystems by translating user-mode read and write commands and passing them to device drivers.
  • Security Reference Monitor (SRM): the primary authority for enforcing the security rules of the security integral subsystem. [4]
  • IPC Manager: short for Interprocess Communication Manager, manages the communication between clients (the environment subsystem) and servers (components of the executive).
  • Virtual Memory Manager: manages virtual memory, allowing Windows 2000 to use the hard disk as a primary storage device (although strictly speaking it is secondary storage).
  • Process Manager: handles process and thread creation and termination
  • PnP Manager: handles Plug and Play and supports device detection and installation at boot time.
  • Power Manager: the power manager coordinates power events and generates power IRPs.
  • The display system is handled by a device driver contained in Win32k.sys. The Window Manager component of this driver is responsible for drawing windows and menus while the GDI (graphical device interface) component is responsible for tasks such as drawing lines and curves, rendering fonts and handling palettes.

The Windows 2000 Hardware Abstraction Layer, or HAL, is a layer between the physical hardware of the computer and the rest of the operating system. It was designed to hide differences in hardware and therefore provide a consistent platform to run applications on. The HAL includes hardware specific code that controls I/O interfaces, interrupt controllers and multiple processors.

The microkernel sits between the HAL and the executive and provides multiprocessor synchronization, thread and interrupt scheduling and dispatching, trap handling and exception dispatching. The microkernel often interfaces with the process manager. [5] The microkernel is also responsible for initialising device drivers at bootup that are necessary to get the operating system up and running.

Kernel mode drivers exist in three levels: highest level drivers, intermediate drivers and low level drivers. The Windows Driver Model (WDM) exists in the intermediate layer and was mainly designed to be binary and source compatible between Windows 98 and Windows 2000. The lowest level drivers are either legacy Windows NT device drivers that control a device directly or can be a PnP hardware bus.

Common functionality

Certain features are common across all versions of Windows 2000 (both Professional and the Server versions), among them being NTFS 5, the Microsoft Management Console (MMC), the Encrypting File System (EFS), dynamic and basic disk storage, usability enhancements and multi-language and locale support. Windows 2000 also has several standard system utilities included as standard. As well as these features, Microsoft introduced a new feature to protect critical system files, called Windows File Protection (WFP). This prevents programs (with the exception of Microsoft's update programs) from replacing critical Windows system files and thus making the system inoperable. [6] Microsoft recognised that the infamous Blue Screen of Death (or stop error) could cause serious problems for servers that needed to be constantly running and so provided a system setting that would allow the server to automatically reboot when a stop error occurred. Users have the option of dumping the first 64KB of memory to disk (the smallest amount of memory that is useful for debugging purposes, also known as a minidump), a dump of only the kernel's memory or a dump of the entire contents of memory to disk, as well as write that this event happened to the Windows 2000 event log. In order to improve performance on computers running Windows 2000 as a server operating system, Microsoft gave administrators the choice of optimising the operating system for background services or for applications.

NTFS 5

Windows 2000 supports disk quotas, which can be set via the "Quotas" tab found in the hard disk properties dialog box.

Microsoft released the third version of the NT File System (NTFS) — also known as version 5.0 — in Windows 2000; this introduced quotas, file-system-level encryption (called EFS), sparse files and reparse points. Sparse files allow for the efficient storage of data sets that are very large yet contain many areas that only have zeroes. Reparse points allow the object manager to reset a file namespace lookup and let file system drivers implement changed functionality in a transparent manner. Reparse points are used to implement Volume Mount Points, Directory Junctions, Hierarchical Storage Management, Native Structured Storage and Single Instance Storage. Volume mount points and directory junctions allow for a file to be transparently referred from one file or directory location to another.

Encrypting File System

The Encrypting File System (EFS) introduced strong encryption into the Windows file world. It allowed any folder or drive on an NTFS volume to be encrypted transparently to the end user. EFS works in conjunction with the EFS service, Microsoft's CryptoAPI and the EFS File System Run-Time Library (FSRTL). As of February 2004, its encryption has not been compromised.

EFS works by encrypting a file with a bulk symmetric key (also known as the File Encryption Key, or FEK), which is used because it takes a relatively smaller amount of time to encrypt and decrypt large amounts of data than if an asymmetric key cipher is used. The symmetric key that is used to encrypt the file is then encrypted with a public key that is associated with the user who encrypted the file, and this encrypted data is stored in the header of the encrypted file. To decrypt the file, the file system uses the private key of the user to decrypt the symmetric key that is stored in the file header. It then uses the symmetric key to decrypt the file. Because this is done at the file system level, it is transparent to the user. [7] Also, in case of a user losing access to their key, support for recovery agents that can decrypt files has been built in to the EFS system.

Basic and dynamic disk storage

Windows 2000 introduced the Logical Disk Manager for dynamic storage. All versions of Windows 2000 support three types of dynamic disk volumes (along with basic storage): simple volumes, spanned volumes and striped volumes:

  • Simple volume: this is a volume with disk space from one disk.
  • Spanned volumes: multiple disks spanning up to 32 disks. If one disk fails, all data in the volume is lost.
  • Striped volumes: also known as RAID-0, a striped volume stores all its data across several disks in stripes. This allows better performance because disk read and writes are balanced across multiple disks.

Windows 2000 also added support for iSCSI protocol.

Accessibility support

The Windows 2000 onscreen keyboard map allows users who have problems with using the keyboard to use a mouse to input text.

Microsoft made an effort to increase the usability of Windows 2000 for people with visual and auditory impairments and other disabilities. They included several utilities designed to make the system more accessible:

  • FilterKeys: These are a group of keyboard related support for people with typing issues, and include:
    • SlowKeys: Windows is told to disregard keystrokes that are not held down for a certain time period
    • BounceKeys: multiple keystrokes to one key to be ignored within a certain timeframe
    • RepeatKeys: allows users to slow down the rate at which keys are repeated via the keyboard's keyrepeat feature
  • ToggleKeys: when turned on, Windows will play a sound when either the CAPS LOCK, NUM LOCK or SCROLL LOCK keys are pressed
  • MouseKeys: allows the cursor to be moved around the screen via the numeric keypad instead of the mouse
  • On screen keyboard: assists those who are not familiar with a given keyboard by allowing them to use a mouse to enter characters to the screen
  • SerialKeys: gives Windows 2000 the ability to support speech augmentation devices
  • StickyKeys: makes modifier keys (ALT, CTRL and SHIFT) become "sticky" — in other words a user can press the modifier key, release that key and then press the combination key. Normally the modifier key must remain pressed down to activate the sequence.
  • On screen magnifier: assists users with visual impairments by magnifying the part of the screen they place their mouse over.
  • Narrator: Microsoft Narrator assists users with visual impairments with system messages, as when these appear the narrator will read this out via the sound system
  • High contrast theme: to assist users with visual impairments
  • SoundSentry: designed to help users with auditory impairments, Windows 2000 will show a visual effect when a sound is played through the sound system

Language & locale support

Windows 2000 has support for many languages other than English. It supports Arabic, Armenian, Baltic, Central European, Cyrillic, Georgian, Greek, Hebrew, Indic, Japanese, Korean, Simplified Chinese, Thai, Traditional Chinese, Turkic, Vietnamese and Western European languages. [8] It also has support for many different locales, a list of which can be found on Microsoft's website.

System utilities

The Microsoft Management Console (MMC) is used for administering Windows 2000 computers.

Windows 2000 introduced the Microsoft Management Console (MMC), which is used to create, save, and open administrative tools. Each of the tools is called a console, and most consoles allow an administrator to administer other Windows 2000 computers from one centralised computer. Each console can contain one or many specific administrative tools, called snap-ins. Snap-ins can be either standalone (performs one function), or extensions (adds functionality to an existing snap-in). In order to provide the ability to control what snap-ins can be seen in a console, the MMC allows consoles to be created in author mode or created in user mode. Author mode allows snap-ins to be added, new windows to be created, all portions of the console tree can be displayed and for consoles to be saved. User mode allows consoles to be distributed with restrictions applied. User mode consoles can have full access granted user so they can make whatever changes they desire, can have limited access so that users cannot add to the console but they can view multiple windows in a console, or they can have limited access so that users cannot add to the console and also cannot view multiple windows in a console. [9]

The Windows 2000 Computer Management console is capable of performing many system tasks. It is pictured here starting a disk defragmentation.

The main tools that come with Windows 2000 can be found in the Computer Management console (found in Administrative Tools in the Control Panel). This contains the event viewer — a means of seeing events and the Windows equivalent of a log file, a system information viewer, the ability to view open shared folders and shared folder sessions, a device manager and a tool to view all the local users and groups on the Windows 2000 computer. It also contains a disk management snap-in, which contains a disk defragmenter as well as other disk management utilities. Lastly, it also contains a services viewer, which allows users to view all installed services and to stop and start them on demand, as well as configure what those services should do when the computer starts.

The REGEDIT.EXE utility on Windows 2000. The REGEDT32.EXE utility showing the same part of the registry.

Windows 2000 comes bundled with two utilities to edit the Windows registry. One acts like the Windows 9x REGEDIT.EXE program and the other could edit registry permissions in the same manner that Windows NT's REGEDT32.EXE program could. REGEDIT.EXE has a left-side tree view that begins at "My Computer" and lists all loaded hives. REGEDT32.EXE has a left-side tree view, but each hive has its own window, so the tree displays only keys. REGEDIT.EXE represents the three components of a value (its name, type, and data) as separate columns of a table. REGEDT32.EXE represents them as a list of strings. REGEDIT.EXE was written for the Win32 API and supports right-clicking of entries in a tree view to adjust properties and other settings. REGEDT32.EXE was also written for the Win32 API and requires all actions to be performed from the top menu bar. Because REGEDIT.EXE was directly ported from Windows 98, it does not support permission editing (permissions do not exist in Windows 9x). Therefore, the only way to access the full functionality of an NT registry was with REGEDT32.EXE, which uses the older multiple document interface (MDI), which newer versions of regedit do not use. Windows XP was the first system to integrate these two programs into one, adopting the REGEDIT.EXE behavior with the additional NT functionality.

The System File Checker (SFC) also comes bundled with Windows 2000. It is a command line utility that scans system files and verifies whether they were signed by Microsoft and works in conjunction with the Windows File Protection mechanism. It can also repopulate and repair all the files in the Dllcache folder. [10]

Recovery Console

The Recovery Console is usually used to recover unbootable systems.

The Recovery Console is an application that is run from outside the installed copy of Windows and that enables a user to perform maintenance tasks that cannot be run from inside of the installed copy, or cannot be feasibly run from another computer or copy of Windows 2000. It is usually used, however, to recover the system from errors causing booting to fail, which would render other tools useless.

It presents itself as a simple command line interface. The commands are limited to ones for checking and repairing the hard drive(s), repairing boot information (including NTLDR), replacing corrupted system files with fresh copies from the CD, or enabling/disabling services and drivers for the next boot.

The console can be accessed in one of two ways:

  1. Starting from the Windows 2000 CD, and choosing to enter the Recovery Console instead of continuing with setup, or
  2. Installing the Recovery Console via Winnt32.exe, with the /cmdcons switch. However, the console can then only be used if the system boots to the point where NTLDR can start it.

Server family functionality

The Windows 2000 server family consists of Windows 2000 Server, Windows 2000 Advanced Server and Windows 2000 Datacenter Server. They all have advanced functionality not found in Windows 2000 Professional, among these features are support for DFS, Active Directory and advanced fault-tolerant volumes.

Distributed File System

The Distributed File System, or DFS, allows shares in multiple different locations to be logically grouped under one folder, or DFS root. When users try to access a share that exists off the DFS root, the user is really looking at a DFS link and the DFS server transparently redirects them to the correct file server and share. A DFS root can only exist on a Windows 2000 version that is part of the server family, and only one DFS root can exist on that server.

There can be two ways of implementing DFS on Windows 2000: through standalone DFS, or through domain-based DFS. Standalone DFS allows for only DFS roots that exist on the local computer, and thus does not use Active Directory. Domain-based DFS roots exist within Active Directory and can have their information distributed to other domain controllers within the domain — this provides fault tolerance to DFS. DFS roots that exist on a domain must be hosted on a domain controller or on a domain member server. The file and root information is replicated via the Microsoft File Replication Service (FRS). [11]

Active Directory

Active Directory allows administrators to assign enterprise wide policies, deploy programs to many computers, and apply critical updates to an entire organization, and is one of the main reasons why many corporations have moved to Windows 2000. Active Directory stores information about its users and can act in a similar manner to a phone book. This allows all of the information and computer settings about an organization to be stored in a central, organized database. Active Directory Networks can vary from a small installation with a few hundred objects, to a large installation with millions of objects. Active Directory can organise groups of resources into a single domain and can link domains into a contiguous domain name space together to form trees. Groups of trees that do not exist within the same namespace can be linked together to form forests.

Active Directory can only be installed on a Windows 2000 Server, Advanced Server or Datacenter Server computer, and cannot be installed on a Windows 2000 Professional computer. It requires that a DNS service that supports SRV resource records be installed, or that an existing DNS infrastructure be upgraded to support this functionality. It also requires that one or more domain controllers exist to hold the Active Directory database and provide Active Directory directory services.

Volume fault tolerance

Along with support for simple, spanned and striped volumes, the server family of Windows 2000 also supports fault tolerant volume types. The types supported are mirrored volumes and RAID-5 volumes:

  • Mirrored volumes: the volume contains several disks, and when data is written to one it is mirrored to the other disks. This means that if one disk fails, the data can be totally recovered from the other disk. Mirrored volumes are also known as RAID-1.
  • RAID-5 volumes: a RAID-5 volume consists of multiple disks, and it uses block-level striping with parity data distributed across all member disks. Should a disk fail in the array, the parity blocks from the surviving disks are combined mathematically with the data blocks from the surviving disks to reconstruct the data on the failed drive "on-the-fly" (this works with various levels of success).

Versions

Microsoft released various versions of Windows 2000 to cater to different markets and business needs. It released Windows 2000 Professional, Windows 2000 Server, Windows 2000 Advanced Server and Windows Datacenter Server:

  • Windows 2000 Professional was designed as the desktop operating system for businesses and power users. It is the basic unit of Windows 2000, and the most common. It offers greater security and stability than many of the previous Windows desktop operating systems. It supports up to two processors, and can address up to 4 GBs of RAM.
  • Windows 2000 Server products share the same user interface with Windows 2000 Professional, but contain additional components for running infrastructure and application software. A significant component of the server products is Active Directory, which is an enterprise-wide directory service based on LDAP. Additionally, Microsoft integrated Kerberos network authentication, replacing the often-criticised NTLM authentication system used in previous versions. This also provided a purely transitive-trust relationship between Windows 2000 domains in a forest (a collection of one or more Windows 2000 domains that share a common schema, configuration, and global catalogue, being linked with two-way transitive trusts). Furthermore, Windows 2000 introduced a DNS server which allows dynamic registration of IP addresses.
  • Windows 2000 Advanced Server is a variant of Windows 2000 Server operating system designed for medium-to-large businesses. It offers clustering infrastructure for high availability and scalability of applications and services, including main memory support of up to 8 gigabytes (GB) on Page Address Extension (PAE) systems and the ability to do 8-way SMP. It has support for TCP/IP load balancing and enhanced two-node server clusters based on the Microsoft Cluster Server (MSCS) in the Windows NT Server 4.0 Enterprise Edition.

[12] A limited edition 64 bit version of Windows 2000 Advanced Server was made available via the OEM Channel. It also supports failover and load balancing.

  • Windows 2000 Datacenter Server is a variant of the Windows 2000 Server that is designed for large businesses that move large quantities of confidential or sensitive data frequently via a central server. As with Advanced Server, it supports clustering, failover and load balancing. Its system requirements are normal, but are compatible with vast amounts of power:
    • A Pentium-class CPU at 400 MHz or higher - up to 32 are supported in one machine
    • 256 MB of RAM - up to 64 GB is supported in one machine
    • Approximately 1 GB of available disk space

Deployment

Windows 2000 can be deployed to a site via various methods. It can be installed onto servers via traditional media (such as via CD) or via distribution folders that reside on a shared folder. Installations can be attended or unattended. An attended installation requires the manual intervention of an operator to choose options when installing the operating system. Unattended installations are scripted via an answer file, or predefined script in the form of an INI file that has all the options filled in already. The Winnt.exe or Winnt32.exe program then uses that answer file to automate the installation. Unattended installations can be performed via a bootable CD, using Microsoft Systems Management Server (SMS), via the System Preparation Tool (Sysprep), via running the Winnt32.exe program using the /syspart switch or via running the Remote Installation Service (RIS).

The Syspart method is started on a standardised reference computer — though the hardware need not be similar — and it copies the required installation files from the reference computer's hard drive to the target computer's hard drive. The hard drive does not need to be in the target computer and may be swapped out to it at any time, with hardware configuration still needing to be done later. The Winnt.exe program must also be passed a /unattend switch that points to a valid answer file and a /s file to point to the location of one or more valid installation sources.

Sysprep allows the duplication of a disk image on an existing Windows 2000 Server installation to multiple servers. This means that all applications and system configuration settings will be copied across to the new Windows 2000 installations, but it also means that the reference and target computers must have the same HALs, ACPI support, and mass storage devices — though Windows 2000 automatically detects plug and play devices. The primary reason for using Sysprep is for deploying Windows 2000 to a site that has standard hardware and that needs a fast method of installing Windows 2000 to those computers. If a system has different HALs, mass storage devices or ACPI support, then multiple images would need to be maintained.

Systems Management Server can be used to upgrade system to Windows 2000 to multiple systems. Those operating systems that can be upgraded in this process must be running a version of Windows that can be upgraded (Windows NT 3.51, Windows NT 4, Windows 98 and Windows 95 OSR2.x) and those versions must be running the SMS client agent that can receive software installation operations. Using SMS allows installations to happen over a wide geographical area and provides centralised control over upgrades to systems.

Remote Installation Services (RIS) are a means to automatically install Windows 2000 Professional (and not Windows 2000 Server) to a local computer over a network from a central server. Images do not have to support specific hardware configurations and the security settings can be configured after the computer reboots as the service generates a new unique security ID (SID) for the machine. This is required so that local accounts are given the right identifier and do not clash with other Windows 2000 Professional computers on a network. [13] RIS requires that client computers are able to boot over the network via either a network interface card that has a Pre-Boot Execution Environment (PXE) boot ROM installed or that it has a network card installed that is supported by the remote boot disk generator. The remote computer must also meet the Net PC specification. The server that RIS runs on must be Windows 2000 Server and the server must be able to access a network DNS Service, a DHCP service and the Active Directory services. [14]

Total cost of ownership

In October 2002, Microsoft commissioned IDC to determine the total cost of ownership (TCO) for enterprise applications on Windows 2000 versus the TCO of Linux on the same enterprise applications. IDC looked at security and other infrastructure tasks, and Web Serving. According to the report, Windows 2000 had a lower TCO for four infrastructure items and Linux had a lower TCO for web serving. IDC's report was based on telephone interviews of IT executives and managers of 104 North American companies in which they determined what they were using for a specific workload for file, print, security and networking services.

IDC determined that the four areas where Windows 2000 had a better TCO than Linux — over a period of five years for an average organization of 100 employees — were in the use of file, print, network infrastructure and security infrastructure. They determined, however, that Linux had a better TCO than Windows 2000 when it came to web serving. The report also found that the greatest cost was not in the procurement of software and hardware, but in staffing costs and downtime. The report did not take into consideration the impact of downtime to the profitability of the business (although they did apply a 40% productivity factor, in order to recognize that employees are not entirely unproductive during periods of IT infrastructure downtime) though it did find that Linux servers had less unplanned downtime than Windows 2000 Servers. They found that most Linux servers ran less workload per server than Windows 2000 servers and also found that none of the businesses they interviewed used 4-way SMP Linux computers. IDC also did not take into account specific application servers — servers that need low maintenance and are provided by a specific vendor — when they performed their study. The report did emphasise that TCO was only one factor in considering whether to use a particular IT platform, and also noted that as management and server software improved and became better packaged the overall picture that was being shown in their report could change. [15]


This page about windows 2k includes information from a Wikipedia article.
Additional articles about windows 2k
News stories about windows 2k
External links for windows 2k
Videos for windows 2k
Wikis about windows 2k
Discussion Groups about windows 2k
Blogs about windows 2k
Images of windows 2k

[15].
. The report did emphasise that TCO was only one factor in considering whether to use a particular IT platform, and also noted that as management and server software improved and became better packaged the overall picture that was being shown in their report could change. The Lorin Post in a 1986 edition called them "the ugliest band of the century.". IDC also did not take into account specific application servers — servers that need low maintenance and are provided by a specific vendor — when they performed their study. Also, ticket prices for the tour are rather high; they average about $200.00 USD for a single seat. They found that most Linux servers ran less workload per server than Windows 2000 servers and also found that none of the businesses they interviewed used 4-way SMP Linux computers. It should however be noted that the North American leg of the A Bigger Bang tour is far from finished; there are still fifteen confirmed shows remaining.

The report did not take into consideration the impact of downtime to the profitability of the business (although they did apply a 40% productivity factor, in order to recognize that employees are not entirely unproductive during periods of IT infrastructure downtime) though it did find that Linux servers had less unplanned downtime than Windows 2000 Servers. This breaks the previous North American record, held by the Stones themselves for their 1994 Voodoo Lounge tour, which grossed approximately $120 million. The report also found that the greatest cost was not in the procurement of software and hardware, but in staffing costs and downtime. At the end of 2005, it was announced by tour producer Michael Cohl that the Stones A Bigger Bang tour had made a record-shattering $162 million since the tour opening at Fenway Park in Boston on the 21st of August. They determined, however, that Linux had a better TCO than Windows 2000 when it came to web serving. Before performing "Satisfaction," Jagger made an uncharacteristic comment on their longevity: "We could have played this one at Superbowl One.". IDC determined that the four areas where Windows 2000 had a better TCO than Linux — over a period of five years for an average organization of 100 employees — were in the use of file, print, network infrastructure and security infrastructure. [3] The Stones are also taking part in creating promotions throughout the entire NFL season which feature music from their new album, "A Bigger Bang" and footage from their supporting world tour.

IDC's report was based on telephone interviews of IT executives and managers of 104 North American companies in which they determined what they were using for a specific workload for file, print, security and networking services. The show was produced by Sprint, and it followed in the same vein as the Super Bowl XXXIX half-time show featuring Paul McCartney—a set of straight up rock hits. According to the report, Windows 2000 had a lower TCO for four infrastructure items and Linux had a lower TCO for web serving. The group played during the half-time of Super Bowl XL. IDC looked at security and other infrastructure tasks, and Web Serving. A special overpass is currently being constructed directly between the Copacabana Palace hotel, where they will be staying, and the stage across the street, to ensure their safe passage to and from the concert. In October 2002, Microsoft commissioned IDC to determine the total cost of ownership (TCO) for enterprise applications on Windows 2000 versus the TCO of Linux on the same enterprise applications. On February 18, 2006, they will perform a free concert on Copacabana Beach, Rio de Janeiro, where 1,000,000 spectators are expected.

[14]. On February 1, 2006, the Stones played their first concert at the Baltimore Arena since 1969, possibly the smallest venue they have played or will play for the entire tour. The server that RIS runs on must be Windows 2000 Server and the server must be able to access a network DNS Service, a DHCP service and the Active Directory services. The Stones' huge stage caused extensive damage to the outfield, so that approximately 40,000 square feet (4,000 m²) of sod had to be brought in to repair it, and a subsequent baseball game held at the park three days later had to be pushed back an hour to give the grounds crew more time to complete the repairs. The remote computer must also meet the Net PC specification. The group kicked off their Bigger Bang world tour 2005—2006 with two shows at the historic Fenway Park in Boston. [13] RIS requires that client computers are able to boot over the network via either a network interface card that has a Pre-Boot Execution Environment (PXE) boot ROM installed or that it has a network card installed that is supported by the remote boot disk generator. Toronto has become something of a headquarters for the Stones, and they are considered there Toronto's stepchild of rock and roll.

This is required so that local accounts are given the right identifier and do not clash with other Windows 2000 Professional computers on a network. In the wake of the SARS outbreak, the Stones came to Toronto to host a relief concert. Images do not have to support specific hardware configurations and the security settings can be configured after the computer reboots as the service generates a new unique security ID (SID) for the machine. They have played at smaller venues such as the Palais Royale and The Phoenix prior to the full tour. Remote Installation Services (RIS) are a means to automatically install Windows 2000 Professional (and not Windows 2000 Server) to a local computer over a network from a central server. In the last few years, Toronto, Ontario has been chosen as a pre-tour venue for the Rolling Stones. Using SMS allows installations to happen over a wide geographical area and provides centralised control over upgrades to systems. Launching the tour at the Julliard School in New York, Mick Jagger told reporters that it would not necessarily be their last.

Those operating systems that can be upgraded in this process must be running a version of Windows that can be upgraded (Windows NT 3.51, Windows NT 4, Windows 98 and Windows 95 OSR2.x) and those versions must be running the SMS client agent that can receive software installation operations. The tour is expected to include dates throughout the USA and Canada before going to South America, Asia and Europe. Systems Management Server can be used to upgrade system to Windows 2000 to multiple systems. On May 10, 2005 the Stones announced plans for another world tour starting on August 21st at Fenway Park in Boston. If a system has different HALs, mass storage devices or ACPI support, then multiple images would need to be maintained. The song was reportedly almost dropped from the album due to objections from Richards, who prefers to avoid music that's overtly political or topical, since such songs rarely stand the test of time. The primary reason for using Sysprep is for deploying Windows 2000 to a site that has standard hardware and that needs a fast method of installing Windows 2000 to those computers. The album included perhaps the most controversial song from the Stones in years, "Sweet Neo Con", a criticism of American Neoconservatism from Jagger.

This means that all applications and system configuration settings will be copied across to the new Windows 2000 installations, but it also means that the reference and target computers must have the same HALs, ACPI support, and mass storage devices — though Windows 2000 automatically detects plug and play devices. On July 26, 2005, coinciding with Jagger's birthday, the band announced the name of their new album, A Bigger Bang, which was released September 6th to typically strong reviews, including a glowing write up in Rolling Stone magazine (often noted for its consistent support of the group). Sysprep allows the duplication of a disk image on an existing Windows 2000 Server installation to multiple servers. Charlie Watts later attended the sessions and was reported to be in excellent health after being treated for throat cancer. The Winnt.exe program must also be passed a /unattend switch that points to a valid answer file and a /s file to point to the location of one or more valid installation sources. Was said that the Stones would reconvene after the Christmas holidays and that the tracks recorded so far were significantly different to anything he had worked on with The Stones before. The hard drive does not need to be in the target computer and may be swapped out to it at any time, with hardware configuration still needing to be done later. Jagger and Richards worked on a new studio album in 2004 with producer Don Was at Jagger's residences in southern France and the Caribbean.

The Syspart method is started on a standardised reference computer — though the hardware need not be similar — and it copies the required installation files from the reference computer's hard drive to the target computer's hard drive. In response, other music retail chains (including Tower Records, Virgin Megastore and HMV) pulled all Rolling Stones CDs and related merchandise from their shelves and replaced them with signs explaining the situation. Unattended installations can be performed via a bootable CD, using Microsoft Systems Management Server (SMS), via the System Preparation Tool (Sysprep), via running the Winnt32.exe program using the /syspart switch or via running the Remote Installation Service (RIS). In November of 2003 the band exclusively licensed the right to sell their new 4-DVD boxed set, Four Flicks, recorded on their most recent world tour, to the U.S Best Buy chain of stores. The Winnt.exe or Winnt32.exe program then uses that answer file to automate the installation. On November 9, 2003, the band played its first ever concert in Hong Kong as part of the Harbour Fest celebration. Unattended installations are scripted via an answer file, or predefined script in the form of an INI file that has all the options filled in already. It was attended by an estimated 490,000 people.

An attended installation requires the manual intervention of an operator to choose options when installing the operating system. On July 30, 2003, the band headlined the Molson Canadian Rocks for Toronto concert in Toronto, Ontario, Canada, to help the city recover financially and psychologically from the effects of the 2003 SARS epidemic. Installations can be attended or unattended. The same year, Q magazine named the Rolling Stones as one of the "50 Bands To See Before You Die". It can be installed onto servers via traditional media (such as via CD) or via distribution folders that reside on a shared folder. In 2002, the Rolling Stones released Forty Licks, a greatest hits album that spanned their career, that contained four new songs. Windows 2000 can be deployed to a site via various methods. [2].

It also supports failover and load balancing. They were then sued by Andrew Loog Oldham, who claimed to possess the copyright on the sampled sound recording. [12] A limited edition 64 bit version of Windows 2000 Advanced Server was made available via the OEM Channel. The band handed over 100 percent of their songwriting royalties. It released Windows 2000 Professional, Windows 2000 Server, Windows 2000 Advanced Server and Windows Datacenter Server:. Klein claimed the Verve broke their licence agreement when they used a larger portion than was covered in the license. Microsoft released various versions of Windows 2000 to cater to different markets and business needs. After “Bittersweet Symphony” became a hit single, The Verve was sued by Allen Klein, who owns the copyrights to the Rolling Stones' pre-1970 songs.

The types supported are mirrored volumes and RAID-5 volumes:. The Verve's 1997 hit “Bittersweet Symphony” uses a small five-note sample from an orchestral version of the Rolling Stones’ “The Last Time”. Along with support for simple, spanned and striped volumes, the server family of Windows 2000 also supports fault tolerant volume types. However, Gates, immediately agreed to the amount. It also requires that one or more domain controllers exist to hold the Active Directory database and provide Active Directory directory services. According to legend, Microsoft founder Bill Gates asked Jagger how much the rights to the song would cost; rather than refuse outright, Jagger replied with $13 million — a sum that he thought would self-evidently be outrageously high. It requires that a DNS service that supports SRV resource records be installed, or that an existing DNS infrastructure be upgraded to support this functionality. The Rolling Stones had previously never licensed their music for commercial use.

Active Directory can only be installed on a Windows 2000 Server, Advanced Server or Datacenter Server computer, and cannot be installed on a Windows 2000 Professional computer. (Critics of Windows also noted the song's lyric "You make a grown man cry."). Groups of trees that do not exist within the same namespace can be linked together to form forests. Some critics noted that the group who epitomised the way that rock and roll commercialised earlier rhythm and blues by delivering it to a global audience provided the soundtrack for the corporation which did the same with software. Active Directory can organise groups of resources into a single domain and can link domains into a contiguous domain name space together to form trees. The Stones' song "Start Me Up" was used by Microsoft to launch their Windows 95 operating system. Active Directory Networks can vary from a small installation with a few hundred objects, to a large installation with millions of objects. Both Voodoo Lounge and Bridges to Babylon were highly praised by fans and critics alike.

This allows all of the information and computer settings about an organization to be stored in a central, organized database. Jones was brought back and has remained with the band since the Bridges tour. Active Directory stores information about its users and can act in a similar manner to a phone book. Wimbish was offered the permanent position of bass player by the band, but declined in order to focus on his own material, and so did not play on the ensuing tour. Active Directory allows administrators to assign enterprise wide policies, deploy programs to many computers, and apply critical updates to an entire organization, and is one of the main reasons why many corporations have moved to Windows 2000. Bridges to Babylon (1997) featured another prolific bassist, Doug Wimbish, a journeyman session player and solo artist. [11]. Charlie Watts was asked to choose a bass player, and he selected the respected session musician and Miles Davis and Sting sideman Darryl Jones, who appeared on Voodoo Lounge (1994) and played on the supporting tour.

The file and root information is replicated via the Microsoft File Replication Service (FRS). After his departure, the band continued as a foursome. DFS roots that exist on a domain must be hosted on a domain controller or on a domain member server. In 1991 Bill Wyman finally left the band after years of deliberation and had published Stone Alone, a frank autobiography. Domain-based DFS roots exist within Active Directory and can have their information distributed to other domain controllers within the domain — this provides fault tolerance to DFS. 1989 also saw Stones, along with Ian Stewart, inducted into the Rock and Roll Hall of Fame. Standalone DFS allows for only DFS roots that exist on the local computer, and thus does not use Active Directory. Widely heralded as a return to form, the album even included a song called "Continental Drift" which featured the musicians of the Morroccan mountain village of Joujouka, previously recorded by Brian Jones during the ill-fated 1967 trip to North Africa with Keith Richards and Anita Pallenberg.

There can be two ways of implementing DFS on Windows 2000: through standalone DFS, or through domain-based DFS. In 1989, after they had had time to cool off, Jagger and Richards appeared to bury the hatchet and re-focus on the recording of a new album which would eventually become 1989's Steel Wheels and the subsequent world tour. A DFS root can only exist on a Windows 2000 version that is part of the server family, and only one DFS root can exist on that server. Neither the quality nor the sales of Jagger's solo records (She's the Boss (1985) and Primitive Cool (1987)) lived up to expectations, but ironically, Richards' first solo record, Talk is Cheap (1988), which he had been reluctant to make because of his loyalty to the Stones, was well received by both fans and critics. When users try to access a share that exists off the DFS root, the user is really looking at a DFS link and the DFS server transparently redirects them to the correct file server and share. A bright spot that year was when the Stones were awarded a Grammy for lifetime achievement, but by this point Jagger and Richards had begun openly criticizing each other in the press and many observers assumed the band had broken up. The Distributed File System, or DFS, allows shares in multiple different locations to be logically grouped under one folder, or DFS root. The album again sold poorly, and sales were probably hurt by Jagger's decision not to tour in support of it.

They all have advanced functionality not found in Windows 2000 Professional, among these features are support for DFS, Active Directory and advanced fault-tolerant volumes. Indeed, Jagger was spending a great deal of time on his solo recordings, and much of the material on 1986's turgid Dirty Work was authored solely by Keith Richards. The Windows 2000 server family consists of Windows 2000 Server, Windows 2000 Advanced Server and Windows 2000 Datacenter Server. They performed a tribute concert for Stewart which was their only live appearance during this time. The console can be accessed in one of two ways:. Without his presence, the band could well have imploded countless times. The commands are limited to ones for checking and repairing the hard drive(s), repairing boot information (including NTLDR), replacing corrupted system files with fresh copies from the CD, or enabling/disabling services and drivers for the next boot. It cannot be overstated how important the gentle, cool-headed pianist's contribution to the Rolling Stones had been, from driving the tour van in the early days to keeping the warring band members from each other's throats during some of their darker moments.

It presents itself as a simple command line interface. To add to the band's woes in 1985, road manager Ian Stewart died of a heart attack. It is usually used, however, to recover the system from errors causing booting to fail, which would render other tools useless. This angered Richards, who saw it as a lack of commitment to the band. The Recovery Console is an application that is run from outside the installed copy of Windows and that enables a user to perform maintenance tasks that cannot be run from inside of the installed copy, or cannot be feasibly run from another computer or copy of Windows 2000. In 1982 Jagger had signed a major solo deal with the band's new label, CBS Records. [10]. To make matters worse, Ron Wood was now suffering from his own growing drug habit.

It can also repopulate and repair all the files in the Dllcache folder. It was not without controversy (the video for Undercover of the Night was said to include real assassination footage from Latin America and the guilty-pleasure Too Much Blood was criticized for being inspired too closely by slasher films and imagery). It is a command line utility that scans system files and verifies whether they were signed by Microsoft and works in conjunction with the Windows File Protection mechanism. Despite initial critical enthusiasm (Rolling Stone gave the album four and a half stars), its slick production and violent political and sexual content were coolly received by fans, and it was poorly promoted; the band filmed the accompanying videos in Mexico solely to save money; worse, no tour was forthcoming. The System File Checker (SFC) also comes bundled with Windows 2000. 1983's Undercover was widely seen as Jagger's attempt to make the Rolling Stones' sound more compatible with current musical trends. Windows XP was the first system to integrate these two programs into one, adopting the REGEDIT.EXE behavior with the additional NT functionality. Throughout the early 1980s the Jagger/Richards partnership continued to falter, and their records would suffer because of it.

Therefore, the only way to access the full functionality of an NT registry was with REGEDT32.EXE, which uses the older multiple document interface (MDI), which newer versions of regedit do not use. They also recorded the 'Waiting For a Friend' video at the same time. Because REGEDIT.EXE was directly ported from Windows 98, it does not support permission editing (permissions do not exist in Windows 9x). During this time the Stones recorded the music video 'Start Me Up' at the rehearsal studio number 1. REGEDT32.EXE was also written for the Win32 API and requires all actions to be performed from the top menu bar. Ian Stewart and Bobby Keys were present with the other members of the band for the rehearsals. REGEDIT.EXE was written for the Win32 API and supports right-clicking of entries in a tree view to adjust properties and other settings. jam sessions.

REGEDT32.EXE represents them as a list of strings. They spent two weeks in midnight to eight a.m. REGEDIT.EXE represents the three components of a value (its name, type, and data) as separate columns of a table. In the summer of 1981 the band rehearsed for the Tattoo You tour at Studio Instrument Rentals located at West 52nd Street and 8th Avenue in Manhattan's Hell's Kitchen, at the site of the former Cheetah Club. REGEDT32.EXE has a left-side tree view, but each hive has its own window, so the tree displays only keys. Tattoo You and the subsequent tour were major commercial successes. REGEDIT.EXE has a left-side tree view that begins at "My Computer" and lists all loaded hives. Several songs on the album ("Slave", "Waiting on a Friend" and possibly "Neighbours") featured the prominent jazz saxophonist Sonny Rollins.

One acts like the Windows 9x REGEDIT.EXE program and the other could edit registry permissions in the same manner that Windows NT's REGEDT32.EXE program could. It also featured the hugely popular single "Start Me Up," showing that Richards was still capable of writing monster guitar parts of the same calibre as ten or fifteen years earlier. Windows 2000 comes bundled with two utilities to edit the Windows registry. Tattoo You (1981), was composed partially by using new material and by using unused songs from earlier recording outings (the ballad "Waiting on a Friend" dated back to the Goats Head Soup sessions). Lastly, it also contains a services viewer, which allows users to view all installed services and to stop and start them on demand, as well as configure what those services should do when the computer starts. Emotional Rescue (1980) was in a similar vein, but lacked the redeeming features of its predecessor. It also contains a disk management snap-in, which contains a disk defragmenter as well as other disk management utilities. With the notable exception of the disco-influenced "Miss You" (a hit single and a live staple) and the droll, country-ballad "Far Away Eyes", the songs in this album were fast, basic guitar-driven rock and roll or impeccable ballads like "Beast of Burden" (which prominently features the Richards-Wood guitar-playing style, the ancient form of weaving), and the album was widely praised as both a Stones classic and a summation of late 1970s music trends.

This contains the event viewer — a means of seeing events and the Windows equivalent of a log file, a system information viewer, the ability to view open shared folders and shared folder sessions, a device manager and a tool to view all the local users and groups on the Windows 2000 computer. Jagger and Richards seemed to channel much of the personal turmoil surrounding them into renewed creative vitality. The main tools that come with Windows 2000 can be found in the Computer Management console (found in Administrative Tools in the Control Panel). In 1978 the band recorded Some Girls, their most focused and successful album in years, despite the perceived misogyny of the title track. [9]. What people did not realise at the time was that many punk bands idolised The Stones, Keith Richards in particular, and this does not seem surprising given the band's earlier rebellious image. User mode consoles can have full access granted user so they can make whatever changes they desire, can have limited access so that users cannot add to the console but they can view multiple windows in a console, or they can have limited access so that users cannot add to the console and also cannot view multiple windows in a console. The Clash vocalist Joe Strummer even went so far as to declare "No Elvis, Beatles or Rolling Stones" in their song "1977".

User mode allows consoles to be distributed with restrictions applied. By this time punk rock had become highly influential, and the Stones were increasingly criticized as being decadent, ageing millionaires and their music considered by many to be either stagnant or irrelevant. Author mode allows snap-ins to be added, new windows to be created, all portions of the console tree can be displayed and for consoles to be saved. His marriage would end in 1977. In order to provide the ability to control what snap-ins can be seen in a console, the MMC allows consoles to be created in author mode or created in user mode. He was a regular at New York's Studio 54 disco club, often in the company of model Jerry Hall. Snap-ins can be either standalone (performs one function), or extensions (adds functionality to an existing snap-in). While Richards was settling his legal and personal problems, Jagger continued his jet-set lifestyle.

Each console can contain one or many specific administrative tools, called snap-ins. It also coincided with the end of his relationship with Anita Pallenberg, which had become increasingly strained since the tragic death of their third child (an infant son named Tara). Each of the tools is called a console, and most consoles allow an administrator to administer other Windows 2000 computers from one centralised computer. This motivated a final, concerted attempt to end his drug habit, which proved largely successful. Windows 2000 introduced the Microsoft Management Console (MMC), which is used to create, save, and open administrative tools. The case would drag on for a year, with Richards eventually receiving a suspended sentence and ordered to play a concert for a local charity. [8] It also has support for many different locales, a list of which can be found on Microsoft's website. Keith Richards would have more serious concerns in 1977: despite having spent much of the previous year undergoing a series of drug therapies to help withdraw from heroin, including (allegedly) having his blood filtered, and after a tip-off to the Royal Canadian Mounted Police from Canadian Prime Minister Pierre Trudeau, Richards and Pallenberg were arrested in a Toronto hotel room and charged with possession of heroin.

It supports Arabic, Armenian, Baltic, Central European, Cyrillic, Georgian, Greek, Hebrew, Indic, Japanese, Korean, Simplified Chinese, Thai, Traditional Chinese, Turkic, Vietnamese and Western European languages. Although the Rolling Stones remained hugely popular through the 1970s, music critics had grown increasingly dismissive of the band's output until the seminal late-1970s album Some Girls. Windows 2000 has support for many languages other than English. The mid-1970s were the era of extravagant stage shows from the likes of Queen and Elton John, and the band's tours were to become even more expensive and elaborate in the years to come. They included several utilities designed to make the system more accessible:. Once again, Jagger was, if nothing else, shrewdly interpreting market trends. Microsoft made an effort to increase the usability of Windows 2000 for people with visual and auditory impairments and other disabilities. This represented a further breakdown in Jagger and Richards' relationship —the pragmatic Richards considering it entirely superfluous and distracting from the music.

Windows 2000 also added support for iSCSI protocol. The shows featured a new format for the Stones with their usual act replaced by increasingly theatrical stage props and gimmicks, including a giant inflatable phallus and a cherry picker on which Jagger would soar out over the audience. All versions of Windows 2000 support three types of dynamic disk volumes (along with basic storage): simple volumes, spanned volumes and striped volumes:. Wood had already contributed to It's Only Rock'N'Roll, but his first public act with the band would be the 1975 United States tour. Windows 2000 introduced the Logical Disk Manager for dynamic storage. American session players Wayne Perkins and Harvey Mandel appeared on much of the album, but the band settled on Ron Wood, a long-time friend of Richards' and guitarist with The Faces, whose singer Rod Stewart had recently gone solo. [7] Also, in case of a user losing access to their key, support for recovery agents that can decrypt files has been built in to the EFS system. Guitarists as stylistically far-flung as Humble Pie lead Peter Frampton and ex-Yardbirds impresario Jeff Beck were auditioned.

Because this is done at the file system level, it is transparent to the user. The band used the album's recording sessions (again in Munich) to audition possible replacements. It then uses the symmetric key to decrypt the file. Irked by perceived mistreatment and a small share of the band's royalties, Taylor announced he was leaving the band shortly before sessions started for the next album, Black and Blue (1976). To decrypt the file, the file system uses the private key of the user to decrypt the symmetric key that is stored in the file header. By this time Richards was reportedly berating Taylor during recording sessions, and he contributed little to the album. The symmetric key that is used to encrypt the file is then encrypted with a public key that is associated with the user who encrypted the file, and this encrypted data is stored in the header of the encrypted file. Mick Taylor's intricate lead style lent itself well to the hard-rocking record though his shy persona never quite matched Keith Richards' outspoken image and basic, Chuck Berry-inspired rhythm work.

EFS works by encrypting a file with a bulk symmetric key (also known as the File Encryption Key, or FEK), which is used because it takes a relatively smaller amount of time to encrypt and decrypt large amounts of data than if an asymmetric key cipher is used. Critics generally wrote the album off as uninspired from a band seen as stagnating, but both album and the single of the same name were hits, even without the customary tour to promote them; and, if anything, It's Only Rock'N'Roll was a return to form, being closer to the great albums the band released between 1968 and 1972. As of February 2004, its encryption has not been compromised. Regular producer Jimmy Miller was not asked to participate because of his increasing unreliability and drug use. EFS works in conjunction with the EFS service, Microsoft's CryptoAPI and the EFS File System Run-Time Library (FSRTL). By the time they came to the Musicland studios in Munich to record 1974's It's Only Rock'N'Roll, there were even more problems. It allowed any folder or drive on an NTFS volume to be encrypted transparently to the end user. Many fans and critics regard these as the best Rolling Stones concert recordings.

The Encrypting File System (EFS) introduced strong encryption into the Windows file world. A live recording made in Brussels on 17 October was intended for an official release, but owing to legal problems it appeared only on bootlegs (Nasty Music, The Bedspring Symphony and Brussels Affair). Volume mount points and directory junctions allow for a file to be transparently referred from one file or directory location to another. But the tour of Europe in the fall of 1973 showed the Rolling Stones in top form, particularly Taylor, who played extensive solos on songs like "Midnight Rambler" and "You Can't Always Get What You Want" in an exciting interplay with Richards on rhythm guitar. Reparse points are used to implement Volume Mount Points, Directory Junctions, Hierarchical Storage Management, Native Structured Storage and Single Instance Storage. The making of the record was not helped by another legal battle over drugs, this one dating back to their stay in France. Reparse points allow the object manager to reset a file namespace lookup and let file system drivers implement changed functionality in a transparent manner. Interestingly, the popular ballad "Waiting on a Friend" was recorded during the Goats Head Soup sessions, but not released until Tattoo You, nearly ten years later.

Sparse files allow for the efficient storage of data sets that are very large yet contain many areas that only have zeroes. When it finally arrived, Goats Head Soup (1973) was disappointing, and memorable largely for the hit single "Angie," popularly believed to be about David Bowie's new wife, but in reality another of Richards' odes to Anita Pallenberg. Microsoft released the third version of the NT File System (NTFS) — also known as version 5.0 — in Windows 2000; this introduced quotas, file-system-level encryption (called EFS), sparse files and reparse points. By the time Exile on Main St. had been completed Jagger had made the other band members aware that he was more interested in the celebrity lifestyle than working on its follow-up, and increasingly their records were made piecemeal, with tracks and parts laid down as and when the band, Jagger and Richards in particular, could get together and remain amicable sufficiently long enough to do so. In order to improve performance on computers running Windows 2000 as a server operating system, Microsoft gave administrators the choice of optimising the operating system for background services or for applications. The film Cocksucker Blues, never officially released, documents the subsequent American tour. Users have the option of dumping the first 64KB of memory to disk (the smallest amount of memory that is useful for debugging purposes, also known as a minidump), a dump of only the kernel's memory or a dump of the entire contents of memory to disk, as well as write that this event happened to the Windows 2000 event log. Dismissed by some on its release as sprawling and self-indulgent, the record is now considered among the band's (and rock & roll's) greatest.

[6] Microsoft recognised that the infamous Blue Screen of Death (or stop error) could cause serious problems for servers that needed to be constantly running and so provided a system setting that would allow the server to automatically reboot when a stop error occurred. Using the Rolling Stones Mobile studio, they began recording the double album Exile on Main St. (1972) in the basement of their new home, reputedly using electricity purloined from nearby railway lines. This prevents programs (with the exception of Microsoft's update programs) from replacing critical Windows system files and thus making the system inoperable. Once in France Richards rented a gothic chateau "Villa Nellecote", which had been used as the headquarters for the local Nazi SS during the Second World War, and sublet rooms to the band members and a multitude of assorted hangers-on. As well as these features, Microsoft introduced a new feature to protect critical system files, called Windows File Protection (WFP). Richards, however, adopted a more head-in-the-sand approach, ensconced in his London Cheyne Walk home in a state of insurrection until the very last minute. Windows 2000 also has several standard system utilities included as standard. Bill Wyman, in particular, soon felt at home in his new mountainside house and became friendly with French painter Claude Chagall.

Certain features are common across all versions of Windows 2000 (both Professional and the Server versions), among them being NTFS 5, the Microsoft Management Console (MMC), the Encrypting File System (EFS), dynamic and basic disk storage, usability enhancements and multi-language and locale support. They eventually decided to quit Britain for the South of France, the band members taking to this enforced change of lifestyle with varying degrees of success. The lowest level drivers are either legacy Windows NT device drivers that control a device directly or can be a PnP hardware bus. Pressured by the UK Inland Revenue service for several years of unpaid income tax, their recently appointed accountant Prince Rupert Lowenstein, a 'society' friend of Jagger's, advised the band to move abroad to avoid bankruptcy caused by the high rates of taxation of the Labour government of Harold Wilson. The Windows Driver Model (WDM) exists in the intermediate layer and was mainly designed to be binary and source compatible between Windows 98 and Windows 2000. He married the Nicaraguan model Bianca Perez Moreno de Macias, and the couple's jet-set lifestyle put further distance between himself and Richards. Kernel mode drivers exist in three levels: highest level drivers, intermediate drivers and low level drivers. As Keith Richards removed himself from society, Mick Jagger began to move in more elevated social circles.

[5] The microkernel is also responsible for initialising device drivers at bootup that are necessary to get the operating system up and running. However, all the songs were credited as usual to 'Jagger/Richards' which frustrated Taylor. The microkernel often interfaces with the process manager. Mick Taylor collaborated heavily on this album with Jagger – probably because Richards was unable to contribute as constructively as usual due to his drug problems, and the sprawling " Can't You Hear Me Knocking' " attests to Taylor's influence. The microkernel sits between the HAL and the executive and provides multiprocessor synchronization, thread and interrupt scheduling and dispatching, trap handling and exception dispatching. Sticky Fingers released in March (1971), the band's first album on their own Rolling Stones Records label, continued where Let It Bleed had left off, featuring one of their best known hits "Brown Sugar", the country influenced "Wild Horses" (which caused a disagreement between Gram Parsons and Mick Jagger over songwriting credits), the moody "Moonlight Mile" featuring Paul Buckmaster's evocative string arrangement and one of Jagger's finest vocal performances, and a version of Marianne Faithfull's "Sister Morphine" about her own ambiguous relationship with heroin. The HAL includes hardware specific code that controls I/O interfaces, interrupt controllers and multiple processors. They recorded a final single as a contract obligation, the bawdy, unreleaseable ballad "Cocksucker Blues", and left to form their own record company under the financially astute eye of Mick Jagger.

It was designed to hide differences in hardware and therefore provide a consistent platform to run applications on. The intervening years since they had signed with the record company had seen them become global superstars, and despite overtures they refused to sign a new contract. The Windows 2000 Hardware Abstraction Layer, or HAL, is a layer between the physical hardware of the computer and the rest of the operating system. 1969 saw the end of the band's existing contract with Decca Records. It contains various components, including:. They witnessed the crumbling of the show and as a result refused to play or even be associated with what was occurring. It deals with I/O, object management, security and process management. Contrary to popular belief, The Grateful Dead, and particularly Jerry Garcia, were very opposed to hiring the Hell's Angels at this concert.

The executive interfaces with all the user mode subsystems. Many cultural scholars of the time opined that Altamont marked the de facto end of the sixties. The kernel mode stops user mode services and applications from accessing critical areas of the operating system that they should not have access to. The Altamont concert would be documented in Albert and David Maysles' film Gimme Shelter. Kernel mode in Windows 2000 has full access to the hardware and system resources of the computer. The running battles between fans and security reached a head when Meredith Hunter, a young black fan who had unwisely brought a pistol to the show, was stabbed and beaten to death by the Angels after aiming the firearm at the stage, during the band's performance of "Under My Thumb". It consists of a security subsystem (grants/denies access and handles logons), workstation service (helps the computer gain network access) and a server service (lets the computer provide network services). There are also rumours that they weren't real Angels, but just wannabes out to impress the gang with their toughness [1].

The integral subsystem looks after operating system specific functions on behalf of the environment subsystem. The Angels at Altamont may have in fact been consuming more drugs than most of the concert-goers. There are three main environment subsystems:. However, the American Angels were rather different from the British Angels, who were for the most part harmless Jagger-look-alikes. These applications, however, run at a lower priority than kernel mode processes. The Rolling Stones had hired the local chapter of the Hells Angels to take care of security, as The Grateful Dead had a long and successful history of using the Angels for security. The environment subsystem was designed to run applications written for many different types of operating systems. Jagger's refusal to perform during the day, again to ensure a better film with lighting at night, resulted in an escalation of violence between the 250.000 fans and security.

Two subsystems make up the user mode layer of Windows 2000: the environment subsystem and the integral subsystem. The concert was a disaster. User mode in Windows 2000 is made of subsystems capable of passing I/O requests to the appropriate kernel mode drivers by using the I/O manager. Image:Altamont1.jpg. All user mode applications access system resources through the executive which runs in kernel mode. This led to numerous problems as the event organizers had to scramble to plan the event. Such programs are limited in terms of what system resources they have access to, while the kernel mode has unrestricted access to the system memory and external devices. Jagger's decision to announce at a press conference that the Stones would be performing at the event, possibly to ensure a sufficient audience for the concert movie, resulted in the city of San Francisco denying permits.

The user mode refers to the mode in which user programs are run. Originally, the Stones' appearance was to be a surprise for the festival in San Franciso's Golden Gate Park. Windows 2000 is a highly modular system that consists of two main layers: a user mode and a kernel mode. In an attempt to recreate the atmosphere of Hyde Park, and as a reaction to the Woodstock festival, the tour culminated in a free concert given at Altamont, a disused racetrack located about 40 miles east of San Francisco. The worms have also had political consequences as many companies in several countries started to call for government action to prevent further damages from Windows worms. They blazed a trail for a multitude of stadium tours by the super-bands of the seventies, which continues to this day. In August 2003, two major worms named the Sobig worm and the Blaster worm began to attack millions of Microsoft Windows computers, resulting in the largest down-time and clean-up cost ever. Rather than performing in small and medium sized venues to audiences of screaming girls, they were booked into huge baseball and football stadiums with crowd sizes to match.

Code Red and Code Red II were famous (and highly visible to the worldwide press) computer worms that exploited vulnerabilities of the indexing service of Windows 2000's Internet Information Services (IIS). Away from the stage since 1966, they found that live performing had moved on since then. Several notable security flaws have been found in Windows 2000. This was like no other tour the band had yet undertaken. The only elements of the Windows project which were included in Windows 2000 were the ability to upgrade from Windows 95 or Windows 98, and support for the FAT32 file system. Immediately, the band set off on another US tour, characterised by the hedonism that their position in rock's aristocracy afforded them. Windows Me was released as a substitute, and the Neptune project was forwarded to the production of Whistler (Windows XP). It was to become the defining Rolling Stones album.

However, the project lagged in production time – and only one alpha release was built. An album Let It Bleed followed in December and was rapidly hailed as another classic, featuring the brooding "Gimme Shelter," "You Can't Always Get What You Want" and a further nod to their roots with a cover of Robert Johnson's "Love In Vain". Windows Neptune started development in 1999, and was supposed to be the home-user edition of Windows 2000. It was released on July 3, 1969, co-inciding with the death of Jones, and remains the band's last number 1 single in the UK. Microsoft has replaced Windows 2000 Server products with Windows Server 2003, and Windows 2000 Professional with Windows XP Professional. The band had released the first recording with the new line up, a single called "Honky Tonk Women", which was recorded with Jones but had sections of his guitar part edited out and Taylor's part dubbed in at the last minute. Windows 2000 has since been superseded by newer Microsoft operating systems. The band's performance, under-rehearsed and suffering from some of the remaining members' narcotic intake, was somewhat shambolic and was captured by a Granada Television production team, later to be shown on British television as "Stones in the Park".

Microsoft phased out all development of their Java Virtual Machine (JVM) from Windows 2000 in Service Pack 3. Despite the tragedy, the Hyde Park concert went ahead, with an audience of 200.000 fans, with Jagger reading from Shelley's "Adonais" and releasing hundreds of butterflies by way of tribute to the late guitarist. Microsoft has stated that they will not release a Service Pack 5, but instead, have offered an "Update Rollup" for Service Pack 4. This theory has been continued further by the 2005 film 'Stoned' by Stephen Woolley. Microsoft released Service Pack 1 (SP1) on August 15, 2000, Service Pack 2 (SP2) on May 16, 2001, Service Pack 3 (SP3) on August 29, 2002 and its last Service Pack (SP4) on June 26, 2003. A recent death-bed confession to murder by Frank Thorogood, a builder employed by Jones at the time, has only served to cloud the issue further. [3] On September 29, 2000, Microsoft released Windows 2000 Datacenter. Although his death was recorded as being by misadventure, the cause of the drowning to this day remains a mystery.

Novell, however, was not so impressed with Microsoft's new directory service architecture as they found it to be less scalable or reliable than their own Novell Directory Services (NDS) technology. However, within a month, and a matter of two days before the Stones were due to play a free concert in Hyde Park, London he was dead; found at the bottom of his swimming pool which was surrounded by statues of Christopher Robin and Winnie the Pooh. [2] The public received the full version of Windows 2000 on February 17, 2000 and the press immediately hailed it as the most stable operating system Microsoft had ever released. Milne, drinking heavily in the local pub and planning his comeback with a blues band. From here Microsoft issued three release candidates from between July to November 1999 and finally released the operating system to partners on December 12, 1999. Jones retreated to his Cotchford Farm home in Kent, a house formerly owned by Winnie the Pooh author A.A. The first beta for Windows 2000 was released on September 27, 1997 and several further betas were released until Beta 3 which was released on April 29, 1999. With a reduced contribution to Beggar's Banquet and a minimal one to Let It Bleed he found himself forced out of the band for good after an infamous late-night visit to his rural home from Jagger, Richards and Charlie Watts on June 8th 1969, to be replaced by the young, jazz-influenced guitarist, Mick Taylor, drafted in from John Mayall's Bluesbreakers and unveiled to the media only five days later.

[1] It was also the first Windows version that was released without a code name, though Windows 2000 Service Pack 1 was codenamed "Asteroid" and Windows 2000 64-bit was codenamed "Janus" (not to be confused with Windows 3.1, which had the same codename). The ill-fated Rolling Stones Rock and Roll Circus was one of his last projects with the band and increasingly he was either absent from recording sessions by choice, or simply not invited to attend. Originally called Windows NT 5, Microsoft changed the name to Windows 2000 on October 27th, 1998. An ever-increasing consumption of drugs, however, were making Brian Jones less and less reliable. Windows 2000 originally descended from the Microsoft Windows NT operating system product line. Music was not all the Stones and the independently wealthy Parsons had in common: "We liked drugs," Richards said later, "and we liked the finest quality.". . Secondly, both Jagger and Richards befriended Gram Parsons, who introduced them to country music with which he had grown up.

Unattended installations rely on the use of answer files to fill in installation information, and can be performed through a bootable CD using Microsoft Systems Management Server (SMS), by the System Preparation Tool (Sysprep). First, Keith Richards played extensively with Ry Cooder, and was taught his open-G guitar tuning (as used by John Lee Hooker), later admitting "I took Ry Cooder for all I could get". Windows 2000 can be installed and deployed to an enterprise through either an attended or unattended installation. Two other events contributed to the change in The Stones' sound. The Windows 2000 Server family has enhanced functionality, including the ability to provide Active Directory services (a hierarchical framework of resources), Distributed file system (a file system that supports sharing of files) and fault-redundant storage volumes. In contrast to its predecessor, however, it was a clear rejection of the hippie ethos, replacing the platitudes of "free love" with a layer of sleaze. Dynamic disk storage allows different types of volumes to be used. The songs themselves were firmly rooted in the blues, but tempered by the changes that occurred in 1960s music and assimilating the imagery of Dylan and the emergent heavy rock of Cream and Jimi Hendrix.

All versions of the operating system support the Windows NT filesystem, NTFS 5, the Encrypted File System (EFS), as well as basic and dynamic disk storage. Despite the tension, and aided by an excellent sound from up-and-coming producer Jimmy Miller, Jagger and Richards produced some of their most memorable work, including the distorted acoustic guitar-driven "Street Fighting Man" and the anthemic "Sympathy for the Devil" and the Stones entered the phase that would see them billed as "The World's Greatest Rock and Roll Band". Support for people with disabilities has also been improved by Microsoft across their Windows 2000 line, and they have included increased support for different languages and locale information. After the excesses of Satanic Majesties, and with personal relations between Jones and Richards increasingly frayed, 1968's Beggars Banquet saw the band return to their roots. All versions of Windows 2000 have common functionality, including many system utilities such as the Microsoft Management Console (MMC) and standard system management applications such as a disk defragmentation utility. Within the band, however, the two principal writers were steadily wresting power from their former leader Jones. The kernel mode provides unrestricted access to system resources and facilitates the user mode, which is heavily restricted and designed for most applications. Despite Jagger later harshly pronouncing it "complete crap", a number of songs showcased the improving songwriting of Jagger and Richards, in particular the spacey "2000 Light Years From Home" which showcased Brian Jones's mellotron, and which has been revived for recent live performances.

Windows 2000 is classified as a hybrid-kernel operating system, and its architecture is divided into two modes: user mode and kernel mode. The resulting record received lukewarm reviews observing that the songs and arrangements did not lend themselves to the band's natural style, although an increasingly drugged-out Jones continued an impressive display of instrumental experimentation. Additionally, Microsoft offers Windows 2000 Advanced Server- Limited Edition, which released in 2001 and runs on 64-bit Intel Itanium microprocessors. The record, which would eventually be released as Their Satanic Majesties Request was recorded in difficult circumstances with various members of the band living under the threat of imprisonment, so much so, that Bill Wyman was able to get one of his songs "In Another Land" onto the album. Windows 2000 comes in four versions: Professional, Server, Advanced Server, and Datacenter Server. Pepper. It is part of the Microsoft Windows NT line of operating systems and was released on February 17, 2000. Work then commenced on a new psychedelic album, which Jagger envisioned as the group's response to the Beatles' Sgt.

Windows 2000 (also referred to as Win2K, W2K or Windows NT 5.0) is a preemptible and interruptible, graphical, business-oriented operating system that was designed to work with either uniprocessor or symmetric multi-processor (SMP) 32-bit Intel x86 computers. The record featured the sounds of footsteps and a cell door banging shut, and which it is rumoured was taken from a secret recording from within Wormwood Scrubs, the London prison where Richards was held overnight. Approximately 1 GB of available disk space. The band then set about recording a new single "We Love You", officially as a thank you for the loyalty shown by their fans, though privately it was seen as a barbed attack on their perceived persecutors; the News of the World, the Metropolitan police force and members of the British judiciary. 256 MB of RAM - up to 64 GB is supported in one machine. Maybe as a result of the pressure he was feeling, he looked out of his depth and his arguments cut little ice with his fellow participants. A Pentium-class CPU at 400 MHz or higher - up to 32 are supported in one machine. With Richards and Jagger out on bail and shortly to be acquitted on appeal, Jagger was immediately whisked off in a helicopter to appear on a BBC television programme " World in Action " taking part, along with members of the British establishment, in a live debate discussing the morals of modern society.

Its system requirements are normal, but are compatible with vast amounts of power:

    . The Who also rush-released a single covering two Stones originals "Under My Thumb" and "The Last Time" in a show of solidarity. As with Advanced Server, it supports clustering, failover and load balancing. Despite being a quickly cobbled-together collection of hits and studio outtakes, it was nevertheless a hit. Windows 2000 Datacenter Server is a variant of the Windows 2000 Server that is designed for large businesses that move large quantities of confidential or sensitive data frequently via a central server. During the furor, Decca shrewdly released Flowers in the United States. It has support for TCP/IP load balancing and enhanced two-node server clusters based on the Microsoft Cluster Server (MSCS) in the Windows NT Server 4.0 Enterprise Edition. Beneath the title "Who Breaks a Butterfly on a Wheel?" editor William Rees-Mogg wrote:.

    It offers clustering infrastructure for high availability and scalability of applications and services, including main memory support of up to 8 gigabytes (GB) on Page Address Extension (PAE) systems and the ability to do 8-way SMP. Amidst intense press interest they were convicted, Richards was sentenced to a year's imprisonment and Jagger to four months, prompting The Times newspaper to run an editorial criticising the verdict. Windows 2000 Advanced Server is a variant of Windows 2000 Server operating system designed for medium-to-large businesses. Jagger was charged with possessing amphetamine tablets, which though bought legally in Italy to combat travel sickness, were still obtained without a doctor's prescription. Furthermore, Windows 2000 introduced a DNS server which allows dynamic registration of IP addresses. Richards was charged and a few months later stood trial for allowing drug use in his home. This also provided a purely transitive-trust relationship between Windows 2000 domains in a forest (a collection of one or more Windows 2000 domains that share a common schema, configuration, and global catalogue, being linked with two-way transitive trusts). It was also rumoured that the raid was delayed on police instructions to allow one guest George Harrison, guitarist with establishment favourites The Beatles to leave.

    Additionally, Microsoft integrated Kerberos network authentication, replacing the often-criticised NTLM authentication system used in previous versions. The raid also served as a source of apocryphal stories, mainly concerning the appearance and demeanour of Mick Jagger's girlfriend Marianne Faithfull and a certain chocolate bar, which only served to augment their reputation for debauchery. A significant component of the server products is Active Directory, which is an enterprise-wide directory service based on LDAP. The February 1967 raid, now legendary in the band's mythology, occurred during one of the regular parties held there, and police discovered a moderate quantity of cannabis. Windows 2000 Server products share the same user interface with Windows 2000 Professional, but contain additional components for running infrastructure and application software. The British Sunday tabloid newspaper News of the World targeted the Stones and their perceived debauched lifestyles, and allegedly tipped off the police leading to a search of Keith Richard's country home, "Redlands" in West Wittering, Sussex. It supports up to two processors, and can address up to 4 GBs of RAM. By now the band had become almost synonymous with the rebellious spirit of the 1960s, and in particular a more relaxed attitude towards drug use.

    It offers greater security and stability than many of the previous Windows desktop operating systems. It was in this period that Tom Wolfe offered his 1965 summary that "The Beatles want to hold your hand, but The Stones want to burn your town.". It is the basic unit of Windows 2000, and the most common. With the main songwriters maintaining their rate of production, Aftermath (1966) continued the progression, consisting entirely of Jagger/Richards compositions including "Mother's Little Helper," about pill abuse, and the misogynistic "Under My Thumb", whereas on Between the Buttons (1967) they wore the influences of their many contemporaries, including The Who and The Kinks. Windows 2000 Professional was designed as the desktop operating system for businesses and power users. During this period Pallenberg seemed to exert an influence on the music as somebody whose opinions the band trusted, particularly on the dark single "Paint it Black", and the (for 1966) shockingly sexually ambiguous video for "Have You Seen Your Mother Baby (Standing in the Shadows)? ". Should a disk fail in the array, the parity blocks from the surviving disks are combined mathematically with the data blocks from the surviving disks to reconstruct the data on the failed drive "on-the-fly" (this works with various levels of success). Jones, not unaware of his reduced importance, retreated into drug abuse, alienating both Richards and Pallenberg, who began a relationship that would last over ten years.

    RAID-5 volumes: a RAID-5 volume consists of multiple disks, and it uses block-level striping with parity data distributed across all member disks. Prompted by Oldham, who possessed sufficient business acumen to see where money was to be made, Jagger and Richards became more prolific songwriters and 1965's Out of Our Heads contained much self-penned material, including the classic "(I Can't Get No) Satisfaction," and saw the dynamic of the band begin to change, with Jagger and Richards starting to emerge as the perceived leaders of the band. Mirrored volumes are also known as RAID-1. Two years later Brian Jones began to see Anita Pallenberg, an actress and model who introduced them to the circle of society in which she moved: a group of young artists, musicians and filmmakers. This means that if one disk fails, the data can be totally recovered from the other disk. The three Stones became so fond of Phelge that they used his name as part of the 'Nanker/Phelge' pseudonym to indicate early band writing compositions. Mirrored volumes: the volume contains several disks, and when data is written to one it is mirrored to the other disks. Jagger, Richards and Jones shared a squalid London flat in Edith Grove, Chelsea, throughout much of 1963 along with friend, reprobate, and later biographer James Phelge.

    However, the console can then only be used if the system boots to the point where NTLDR can start it. Back at home these early years of success represented a rare period of stability in the personal relationship between the band members. Installing the Recovery Console via Winnt32.exe, with the /cmdcons switch. While on tour they took time to visit important locations in the history of the music that inspired them, recording the EP Twelve By Five at the studios of Chess Records in Chicago, Illinois. Starting from the Windows 2000 CD, and choosing to enter the Recovery Console instead of continuing with setup, or. Encouraged by Oldham, the band toured Europe and America continuously, playing to packed crowds of screaming teenagers in scenes reminiscent of the height of Beatlemania. SoundSentry: designed to help users with auditory impairments, Windows 2000 will show a visual effect when a sound is played through the sound system. The follow-up album, The Rolling Stones #2 (Now in the U.S), was also composed mainly of cover tunes, only now augmented by a couple of songs written by the fledgling partnership of Jagger and Richards, having been locked in a room by their manager, who refused to let them out until they had written something they could release.

    High contrast theme: to assist users with visual impairments. This made many girls go crazy for their bad boy image, and soon made them a teen idol group. Narrator: Microsoft Narrator assists users with visual impairments with system messages, as when these appear the narrator will read this out via the sound system. More importantly perhaps, whilst The Beatles were still suited, clean-cut boys with mop-top haircuts, The Stones cultivated the opposite image: decidedly unkempt, and posing for publicity photographs like a gang of surly yobs. On screen magnifier: assists users with visual impairments by magnifying the part of the screen they place their mouse over. The performances were pivotal in introducing a generation of white British youth to rhythm and blues music, and helped to fuel the "British Invasion" of America. Normally the modifier key must remain pressed down to activate the sequence. Similarly, the album The Rolling Stones (England's Newest Hitmakers) which appeared in April 1964 featured versions of such classics as "Route 66" (originally recorded by Nat King Cole), "Mona" (Bo Diddley) and "Carol" (Chuck Berry).

    StickyKeys: makes modifier keys (ALT, CTRL and SHIFT) become "sticky" — in other words a user can press the modifier key, release that key and then press the combination key. The choice of material on their first, self-titled EP, reflected their live shows. SerialKeys: gives Windows 2000 the ability to support speech augmentation devices. Another of Oldham's ideas was to convince Keith Richards to drop the 's' from his surname to become "Keith Richard", presumably in a bid to give him greater pop star credibility. On screen keyboard: assists those who are not familiar with a given keyboard by allowing them to use a mouse to enter characters to the screen. By the time of their first single release; a cover of Chuck Berry's "Come On", Ian Stewart was, at the insistence of Andrew Oldham, officially not part of the band, though he continued to record and perform with them. MouseKeys: allows the cursor to be moved around the screen via the numeric keypad instead of the mouse. The band rapidly gained a reputation for their frantic, highly energetic covers of the rhythm and blues songs of their idols and, through their recently appointed sharp young manager Andrew Loog Oldham, were signed to Decca Records (who had passed when offered The Beatles).

    ToggleKeys: when turned on, Windows will play a sound when either the CAPS LOCK, NUM LOCK or SCROLL LOCK keys are pressed. At first, Brian Jones, a guitarist who also toyed with numerous other instruments, was their creative leader, despite Mick Jagger increasingly becoming the focus during live performances. RepeatKeys: allows users to slow down the rate at which keys are repeated via the keyboard's keyrepeat feature. They soon got their own residency at The Crawdaddy Club in Richmond, which was run by Russian emigre Giorgio Gomelsky, and began to establish themselves as London's premier live act, even being honoured with a visit from The Beatles. BounceKeys: multiple keystrokes to one key to be ignored within a certain timeframe. United by their shared interest in rhythm and blues music, the group rehearsed extensively, initially playing in public at The Marquee Club in London, where Cyril Davies's rhythm and blues band was resident. SlowKeys: Windows is told to disregard keystrokes that are not held down for a certain time period. Another early part-time member was influential drummer Carlo Little, who was with Cyril Davies All Stars.

    FilterKeys: These are a group of keyboard related support for people with typing issues, and include:

      . He was replaced by Bill Wyman. This allows better performance because disk read and writes are balanced across multiple disks. Taylor left shortly after to return to art school, and was later to form The Pretty Things. Striped volumes: also known as RAID-0, a striped volume stores all its data across several disks in stripes. The original line-up included Erik Eliason (vocals), Jones (guitar, harmonica, vocals), Richards (guitar), Ian "Stu" Stewart (piano), Mick Avory (drums) and Dick Taylor (bass). If one disk fails, all data in the volume is lost. The band came into being in 1962 when former schoolmates Jagger and Richards met Brian Jones, who named the band after a lyric in the Muddy Waters song "Mannish Boy".

      Spanned volumes: multiple disks spanning up to 32 disks. They are the longest surviving rock & roll band in history. Simple volume: this is a volume with disk space from one disk. Reggae, funk, disco/dance, country, folk, soul, and even psychedelia have leaked into their recordings. The Window Manager component of this driver is responsible for drawing windows and menus while the GDI (graphical device interface) component is responsible for tasks such as drawing lines and curves, rendering fonts and handling palettes. Founding members Mick Jagger and Keith Richards are regarded as one of the greatest songwriting teams in the history of rock; the band never stopped being inspired by other genres. The display system is handled by a device driver contained in Win32k.sys. Their first recordings were covers of Chuck Berry, Bo Diddley, Screamin' Jay Hawkins, Muddy Waters, Larry Williams and Howlin' Wolf songs, among others.

      Power Manager: the power manager coordinates power events and generates power IRPs. Early in their career they played covers of blues, rhythm and blues, country, and rock and roll music. PnP Manager: handles Plug and Play and supports device detection and installation at boot time. See: Rolling with the Stones, Bill Wyman's book. Process Manager: handles process and thread creation and termination. The name Rollin' Stones was used for the first time on the 12th of July 1962 as they played in the Marquee club to replace Blues Incorperated. Virtual Memory Manager: manages virtual memory, allowing Windows 2000 to use the hard disk as a primary storage device (although strictly speaking it is secondary storage). .

      IPC Manager: short for Interprocess Communication Manager, manages the communication between clients (the environment subsystem) and servers (components of the executive). tour that saw them billed as "The Greatest Rock and Roll Band in the World.". [4]. Their music never strayed far from the blues, however, and by 1969, they returned triumphantly to blues-based hard-rock, embarking on the now infamous U.S. Security Reference Monitor (SRM): the primary authority for enforcing the security rules of the security integral subsystem. By the end of the Sixties, the Stones had racked up a great number of hit records, each single displaying an alarming rate of musical growth. I/O Manager: allows devices to communicate with user-mode subsystems by translating user-mode read and write commands and passing them to device drivers. Second in popularity only to The Beatles, the Stones affected a rebellious, bad-boy image that helped propel their rise from an energetic modern blues outfit to one of the world's biggest and most influential bands.

      This essentially is a resource management infrastructure service that allows Windows 2000 to be an object oriented operating system. By the mid 1960s, the Stones had fused these influences into a signature, guitar-based sound that established a prototype for hard rock. Object manager: a special executive subsystem that all other executive subsystems must pass through to gain access to Windows 2000 resources. Like most early British rock groups, they were influenced by a variety of other British and American musical forms, especially Jacob Lee Mabry and early porn stars. POSIX environment subsystem supports applications that are strictly written to either the POSIX.1 standard or the related ISO/IEC standards. The Rolling Stones are an English rock group who rose to prominence during the 1960s. OS/2 environment subsystem supports 16-bit character-based OS/2 applications and emulates OS/2 1.3 and 1.x, but not 2.x or later OS/2 applications. Rolling Stone's list of the 50 Moments that Changed Rock and Roll.

      Win32 subsystem runs 32-bit Windows applications and also supports Virtual DOS Machines (VDMs), which allows MS-DOS and 16-bit Windows 3.x (Win16) applications to run on Windows. Best selling music artists – World's top-selling music artists chart. For a detailed discography, see: The Rolling Stones discography. Recently reinstated into the Stones touring lineup. Bobby Keys - Saxophone; appeared as a primary horn player, alongside Jim Price, on a number of late 60s and 70s recordings and shows.

      Billy Preston - Keyboards, organ; cheifly associated with the Stones 1970s shows and records, appears on Sticky Fingers and Exile on Main Street. Notable for supplying the female vocal part (orginally sung by Merry Clayton) for "Gimme Shelter" and, on soul songs like Ray Charles' (The Night Time Is) The Right Time, which the Stones have covered on their current tour. Lisa Fischer - Vocals; previously sung back up for Luther Vandross; went on tour with the Stones on their 1990 Urban Jungle European tour, and has accompanied them on every tour since. Has played keyboards since Stewart's death, most notably on the Stones blockbuster 90s and 2000s tours, but also on studio recordings.

      Chuck Leavell- Keyboards and piano; formerly of The Allman Brothers Band. Nicky Hopkins - Keyboards and piano; appears on a significant number of Stones recordings from their classic mid-period (late 60s through the 70s), and occasionally performed live, though he was not as closely associated with the group as former member Ian Stewart. He appears on a virtually all of the Stones early recordings and a large number of their most famous mid-period songs (though piano duties were often provided by other musicians--most notably Nicky Hopkins--beginning in the late 60s). Ian Stewart - Piano; continued to play for the band even after he was forced out of the Rolling Stones in 1962, serving as their road manager and frequent session player until his death in 1985.

      He is not, however, an official member of the band (a position affored a salary that is significantly higher than that of a hired musician), and the Stones have remained a foursome since Wyman's departure. Darryl Jones has played bass for the group since Bill Wyman left the band, on all albums except Bridges to Babylon. Ron Wood - Guitar (1975–). Charlie Watts - drums and percussion (1962–).

      Keith Richards - Guitar, vocals, keyboards (1961–). Mick Jagger - Vocals, guitar, keyboards, harmonica, percussion (1961–).