Windows 2000
Information about Windows 2000
![]() | |
| Windows 2000 | |
| (Part of the Microsoft Windows family) | |
| Screenshot | |
Screenshot of Windows 2000 Professional | |
| Developer | |
| Microsoft | |
| Web site: www.microsoft.com/windows2000 | |
| Release information | |
| Release date: | February 17 2000 info |
| Current version: | 5.0 SP4 Rollup 1 v2 (5.0.3700.6690), September 13 2005 info |
| Source model: | Shared source[1] |
| License: | Microsoft EULA |
| Kernel type: | Hybrid kernel |
| Support status | |
| Extended Support Period until June/July 2010,[2][3] security updates will be provided free of cost and paid support is still available. | |
Windows 2000 was made available in four editions: Professional, Server, Advanced Server, and Datacenter Server. Additionally, Microsoft offered Windows 2000 Advanced Server Limited Edition and Windows 2000 Datacenter Server Limited Edition, which were released in 2001 and run on 64-bit Intel Itanium microprocessors.[4] Whilst all editions of Windows 2000 are targeted to different markets, they each share a core set of common functionality, including many system utilities such as the Microsoft Management Console and standard system administration applications. Support for people with disabilities was improved over Windows NT 4.0 with a number of new assistive technologies, and Microsoft included increased support for different languages and locale information. All versions of the operating system support the Windows NT filesystem, NTFS 3.0,[5] the Encrypting File System, as well as basic and dynamic disk storage. The Windows 2000 Server family has additional 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 corporate desktops 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, by the System Preparation Tool. Windows 2000 is the last NT-kernel based version of Microsoft Windows that does not include Windows Product Activation.
At the time of its release, Microsoft marketed Windows 2000 as the most secure Windows version they had ever shipped,[6] however it became the target of a number of high-profile virus attacks such as Code Red and Nimda. More than seven years after its release, it continues to receive patches for security vulnerabilities on a near-monthly basis.
History
- See also: History of Microsoft Windows
Windows 2000 is a continuation of the Microsoft Windows NT line of operating systems, replacing its predecessor, Windows NT 4.0. Originally called Windows NT 5.0, then Windows NT 2000, Microsoft changed the name to Windows 2000 on October 27 1998.[7] 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. DEC Alpha support was removed from the final build. From here, Microsoft issued three release candidates between July and November 1999, and finally released the operating system to partners on December 12 1999.[8] The public received the full version of Windows 2000 on February 17 2000. Three days before the launch of Windows 2000, which Microsoft advertised as "a standard in reliability", a leaked memo from Microsoft reported on by Mary Jo Foley revealed that Windows 2000 had "over 63,000 potential known defects".[9] After Foley's article was published, Microsoft blacklisted her for a considerable time:[10] InformationWeek summarized the release "our tests show the successor to NT 4.0 is everything we hoped it would be. Of course, it isn't perfect either."[11] Wired News later described the results of the February launch as "lackluster".[12] Novell criticized Microsoft's Active Directory, the new directory service architecture to be less scalable or reliable than their own Novell Directory Services (NDS) technology.[13]
Originally, Windows 2000 was planned to replace both Windows 98 and Windows NT 4.0. However, that was later changed. Instead, an updated version of Windows 98 called Windows 98 Second Edition was released in 1999 as a successor to Windows 98. Microsoft released Windows 2000 Datacenter Server, targeted at large-scale computing systems with support for 32 processors, on September 29, 2000.
On or shortly before February 12, 2004, "portions of the Microsoft Windows 2000 and Windows NT 4.0 source code were illegally made available on the Internet".[14] The source of the leak remains unannounced. Microsoft issued the following statement:
| Microsoft source code is both copyrighted and protected as a trade secret. As such, it is illegal to post it, make it available to others, download it or use it. |
Despite the warnings, the archive containing the leaked code spread widely on the file-sharing networks. Consequentially, on February 16, 2004, an exploit "allegedly discovered by an individual studying the leaked source code"[14] for certain versions of Microsoft Internet Explorer was reported.
Architecture
- See also: Architecture of Windows NT
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:[15]
- Win32 subsystem runs 32-bit Windows applications and also supports Virtual DOS Machines (VDMs), which allows MS-DOS and 16-bit Windows 3.1x (Win16) applications to run on Windows.
- OS/2 environment subsystem supports 16-bit character-based OS/2 applications and emulates OS/2 1.3 and 1.x, but not 32-bit or graphical OS/2 applications as used on OS/2 2.x or later.
- POSIX environment subsystem supports applications that are strictly written to either the POSIX.1 standard or the related ISO/IEC standards.
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, as illustrated by this screenshot from SysInternal's
- Object manager: a special executive subsystem that all other executive subsystems must pass through to gain access to Windows 2000 resources. This is essentially 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.[16]
- 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 (Graphics Device Interface) component is responsible for tasks such as drawing lines and curves, rendering fonts and handling palettes. Windows 2000 also introduced alpha blending into the Graphics Device Interface which reflects in the fade effect in menus.
The hybrid kernel sits between the HAL and the executive and provides multiprocessor synchronization, thread and interrupt scheduling and dispatching, trap handling and exception dispatching. The hybrid kernel often interfaces with the process manager[17] and is responsible for initializing device drivers at bootup that are necessary to get the operating system up and running.
Common functionality
Microsoft recognized 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. Also included is an option to dump any of the first 64 KB 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 optimizing the operating system's memory and processor usage patterns for background services or for applications. Windows 2000 also introduced such technologies as the Windows Installer, Windows Management Instrumentation, OpenType PostScript fonts (.OTF), Data protection API (DPAPI) and the Indexing Service into the operating system.
Improvements to Windows Explorer
Windows Explorer had a built-in media player in Windows 2000
The Windows Explorer received a number of enhancements in Windows 2000. It was the first Windows NT release to include Active Desktop, a component first introduced as a part of Internet Explorer 4.0, and only pre-installed in Windows 98 by that time. Renamed in Windows 2000 as "Windows Desktop Update" [20], it allowed the users to customize the way folders look and behave by using HTML templates, having the file extension HTT. This feature had been abused by computer viruses that employed malicious scripts, Java applets, or ActiveX controls in folder template files as their infection vector. Two such viruses are VBS/Roor-C[21] and VBS.Redlof.a.[22]
The "Web-style" folders view, with the left Explorer pane displaying details for the object currently selected, is turned on by default in Windows 2000. For certain file types, such as pictures and media files, the preview is also displayed in the left pane. Until the dedicated interactive preview pane appeared in Windows Vista, Windows 2000 had been the only Windows release to feature an interactive media player as the previewer for sound and video files. However, such a previewer can be enabled in Windows Me and Windows XP through the use of third-party shell extensions, as the extensibility of the updated Windows Explorer allows for custom thumbnail previewers and tooltip handlers. The default file tooltip displays file title, author, subject and comments;[23] these metadata may be read from a special NTFS stream, in case the file is located on an NTFS volume, or from an OLE structured storage stream, in case the file is a structured storage document. All Microsoft Office documents since Office 95 [24] are stored in structured storages, so that their metadata are displayable in Windows 2000 Explorer default tooltip.
The right pane of Windows 2000 Explorer, which usually just lists files and folders, can also be customized. For example, the contents of the system folders aren't displayed by default, instead showing in the right pane a cautionary message telling the user that modifying the contents of the system folders could harm their computer. It's possible to define additional Explorer panes by using DIV elements in folder template files [20] Other Explorer UI elements that can be customized include columns in "Details" view, icon overlays, and search providers: the new DHTML-based search pane is integrated into Windows 2000 Explorer, unlike the separate search dialog found in all previous Explorer versions. This degree of customizability is new to Windows 2000; neither Windows 98 nor the Desktop Update could provide it.[25]
NTFS 3.0
Windows 2000 supports disk quotas, which can be set via the "Quota" tab found in the hard disk properties dialog box.
Encrypting File System
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.[27]
In case of a user losing access to their key, support for recovery agents that can decrypt files is built in to EFS.
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 disks): simple volumes, spanned volumes and striped volumes:
- Simple volume, a volume with disk space from one disk.
- Spanned volumes, where multiple disks (up to 32) show up as one, increasing it in size but not enhancing performance. When one disk fails, the array is destroyed. Some data may be recoverable. This corresponds to JBOD and not to RAID-1.
- Striped volumes, also known as RAID-0, store all their data across several disks in stripes. This allows better performance because disk read and writes are balanced across multiple disks.
Accessibility support
Microsoft made an effort to increase the usability of Windows 2000 over Windows NT 4.0 for people with visual and auditory impairments and other disabilities. They included several utilities designed to make the system more accessible, although many of these accessibility features were already available with previous versions of Windows:
- FilterKeys: These are a group of keyboard related features for people with typing issues, and include:
- SlowKeys: Ignore 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: allows users to use a mouse to use the keyboard and enter on-screen keyboard characters.
- 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 (Activated by pressing Shift 5 times quickly).
- Microsoft Magnifier: A screen magnifier that assists users with visual impairments by magnifying the part of the screen they place their mouse over.
- Narrator: Microsoft Narrator, introduced in Windows 2000, 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 and 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.[28] It also has support for many different locales, a list of which can be found on Microsoft's website.Games support
Windows 2000 included version 7.0 of the DirectX API, commonly used by game developers on Windows 98.[29] The last supported version of DirectX that Windows 2000 supports is DirectX 9.0c (Shader Model 3.0), the same version as the one shipped with Windows XP Service Pack 2.[30] The majority of games written for recent versions of DirectX could therefore run on Windows 2000, in contrast to Windows NT 4.0, which only provided support for DirectX 3.0.System utilities
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 grant full access to the user so they can make whatever changes they desire, or they can grant limited access to users which prevents users adding snapins to the console, though they can view multiple windows in a console. Alternatively users can be granted limited access, preventing them from adding to the console and stopping them viewing multiple windows in a single console.[31]The Windows 2000 Computer Management console is capable of performing many system tasks. It is pictured here starting a disk defragmentation.
Windows 2000 comes bundled with two utilities to edit the Windows registry, REGEDIT.EXE and REGEDT32.EXE. REGEDIT.EXE was directly ported from Windows 98, and therefore does not support editing registry permissions. REGEDT32.EXE has the older multiple document interface (MDI) and can edit registry permissions in the same manner that Windows NT's REGEDT32.EXE program could. REGEDIT.EXE has a left-side tree view of the Windows registry, lists all loaded hives and represents the three components of a value (its name, type, and data) as separate columns of a table. REGEDT32.EXE has a left-side tree view, but each hive has its own window, so the tree displays only keys and it represents values as a list of strings. REGEDIT.EXE supports right-clicking of entries in a tree view to adjust properties and other settings. REGEDT32.EXE requires all actions to be performed from the top menu bar. Windows XP was the first system to integrate these two programs into a single utility, 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.[32]
Recovery Console
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:
- Starting from the Windows 2000 CD, and choosing to enter the Recovery Console instead of continuing with setup, or
- 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.
All editions of Windows 2000 Server have the following services and functionality built-in:
- Routing and Remote Access Service (RRAS) support, facilitating dial-up and VPN connections, support for RADIUS authentication, network connection sharing, Network Address Translation, unicast and multicast routing schemes.
- DNS server, including support for Dynamic DNS. Active Directory relies heavily on DNS.
- IPsec support and TCP/IP filtering
- Smart card support
- Microsoft Connection Manager Administration Kit (CMAK) and Connection Point Services
- Support for distributed file systems (DFS)
- Hierarchical Storage Management support, a service that runs in conjunction with NTFS that automatically transfers files that are not used for some period of time to less expensive storage media
- Fault tolerant volumes, namely it supports Mirrored and RAID-5
- Group policy (part of Active Directory)
- IntelliMirror, a collection of technologies for fine-grained management of Windows 2000 Professional desktops (Roaming profiles, MSMQ 2.0, Offline files (also known as Client Side Caching or CSC), TAPI 3.0, COM+ and MTS application host, software installation, settings management).
- Kerberos authentication
- MS-CHAP v2 protocol
- Public Key Infrastructure (PKI) support
- Terminal Services and support for the Remote Desktop Protocol (RDP)
- Internet Information Services (IIS) 5.0
Distributed File System
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).[33]
Active Directory
Active Directory services could only be installed on a Windows 2000 Server, Advanced Server, or Datacenter Server computer, and cannot be installed on a Windows 2000 Professional computer. However, Windows 2000 Professional was the first client operating system able to exploit Active Directory's new functionality. As part of an organization's migration, Windows NT clients continued to function until all clients were upgraded to Windows 2000 Professional, at which point the Active Directory domain could be switched to native mode and maximum functionality achieved.
Active Directory requires a DNS server that supports SRV resource records, or that an organization's 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 also written 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".
Editions
- 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 GB of RAM. The system requirements were a Pentium Processor @133 MHz or greater, at least 64 MB of RAM, 650 MB of hard drive space, and a CD-ROM drive (recommended: Pentium II, 128 MB of RAM, 1 GB of hard drive space, and CD-ROM drive).
- 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 Physical 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.[34] 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 minimum system requirements are normal, but it was designed to be capable of handing more advanced hardware - for instance it was capable of supporting computers with up to 32 CPUs and 64 GBs RAM. A limited edition 64-bit version of Windows 2000 Datacenter Server was made available via the OEM Channel.
System Requirements
Windows 2000 has relatively low minimum system requirements, they are shown below:Windows 2000 Professional:
- *133 MHz or higher Pentium-compatible CPU
- *64 megabytes (MB) of RAM recommended minimum
- *2 GB hard disk space[35]
Windows 2000 Server:
- *133 MHz CPU
- *256 MB of RAM minimum
- *2 GB hard disk space [36]
Windows 2000 Advanced Server:- *133 MHz CPU
- *256 MB of RAM recommended minimum
- *2 GB hard disk space[37]
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. An answer file can be created manually or using the graphical Setup manager. 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 Remote Installation Services (RIS).
The Sysprep 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.0, 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.[38] 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.[39]Total cost of ownership
- See also: Studies related to Microsoft
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.[40]Current status
Windows 2000 has now been superseded by newer Microsoft operating systems. Microsoft replaced Windows 2000 Server products with Windows Server 2003, and Windows 2000 Professional with Windows XP Professional. The Windows 2000 family of operating systems moved from mainstream support to the extended support phase on June 30, 2005. Microsoft says that this marks the progression of Windows 2000 through the Microsoft Lifecycle policy. Under the extended support phase, Microsoft continues to provide critical security updates on a monthly basis and pay per incident telephone support. However, free technical support and design changes are no longer provided. Because of its old age, Microsoft is not offering current components such as Internet Explorer 7 for Windows 2000. They claim that IE 7 is reliant on security features designed only for Windows XP Service Pack 2 and Windows Vista, and is thus non-trivial to port back to the Windows 2000 platform.[41] Microsoft is strongly advising all businesses still running Windows 2000 to consider upgrading their operating system to Windows Server 2003 or Windows Vista for increased security. All Windows 2000 support including security updates will be terminated on July 13, 2010.[2][3]
Throughout its life, Windows 2000 has received four full service packs and one rollup update package following SP4, which is the latest service pack for Windows 2000. These were: 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 phased out all development of their Java Virtual Machine (JVM) from Windows 2000 in Service Pack 3.
Many Windows 2000 users were hoping for a Windows 2000 Service Pack 5, but Microsoft cancelled this project early on in its development, and instead released Update Rollup 1 for Service Pack 4 which is a collection of all the security-related hotfixes and some other significant issues. The Update Rollup, however, does not include all non-security related hotfixes and is not subjected to the same extensive regression testing as a full service pack. Microsoft states that this update will meet customers needs better than a whole new service pack, and will still help Windows 2000 customers secure their PCs, reduce support costs, and allow their systems to support the current generation of computer hardware.[44]Security criticisms
A number of potential security issues have been noted in Windows 2000. A common complaint is that "by default, Windows 2000 installations contain numerous potential security problems. Many unneeded services are installed and enabled, and there is no active local security policy".[45] In addition to the choice of insecure defaults, according to the SANS Institute, the most common flaws found in the OS are remotely exploitable buffer overflow vulnerabilities.[46] Other flaws in the operating system that have received criticism include the use of vulnerable encryption techniques.[47]
Computer worms first came into the public spotlight during the period where Windows 2000 was the dominant server operating system. Code Red and Code Red II were famous (and highly visible to the worldwide press) worms that exploited vulnerabilities of the Windows Indexing Service of Windows 2000s 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 to that date. The 2005 Zotob worm was blamed for security compromises on Windows 2000 machines at Homeland Security, the New York Times, ABC and CNN.[48]See also
- Comparison of operating systems
- Microsoft Servers
- Windows NT Startup Process
- DEC Multia - Windows 2000 Beta ran on Alpha-PUs
Notes and references
- Notes
1. ^ Enterprise Source Licensing Program. Microsoft. Retrieved on 2007-04-05.
2. ^ Windows 2000 Transitions to Extended Support.
3. ^ Microsoft Product Lifecycle for Windows 2000 family.
4. ^ Microsoft (July 12, 2000). Microsoft and Intel Announce Preview Release of 64-Bit Windows for Intel Itanium Processor. Press release. Retrieved on 2007-10-04.
5. ^ New Capabilities and Features of the NTFS 3.0 File System.
6. ^ Microsoft
7. ^ Trott, Bob (October 27 1998). It's official: NT 5.0 becomes Windows 2000. infoWorld. Retrieved on 2006-04-22.
8. ^ Windows 2000 history. ActiveWin. Retrieved on 2006-04-22.
9. ^ Bugfest! Win2000 has 63,000 'defects' February 14, 2000
10. ^ Mary Jo Foley: The Exit Interview September 20, 2006
11. ^ InformationWeek, December 28, 1999, "Special Report"
12. ^ Wired News, November 2000, "The Truth, The Whole Truth, and Nothing But The Truth"
13. ^ NDS eDirectory vs. Microsoft Active Directory?. Novell (November 17 1999). Retrieved on 2006-04-22.“ NDS eDirectory is a cross-platform directory solution that works on NT 4.0, Windows 2000 when available, Solaris and NetWare 5. Active Directory will only support the Windows 2000 environment. In addition, eDirectory users can be assured they are using the most trusted, reliable and mature directory service to manage and control their e-business relationships — not a 1.0 release.”
14. ^ Statement from Microsoft Regarding Illegal Posting of Windows 2000 Source Code. Microsoft (February 20 2004). Retrieved on 2007-01-11.
15. ^ Appendix D - Running Nonnative Applications in Windows 2000 Professional. Microsoft Windows 2000 Professional Resource Kit. Microsoft.
16. ^ Microsoft. "Active Directory Data Storage".
17. ^ Inside Microsoft Windows 2000 (Third Edition). Microsoft Press.
18. ^
19. ^ Microsoft KB article 222193: Description of the Windows File Protection Feature.
20. ^ Esposito, Dino (June 2000), More Windows 2000 UI Goodies: Extending Explorer Views by Customizing Hypertext Template Files, MSDN Magazine, <[1] (retrieved on 2007-08-26)
21. ^ Sophos, VBS/Roor-C threat analysis. Accessed 2007-08-26.
22. ^ "Virus.VBS.Redlof.a". Virus Encyclopedia. (January 15, 2004). Viruslist.com. Retrieved on 2007-08-26.
23. ^ Windows 2000 Registry: Latest Features and APIs Provide the Power to Customize and Extend Your Apps, MSDN Magazine, November 2000, <[2] (retrieved on 2007-08-26)
24. ^ Kindel, Charlie (August 27, 1993), OLE Property Sets Exposed, MSDN Magazine, <[3] (retrieved on 2007-08-26)
25. ^ "Figure 1 Windows Shell Extensions", MSDN Magazine, June 2000, <[4] (retrieved on 2007-08-26)
26. ^
27. ^ "Encrypting File System". Microsoft.
28. ^ Microsoft Support KB 292264: List of Languages Supported in Windows 2000, Windows XP and Windows Server 2003.
29. ^ Ask the Windows 2000 Dev Team.
30. ^ However, as of mid-2007, Microsoft continues to publish bimonthly minor updates to DirectX 9.0c files; these updates do not advance the overall DirectX version number.
31. ^ Microsoft Press (2000). MCSE 70-210, Microsoft Windows 2000 Professional, pages 58-63.
32. ^ Microsoft KB article 222471: Description of the Windows 2000 System File Checker (Sfc.exe).
33. ^ Microsoft KB article 812487: Overview of DFS in Windows 2000.
34. ^ Microsoft. Windows 200 Resource Kit, Chap. 1, "Introducing Windows 2000 Deployment Planning".
35. ^ Windows 2000 Hardware Requirements. Retrieved on 2007-09-22.
36. ^ Windows 2000 Hardware Requirements. Retrieved on 2007-09-22.
37. ^ Windows 2000 Hardware Requirements. Retrieved on 2007-09-22.
38. ^ Mark Minasi. Installing Windows 2000 On Workstations with Remote Installation Services.
39. ^ Microsoft Press (2000). MCSE 70-210, Microsoft Windows 2000 Professional, pages 543-551.
40. ^ "Windows 2000 Versus Linux in Enterprise Computing", IDC.
41. ^ Windows 2000 users to miss out on IE 7. news.com. Retrieved on 2007-01-11.
42. ^
43. ^
44. ^ Windows 2000 Update Rollup 1 for Service Pack 4. Microsoft. Retrieved on 2006-09-27.
45. ^ governmentsecurity.org.
46. ^ SANS Institute.
47. ^ Wired News, May, 16, 2000, "Critics Blast MS Security"
48. ^ Wired News, April 12, 2006, "Border Security System Left Open"
- References
- Bolosky, William J.; Corbin, Scott; Goebel, David; & Douceur, John R. "Single Instance Storage in Windows 2000". Microsoft Research & Balder Technology Group, Inc. (white paper).
- Bozman, Jean; Gillen, Al; Kolodgy, Charles; Kusnetzky, Dan; Perry, Randy; & Shiang, David (October 2002). "Windows 2000 Versus Linux in Enterprise Computing: An assessment of business value for selected workloads". IDC, sponsored by Microsoft Corporation. White paper.
- Finnel, Lynn (2000). MCSE Exam 70-215, Microsoft Windows 2000 Server. Microsoft Press. ISBN 1-57231-903-8.
- Microsoft. Running Nonnative Applications in Windows 2000 Professional. Windows 2000 Resource Kit. Retrieved May 4 2005.
- Microsoft. "Active Directory Data Storage". Retrieved May 9 2005.
- Minasi, Mark (1993). Installing Windows 2000 of Mastering Windows 2000 Server. Sybex. Chapter 3 — Installing Windows 2000 On Workstations with Remote Installation Services.
- Russinovich, Mark (October 1997). "Inside NT's Object Manager". Windows IT Pro.
- Russinovich, Mark (2002). "Inside Win2K NTFS, Part 1". Windows IT Pro (formerly Windows 2000 Magazine).
- Saville, John (January 9 2000). "What is Native Structure Storage?". Windows IT Pro (formerly Windows 2000 Magazine).
- Siyan, Kanajit S. (2000). "Windows 2000 Professional Reference". New Riders. ISBN 0-7357-0952-1.
- Salomon, David; & Russinovich, Mark E. (2000). Inside Microsoft Windows 2000 (Third Edition). Microsoft Press. ISBN 0-7356-1021-5.
- Tanenbaum, Andrew S. (2001), Modern Operating Systems (2nd Edition), Prentice-Hall
- Trott, Bob (October 27 1998). "It's official: NT 5.0 becomes Windows 2000". InfoWorld.
- Wallace, Rick (2000). MCSE Exam 70-210, Microsoft Windows 2000 Professional. Microsoft Press. ISBN 1-57231-901-1.
External links
- Windows 2000 official product page
- Windows 2000 Professional feature list
- Windows 2000 Server Family
- Windows 2000 Server information at Technet
- Official support page
- Windows 2000 Transitions to Extended Support.
- The Road to Gold: Development of Windows 2000
- Windows 2000 Service Pack 4
- Windows 2000 Update Rollup 1 Version 2
| Microsoft Windows | |
|---|---|
| MS-DOS/9x-based: | 1.0 • 2.0 • 2.1x • 3.0 • 3.1x • 95 • 98 • Me |
| NT-based: | NT 3.1 • NT 3.5 • NT 3.51 • NT 4.0 • 2000 • XP • Server 2003 • FLP • Vista • Home Server |
| CE-based: | CE 1.0 • CE 2.0 • CE 3.0 • CE 4.0 • CE 5.0 • CE 6.0 • Mobile |
| Upcoming: | Server 2008 • 7 |
| Cancelled projects: | Neptune • Nashville • Cairo • Odyssey |
| Other projects: | OS/2 |
Microsoft Windows
Screenshot of Windows Vista Ultimate, the latest version of Microsoft Windows.
Company/developer: Microsoft Corporation
OS family: MS-DOS/9x-based, Windows CE, Windows NT
Source model: Closed source
..... Click the link for more information.
Screenshot of Windows Vista Ultimate, the latest version of Microsoft Windows.
Company/developer: Microsoft Corporation
OS family: MS-DOS/9x-based, Windows CE, Windows NT
Source model: Closed source
..... Click the link for more information.
February 17 is the 1st day of the year (2nd in leap years) in the Gregorian calendar. There are 0 days remaining.
..... Click the link for more information.
Events
..... Click the link for more information.
20th century - 21st century
1970s 1980s 1990s - 2000s - 2010s 2020s 2030s
1997 1998 1999 - 2000 - 2001 2002 2003
2000 by topic:
News by month
Jan - Feb - Mar - Apr - May - Jun
..... Click the link for more information.
1970s 1980s 1990s - 2000s - 2010s 2020s 2030s
1997 1998 1999 - 2000 - 2001 2002 2003
2000 by topic:
News by month
Jan - Feb - Mar - Apr - May - Jun
..... Click the link for more information.
September 13 is the 1st day of the year (2nd in leap years) in the Gregorian calendar. There are 0 days remaining.
..... Click the link for more information.
Events
..... Click the link for more information.
20th century - 21st century - 22nd century
1970s 1980s 1990s - 2000s - 2010s 2020s 2030s
2002 2003 2004 - 2005 - 2006 2007 2008
2005 by topic:
News by month
Jan - Feb - Mar - Apr - May - Jun
..... Click the link for more information.
1970s 1980s 1990s - 2000s - 2010s 2020s 2030s
2002 2003 2004 - 2005 - 2006 2007 2008
2005 by topic:
News by month
Jan - Feb - Mar - Apr - May - Jun
..... Click the link for more information.
Shared source is Microsoft’s framework for sharing computer program source code with individuals and organizations. Microsoft’s Shared Source Initiative includes a spectrum of technologies and licenses. Most of its offerings are available for download by anyone.
..... Click the link for more information.
..... Click the link for more information.
A software license comprises the permissions, rights and restrictions imposed on software (whether a component or a free-standing program). Use of software without a license could constitute infringement of the owner's exclusive rights under copyright or, occasionally, patent law
..... Click the link for more information.
..... Click the link for more information.
worldwide view.
“Eula” redirects here. For the community, see Eula, Texas.
A software license agreement is a memorandum of contract between a producer and a user of computer software which grants the user a software
..... Click the link for more information.
Hybrid kernel is a kernel architecture based on combining aspects of microkernel and monolithic kernel architectures used in computer operating systems. The category is controversial due to the similarity to monolithic kernel; the term has been dismissed by some as just
..... Click the link for more information.
..... Click the link for more information.
Pre-emption as used with respect to operating systems means the ability of the operating system to preempt or stop a currently scheduled task in favour of a higher priority task. The scheduling may be one of, but not limited to, process or I/O scheduling, among others.
..... Click the link for more information.
..... Click the link for more information.
graphical user interface (GUI) is a type of user interface which allows people to interact with a computer and computer-controlled devices which employ graphical icons, visual indicators or special graphical elements called "widgets", along with text, labels or text
..... Click the link for more information.
..... Click the link for more information.
An operating system (OS) is the software that manages the sharing of the resources of a computer. An operating system processes system data and user input, and responds by allocating and managing tasks and internal system resources as a service to users and programs of the
..... Click the link for more information.
..... Click the link for more information.
A uniprocessor system is a computer system with a single central processing unit. As more and more computers employ multiprocessing architectures, such as SMP and MPP, the term is used to refer to systems that still have only one CPU.
..... Click the link for more information.
..... Click the link for more information.
Symmetric multiprocessing, or SMP, is a multiprocessor computer architecture where two or more identical processors are connected to a single shared main memory. Most common multiprocessor systems today use an SMP architecture.
..... Click the link for more information.
..... Click the link for more information.
In computer architecture, 32-bit integers, memory addresses, or other data units are those that are at most 32 bits (4 octets) wide. Also, 32-bit CPU and ALU architectures are those that are based on registers, address buses, or data buses of that size.
..... Click the link for more information.
..... Click the link for more information.
Intel Corporation
Public (NASDAQ: INTC , SEHK: 4335 )
Founded 1968 1
Headquarters Santa Clara, California
United States
Key people Paul S.
..... Click the link for more information.
Public (NASDAQ: INTC , SEHK: 4335 )
Founded 1968 1
Headquarters Santa Clara, California
United States
Key people Paul S.
..... Click the link for more information.
The generic term x86 refers to the "CISC" type instruction set of the most commercially successful CPU architecture[1] in the history of personal computing, used in processors from Intel, AMD, VIA, and others.
..... Click the link for more information.
..... Click the link for more information.
Microsoft Corporation
Public (NASDAQ: MSFT )
Founded Albuquerque, New Mexico, USA (April 4 1975)[1]
Headquarters Redmond, Washington, United States
Key people Bill Gates, Co-founder and Executive Chairman ;
Paul Allen, Co-founder ;
..... Click the link for more information.
Public (NASDAQ: MSFT )
Founded Albuquerque, New Mexico, USA (April 4 1975)[1]
Headquarters Redmond, Washington, United States
Key people Bill Gates, Co-founder and Executive Chairman ;
Paul Allen, Co-founder ;
..... Click the link for more information.
Windows NT
Company/developer: Microsoft
Source model: Closed source / Shared source
Stable release: +/-
Preview release:
..... Click the link for more information.
Company/developer: Microsoft
Source model: Closed source / Shared source
Stable release: +/-
Preview release:
..... Click the link for more information.
February 17 is the 1st day of the year (2nd in leap years) in the Gregorian calendar. There are 0 days remaining.
..... Click the link for more information.
Events
..... Click the link for more information.
20th century - 21st century
1970s 1980s 1990s - 2000s - 2010s 2020s 2030s
1997 1998 1999 - 2000 - 2001 2002 2003
2000 by topic:
News by month
Jan - Feb - Mar - Apr - May - Jun
..... Click the link for more information.
1970s 1980s 1990s - 2000s - 2010s 2020s 2030s
1997 1998 1999 - 2000 - 2001 2002 2003
2000 by topic:
News by month
Jan - Feb - Mar - Apr - May - Jun
..... Click the link for more information.
Windows XP
(Part of the Microsoft Windows family)
Screenshot
Screenshot of Windows XP Service Pack 2
Developer
Microsoft
Web site: Windows XP: Homepage
Release information
Release date:
..... Click the link for more information.
(Part of the Microsoft Windows family)
Screenshot
Screenshot of Windows XP Service Pack 2
Developer
Microsoft
Web site: Windows XP: Homepage
Release information
Release date:
..... Click the link for more information.
Windows Server 2003
(Part of the Microsoft Windows family)
Screenshot
Screenshot of Windows Server 2003 Enterprise Edition
Developer
Microsoft
Web site: www.microsoft.
..... Click the link for more information.
(Part of the Microsoft Windows family)
Screenshot
Screenshot of Windows Server 2003 Enterprise Edition
Developer
Microsoft
Web site: www.microsoft.
..... Click the link for more information.
Hybrid kernel is a kernel architecture based on combining aspects of microkernel and monolithic kernel architectures used in computer operating systems. The category is controversial due to the similarity to monolithic kernel; the term has been dismissed by some as just
..... Click the link for more information.
..... Click the link for more information.
An operating system (OS) is the software that manages the sharing of the resources of a computer. An operating system processes system data and user input, and responds by allocating and managing tasks and internal system resources as a service to users and programs of the
..... Click the link for more information.
..... Click the link for more information.
In computer architecture, 64-bit integers, memory addresses, or other data units are those that are at most 64 bits (8 bytes) wide. Also, 64-bit CPU and ALU architectures are those that are based on registers, address buses, or data buses of that size.
..... Click the link for more information.
..... Click the link for more information.
Itanium 2
Central processing unit
Itanium 2 logo
Produced: From mid 2002 to present
Manufacturer: Intel
CPU Speeds: 733 MHz to 1.
..... Click the link for more information.
Central processing unit
Itanium 2 logo
Produced: From mid 2002 to present
Manufacturer: Intel
CPU Speeds: 733 MHz to 1.
..... Click the link for more information.
Microprocessor
Die of an Intel 80486DX2 microprocessor (actual size: 12×6.75 mm) in its packaging
Date Invented: Late 1960s/Early 1970s (see article for explanation)
Connects to:
..... Click the link for more information.
Die of an Intel 80486DX2 microprocessor (actual size: 12×6.75 mm) in its packaging
Date Invented: Late 1960s/Early 1970s (see article for explanation)
Connects to:
..... Click the link for more information.
Microsoft Management Console (MMC) is a component of modern Microsoft Windows operating systems that provides system administrators and advanced users with a flexible interface through which they may configure and monitor the system.
..... Click the link for more information.
..... Click the link for more information.
A system administrator, systems administrator, or sysadmin, is a person employed to maintain, and operate a computer system or network. System administrators may be members of an information technology department.
..... Click the link for more information.
..... Click the link for more information.
This article is copied from an article on Wikipedia.org - the free encyclopedia created and edited by online user community. The text was not checked or edited by anyone on our staff. Although the vast majority of the wikipedia encyclopedia articles provide accurate and timely information please do not assume the accuracy of any particular article. This article is distributed under the terms of GNU Free Documentation License.

