Computer Science    
   
Table of contents
(Prev) Windows NT 3.51Windows Phone 7 (Next)

Windows NT

Windows NT
Windows NT logo.svg
Company / developerMicrosoft
Programmed inC, C++, and Assembly language[1]
Working stateCurrent
Source modelClosed source / Shared source
Initial release27 July 1993 (1993-07-27) (as Windows NT 3.1)
Latest stable release

Windows 8
NT 6.2 (Build 9200) (October 26, 2012; 4 months ago (2012-10-26)) [±]

Windows Server 2012
NT 6.2 (Build 9200) (September 4, 2012; 6 months ago (2012-09-04)) [±] [±]
Latest unstable release[±]
Update methodWindows Update, Windows Server Update Services
Supported platformsIA-32, x86-64, DEC Alpha, MIPS, PowerPC, ARM, Itanium
Kernel typeHybrid
Default user interfaceGraphical (Windows shell)
LicenseDepending on version, edition or customer choice: Trialware, commercial software, volume licensing, OEM-only, SaaS, S+S[a]
Official websitewww.microsoft.com/windows/

Windows NT is a family of operating systems produced by Microsoft, the first version of which was released in July 1993. It was a powerful high-level-language-based, processor-independent, multiprocessing, multiuser operating system with features comparable to Unix. It was intended to complement consumer versions of Windows that were based on MS-DOS. NT was the first fully 32-bit version of Windows, whereas its consumer-oriented counterparts, Windows 3.1x and Windows 9x, were 16-bit/32-bit hybrids. Windows 2000, Windows XP, Windows Server 2003, Windows Vista, Windows Home Server, Windows Server 2008, Windows 7, Windows Server 2008 R2, Windows 8, Windows Phone 8, Windows RT and Windows Server 2012 are members of the Windows NT family, although they are not branded using the name "Windows NT".

Contents

Naming

It is popularly believed that Dave Cutler[2] intended the initialism "WNT" as a pun on VMS, incrementing each letter by one. However, the project was originally intended as a follow-on to OS/2 and was referred to as "NT OS/2" before receiving the Windows brand.[3] One of the original NT developers, Mark Lucovsky, states that the name was taken from the original target processor—the Intel i860, code-named N10 ("N-Ten").[4] Various Microsoft publications, including a 1998 question-and-answer session with Bill Gates, reveal that the letters were expanded to "New Technology" for marketing purposes but no longer carry any specific meaning.[5] The letters were dropped from the name of Windows 2000, though Microsoft described the product as "Built on NT technology".

Major features

A main design goal of NT was hardware and software portability. Various versions of NT family operating systems have been released for a variety of processor architectures, initially IA-32, MIPS, and Alpha, with PowerPC, Itanium, AMD64 and ARM supported in later releases. The idea was to have a common code base with a custom Hardware Abstraction Layer (HAL) for each platform. However, support for MIPS, Alpha, and PowerPC was later dropped after NT 4.0. Broad software compatibility was achieved with support for several API "personalities", including Win32, POSIX,[6] and OS/2[7] APIs – the latter two were phased out starting with Windows XP.[8] Partial MS-DOS compatibility was achieved via an integrated DOS Virtual Machine – although this feature is being phased out in the x86-64 architecture.[9] NT supported per-object (file, function, and role) access control lists allowing a rich set of security permissions to be applied to systems and services. NT supported Windows network protocols, inheriting the previous OS/2 LAN Manager networking, as well as TCP/IP networking (for which Microsoft would implement a TCP/IP stack derived at first from a STREAMS-based stack from Spider Systems, then later rewritten in-house.[10])

Windows NT 3.1 was the first version of Windows to utilize 32-bit "flat" virtual memory addressing on 32-bit processors. Its companion product, Windows 3.1, used segmented addressing and switches from 16-bit to 32-bit addressing in pages.

Windows NT 3.1 featured a core kernel providing a system API, running in supervisor mode (ring 0 in x86; referred to in Windows NT as "kernel mode" on all platforms), and a set of user-space environments with their own APIs which included the new Win32 environment, an OS/2 1.3 text-mode environment and a POSIX environment. The full preemptive multitasking kernel could interrupt running tasks to schedule other tasks, without relying on user programs to voluntarily give up control of the CPU, as in Windows 3.1 Windows applications (although MS-DOS applications were preemptively multitasked in Windows starting with Windows 1.0).

Notably, in Windows NT 3.x, several I/O driver subsystems, such as video and printing, were user-mode subsystems. In Windows NT 4, the video, server, and printer spooler subsystems were moved into kernel mode. Windows NT's first GUI was strongly influenced by (and programmatically compatible with) that from Windows 3.1; Windows NT 4's interface was redesigned to match that of the brand new Windows 95, moving from the Program Manager to the Start Menu/Taskbar design.

NTFS, a journaled, secure file system, was created for NT. Windows NT also allows for other installable file systems, and with versions 3.1 and 3.51, NT could also be installed on DOS's FAT or OS/2's HPFS file systems. Later versions could be installed on a FAT32 partition, in select cases, including Vista versions.[11] Windows Vista and Windows 7 require a FAT32 partition to boot on an EFI based system.[12]

Development

Microsoft decided to create a portable operating system, compatible with OS/2 and POSIX and supporting multiprocessing, in October 1988.[13] When development started in November 1989, Windows NT was to be known as OS/2 3.0,[14] the third version of the operating system developed jointly by Microsoft and IBM. To ensure portability, initial development was targeted at the Intel i860XR RISC processor, switching to the MIPS R3000 in late 1989, and then the Intel i386 in 1990.[15] Microsoft also continued parallel development of the DOS-based and less resource-demanding Windows environment, resulting in the release of Windows 3.0 in May 1990. Windows 3 was eventually so successful that Microsoft decided to change the primary application programming interface for the still unreleased NT OS/2 (as it was then known) from an extended OS/2 API to an extended Windows API. This decision caused tension between Microsoft and IBM and the collaboration ultimately fell apart. IBM continued OS/2 development alone while Microsoft continued work on the newly renamed Windows NT. Though neither operating system would immediately be as popular as Microsoft's MS-DOS or Windows products, Windows NT would eventually be far more successful than OS/2.

Microsoft hired a group of developers from Digital Equipment Corporation led by Dave Cutler to build Windows NT, and many elements of the design reflect earlier DEC experience with Cutler's VMS[16] and RSX-11. The operating system was designed to run on multiple instruction set architectures and multiple hardware platforms within each architecture. The platform dependencies are largely hidden from the rest of the system by a kernel mode module called the HAL (Hardware Abstraction Layer).

Windows NT's kernel mode code further distinguishes between the "kernel", whose primary purpose is to implement processor and architecture dependent functions, and the "executive". This was designed as a modified microkernel, as the Windows NT kernel was influenced by the Mach microkernel developed at Carnegie Mellon University,[17] but does not meet all of the criteria of a pure microkernel. Both the kernel and the executive are linked together into the single loaded module ntoskrnl.exe; from outside this module there is little distinction between the kernel and the executive. Routines from each are directly accessible, as for example from kernel-mode device drivers.

API sets in the Windows NT family are implemented as subsystems atop the publicly undocumented "native" API; this allowed the late adoption of the Windows API (into the Win32 subsystem). Windows NT was one of the earliest operating systems to use Unicode internally.

Driver models

Windows NT introduced its own driver model, the Windows NT driver model, and is incompatible with older driver frameworks. With Windows 2000, the Windows NT driver model was enhanced to become the Windows Driver Model, which was first introduced with Windows 98, but was based on the NT driver model.[18] Windows Vista added native support for the Windows Driver Foundation, which is also available for Windows XP, Windows Server 2003 and to an extent, Windows 2000.

Releases

Windows NT releases
VersionMarketing nameEditionsRelease dateRTM build
NT 3.1Windows NT 3.1Workstation (named just Windows NT), Advanced Server27 July 1993528
NT 3.5Windows NT 3.5Workstation, Server21 September 1994807
NT 3.51Windows NT 3.51Workstation, Server30 May 19951057
NT 4.0Windows NT 4.0Workstation, Server, Server Enterprise Edition, Terminal Server, Embedded29 July 19961381
NT 5.0Windows 2000Professional, Server, Advanced Server17 February 20002195
Datacenter Server26 September 2000
NT 5.1Windows XPHome, Professional, Media Center (original, 2003, 2004 & 2005), Tablet PC (original and 2005), Starter, Embedded, Home N, Professional N25 October 20012600
Windows Fundamentals for Legacy PCsN/A8 July 2006
NT 5.2Windows XP64-bit Edition Version 2003[19]28 March 20033790
Windows Server 2003Standard, Enterprise, Datacenter, Web, Storage, Small Business Server, Compute Cluster24 April 2003
Windows XPProfessional x64 Edition25 April 2005
Windows Server 2003 R2Standard, Enterprise, Datacenter, Web, Storage, Small Business Server, Compute Cluster6 December 2005
Windows Home ServerN/A16 July 2007
NT 6.0Windows VistaStarter, Home Basic, Home Premium, Business, Enterprise, Ultimate, Home Basic N, Business N
  • Business: 30 November 2006
  • Consumer: 30 January 2007
  • 6000 (RTM)
  • 6001 (SP1)
  • 6002 (SP2)
Windows Server 2008Foundation, Standard, Enterprise, Datacenter, Web Server, HPC Server, Itanium-Based Systems[20]27 February 2008
  • 6001 (RTM)
  • 6002 (SP2)
NT 6.1[21]Windows 7Starter, Home Basic, Home Premium, Professional, Enterprise, Ultimate[22]22 October 2009[23]
  • 7600 (RTM)
  • 7601 (SP1)
Windows Server 2008 R2Foundation, Standard, Enterprise, Datacenter, Web Server, HPC Server, Itanium-Based Systems22 October 2009[24]
  • 7600 (RTM)
  • 7601 (SP1)
NT 6.2Windows 8[25]Windows 8 (x86/64), Windows 8 Pro (x86/64), Windows 8 Enterprise (x86/64), Windows RT (ARM)[26]26 October 2012[27]9200
Windows Phone 8N/A30 October 20129900
Windows Server 2012[28]Foundation, Essentials, Standard, Datacenter[29]4 September 20129200

Windows NT 3.1 to 3.51 incorporated the Program Manager and File Manager from the Windows 3.x series. Windows NT 4.0 onwards replaced those programs with Windows Explorer (including a taskbar and Start menu), which originally appeared in Windows 95.

The first release was given version number 3.1 to match the contemporary 16-bit Windows; magazines of that era claimed the number was also used to make that version seem more reliable than a ".0" release. Also apparently the Novell IPX protocol was apparently licensed only to 3.1 versions of Windows software.[citation needed]

The NT version number is not now generally used for marketing purposes, but is still used internally, and said to reflect the degree of changes to the core of the operating system;[30] however, for application compatibility reasons, Microsoft has kept the major version number as 6 in releases following Vista.[31] The build number is an internal identifier used by Microsoft's developers and beta testers.

Supported platforms

NT was written in C and C++,[32] and is reasonably portable, although (as of 2009[update]) only three architectures are currently supported. That said, it proved far more difficult to port applications such as Microsoft Office which were sensitive to issues such as data structure alignment on RISC processors. Unlike Windows CE which routinely runs on a variety of processors, the lack of success of RISC-based systems in the desktop market has resulted in nearly all NT deployments being on x86 architecture processors.

32-bit platforms

In order to prevent Intel x86-specific code from slipping into the operating system by developers used to developing on x86 chips, Windows NT 3.1 was initially developed using non-x86 development systems and then ported to the x86 architecture. This work was initially based on the Intel i860-based Dazzle system and, later, the MIPS R4000-based Jazz platform. Both systems were designed internally at Microsoft.[33]

Windows NT 3.1 was released for Intel x86 PC compatible, DEC Alpha, and ARC-compliant MIPS platforms. Windows NT 3.51 added support for the PowerPC processor in 1995, specifically PReP-compliant systems such as the IBM Power Series desktops/laptops and Motorola PowerStack series; but despite meetings between Michael Spindler and Bill Gates, not on the Power Macintosh as the PReP compliant Power Macintosh project failed to ship.

Intergraph Corporation ported Windows NT to its Clipper architecture and later announced intention to port Windows NT 3.51 to Sun Microsystems' SPARC architecture,[34] but neither version was sold to the public as a retail product.

Only two of the Windows NT 4.0 variants (IA-32 and Alpha) have a full set of service packs available. All of the other ports done by third parties (Motorola, Intergraph, etc.) have few, if any, publicly available updates.

Windows NT 4.0 was the last major release to support Alpha, MIPS, or PowerPC, though development of Windows 2000 for Alpha continued until August 1999, when Compaq stopped support for Windows NT on that architecture; and then three days later Microsoft also canceled their AlphaNT program, even though the Alpha NT 5 (Windows 2000) release had reached RC2 (build 2128).

Microsoft announced on 5 January 2011 that the next major version of the Windows NT family will include support for the ARM architecture. Microsoft demonstrated a preliminary version of Windows (version 6.2.7867) running on an ARM-based computer at the 2011 Consumer Electronics Show.[35] This eventually led to the commercial release of Windows RT on 26 October 2012.

According to Microsoft, it is a common misconception that the Xbox and Xbox 360 use a modified Windows 2000 kernel.[36] They claim that the Xbox operating system was built from scratch but implements a subset of Windows APIs. The idea that it does, indeed, run a modified copy of the Windows kernel still persists in the community.

64-bit platforms

Released versions of NT for Alpha were 32-bit only. The 64-bit port of Windows was originally intended to run on Itanium as well as on Alpha. Alpha hardware was accordingly used internally at Microsoft during early development of 64-bit Windows.[37][38] This continued for some time after Microsoft publicly announced that it was cancelling plans to ship 64-bit Windows for Alpha, because Itanium hardware was not yet available for development.[39]

As of January 2013[update], Microsoft has released five editions for Itanium and thirty editions for the x64 processor architecture:

Itanium editionsx64 editions
  1. Windows XP 64-Bit Edition[40]
  2. Windows Server 2003 Enterprise[41]
  3. Windows Server 2003 Datacenter[41]
  4. Windows Server 2008 for Itanium-Based Systems[42]
  5. Windows Server 2008 R2 for Itanium-Based Systems[43]
  1. Windows XP Professional x64 Edition[44]
  2. Windows Server 2003 Standard x64 Edition[44]
  3. Windows Server 2003 Enterprise x64 Edition[44]
  4. Windows Server 2003 Datacenter x64 Edition[44]
  5. Windows Vista Home Basic x64 Edition
  6. Windows Vista Home Premium x64 Edition
  7. Windows Vista Enterprise x64 Edition
  8. Windows Vista Ultimate x64 Edition
  9. Windows Server 2008 Web Server x64 Edition
  10. Windows Server 2008 Standard x64 Edition
  11. Windows Server 2008 Enterprise x64 Edition
  12. Windows Server 2008 Datacenter x64 Edition
  13. Windows 7 Home Basic x64 Edition
  14. Windows 7 Home Premium x64 Edition
  15. Windows 7 Professional x64 Edition
  16. Windows 7 Enterprise x64 Edition
  17. Windows 7 Ultimate x64 Edition
  18. Windows Server 2008 R2 Foundation
  19. Windows Server 2008 R2 Web Server
  20. Windows Server 2008 R2 Standard
  21. Windows Server 2008 R2 Datacenter
  22. Windows Server 2008 R2 HPC
  23. Windows Server 2008 R2 Enterprise
  24. Windows 8
  25. Windows 8 Pro
  26. Windows 8 Enterprise
  27. Windows Server 2012 Foundation
  28. Windows Server 2012 Essentials
  29. Windows Server 2012 Standard
  30. Windows Server 2012 Datacenter

Hardware requirements

The minimum hardware specification required to run each release of the professional workstation version of Windows NT has been fairly slow-moving until the 6.0 Vista release, which requires a minimum of 15 GB of free disk space, a 10-fold increase in free disk space alone over the previous version.

Windows NT desktop (x86) minimum hardware requirements
NT versionCPURAMFree disk space
NT 3.1
NT 3.1 Advanced Server
386, 25 MHz12 MB
16 MB
90 MB
NT 3.5 Workstation
NT 3.5 Server
386, 25 MHz12 MB
16 MB
90 MB[45]
NT 3.51 Workstation
NT 3.51 Server
386, 25 MHz12 MB
16 MB
90 MB[45]
NT 4.0 Workstation
NT 4.0 Server
486, 25 MHz12 MB
16 MB
124 MB[46]
2000 Professional
2000 Server
Pentium, 133 MHz32 MB
128MB
650 MB[47]
XPPentium, 233 MHz64 MB1.5 GB[48]
Server 2003133 MHz128 MB1.5 GB[49]
Vista800 MHz512 MB15 GB[50]
71 GHz1GB16 GB[51]
8x86 NX bit*, 1 GHz1GB16 GB[52]
  • in addition to the NX bit, Windows 8 requires SSE2 and PAE, which are supported by any x86 processor that supports the NX bit

See also

Notes

  1. ^ For more information on how Microsoft licenses its products, see Microsoft Software Assurance, DreamSpark, DreamSpark Premium, BizSpark, MSDN § Software subscriptions, Microsoft TechNet § Subscriptions and downloads and client access license.

References

  1. ^ Lextrait, Vincent (January 2010). "The Programming Languages Beacon". http://www.lextrait.com/Vincent/imple mentations.html. Retrieved 4 January 2010.
  2. ^ Zachary, G Pascal (1994). Show Stopper!: The Breakneck Race to Create Windows NT and the Next Generation at Microsoft. Free Press. ISBN 978-0-02-935671-5. 
  3. ^ "Microsoft Windows NT OS/2 Design Workbook". American history. Smithsonian. http://americanhistory.si.edu/collect ions/object.cfm?key=35&objkey=124. Retrieved 2008-11-15.
  4. ^ Thurrott, Paul. "History of Windows Server 2003: The Road To Gold". Win super site. http://www.winsupersite.com/article/w indows-server/windows-server-2003-the -road-to-gold-part-one-the-early-year s-127432.
  5. ^ Gates, Bill (1998-06-05). "Q&A: Protecting children from information on the Internet". http://www.microsoft.com/billgates/co lumns/1998q&a/QA5-6.asp. Retrieved 2005-06-26.
  6. ^ "Paul Thurrott's SuperSite for Windows". Win super site. http://www.winsupersite.com/showcase/ winvista_ff_x64.asp. Retrieved 2010-11-24.
  7. ^ "28 – OS/2 Compatibility", MS Windows NT 4 Workstation (resource kit), Microsoft, http://www.microsoft.com/resources/do cumentation/windowsnt/4/workstation/r eskit/en-us/os2comp.mspx?mfr=true, retrieved 2010-11-24
  8. ^ "POSIX and OS/2 are not supported in Windows XP or in Windows Server 2003". Support. Microsoft. 2007-11-05. http://support.microsoft.com/kb/30825 9. Retrieved 2010-11-24.
  9. ^ "x64 editions deployment". http://download.microsoft.com/downloa d/8/1/e/81eabaf4-1907-4967-87a9-be242 b1402e9/x64_Editions_Deployment.doc. Retrieved 2010-11-24.
  10. ^ Barr, Adam (June 19, 2001), "Microsoft, TCP/IP, Open Source, and Licensing", Kuro5hin, http://www.kuro5hin.org/story/2001/6/ 19/05641/7357, retrieved February 22, 2013.
  11. ^ "File Systems". Technet. Microsoft. http://technet.microsoft.com/en-us/li brary/cc766145(WS.10).aspx. Retrieved 2010-11-24.
  12. ^ "UEFI Support and Requirements for Windows Operating Systems". Windows hardware developer conference. Microsoft. 2009-05-13. http://www.microsoft.com/whdc/system/ platform/firmware/uefireg.mspx. Retrieved 2010-11-24.
  13. ^ Cutler, Dave, "Preface", in Russinovich, Mark; Solomon, David A, Microsoft Windows Internals (fourth ed.), Microsoft Press, ISBN 0-7356-1917-4.
  14. ^ Pollack, Andrew (1991-07-27), "Microsoft Widens Its Split With IBM Over Software", The New York Times, http://query.nytimes.com/gst/fullpage .html?res=9D0CE0D81339F934A15754C0A96 7958260, retrieved 2008-09-02
  15. ^ Thurrott, Paul (2003-01-24). "Windows Server 2003: The Road To Gold". Win super site. http://www.winsupersite.com/reviews/w inserver2k3_gold1.asp. Retrieved 2010-01-05.
  16. ^ Russinovich, Mark (1 December 1998). "Windows NT and VMS: The Rest of the Story". Windows 2000. Windows IT pro. http://www.windowsitpro.com/article/w indows-2000/windows-nt-and-vms-the-re st-of-the-story. Retrieved 5 May 2012.
  17. ^ "Supporting Windows NT and 2000 Workstation and Server". Technology network. Prentice Hall. 1999-12-01. ISBN 978-0-13-083068-5. http://technet.microsoft.com/en-us/li brary/cc768132.aspx. Retrieved 2011-08-29.
  18. ^ "NT Drivers" (FAQ). CMKrnl. http://www.cmkrnl.com/faq02.html.
  19. ^ "Microsoft Releases Windows XP 64-Bit Edition Version 2003 to Manufacturing". March 2003. http://www.microsoft.com/presspass/pr ess/2003/mar03/03-28WinXP64BitPR.mspx. Retrieved 2008-01-14.
  20. ^ "Overview of Editions". Windows Server 2008. Microsoft. http://www.microsoft.com/windowsserve r2008/en/us/editions-overview.aspx. Retrieved 2009-05-18.
  21. ^ "Operating System Versioning". Microsoft Developer Network. Microsoft. 2009-05-20. http://msdn.microsoft.com/en-gb/libra ry/dd371754(VS.85).aspx. Retrieved 2009-07-06.
  22. ^ LeBlanc, Brandon (2009-02-04). "A closer look at the Windows 7 SKUs". Blogging Windows. Microsoft. http://windowsteamblog.com/blogs/wind ows7/archive/2009/02/04/a-closer-look -at-the-windows-7-skus.aspx. Retrieved 2009-02-05.
  23. ^ Rothman, Wilson (2009-06-02). "Windows 7 To Be Released October 22". Gizmodo. http://gizmodo.com/5275938/windows-7- to-be-released-october-22. Retrieved 2009-06-06.
  24. ^ "Product Roadmap". Windows Server 2008. Microsoft. http://www.microsoft.com/windowsserve r2008/en/us/roadmap.aspx. Retrieved 2009-05-18.
  25. ^ "Windows", Developer network, Microsoft, http://msdn.microsoft.com/en-us/windo ws/apps/br229516/
  26. ^ LeBlanc, Brandon (2012-04-16). "Announcing the Windows 8 Editions". Blogging Windows. Microsoft. http://windowsteamblog.com/windows/b/ bloggingwindows/archive/2012/04/16/an nouncing-the-windows-8-editions.aspx. Retrieved 2012-04-17.
  27. ^ "Windows 8 will be available on…". Microsoft. July 18, 2012. http://windowsteamblog.com/windows/b/ bloggingwindows/archive/2012/07/18/wi ndows-8-will-be-available-on.aspx. Retrieved July 18, 2012.
  28. ^ "Windows server 8 named Windows server 2012", Windows valley, http://www.windowsvalley.com/windows- server-8-named-windows-server-2012/.
  29. ^ "Windows Server 2012 Editions". Server cloud. http://www.microsoft.com/en-us/server -cloud/windows-server/2012-editions.a spx. Retrieved 2012-07-08.
  30. ^ Russinovich, Mark; Solomon, David (2001-12), Windows XP: Kernel Improvements Create a More Robust, Powerful, and Scalable OS, "Developer network", MSDN mag (Microsoft), archived from the original on 2003-04-23, http://web.archive.org/web/2003042412 3732/http://msdn.microsoft.com/msdnma g/issues/01/12/XPKernel/, retrieved 2006-12-19
  31. ^ "Why 7?". Windows Team Blog. Microsoft. 2008-10-14. http://windowsteamblog.com/windows/ar chive/b/windowsvista/archive/2008/10/ 14/why-7.aspx. Retrieved 2012-03-30.
  32. ^ "Windows NT System Overview". Microsoft. http://www.microsoft.com/technet/arch ive/winntas/training/ntarchitectoview /ntarc_2.mspx. Retrieved 2010-11-24.
  33. ^ Lucovsky, Mark (2000-08-09). "Windows: A Software Engineering Odyssey". http://www.usenix.org/events/usenix-w in2000/invitedtalks/lucovsky_html/. Retrieved 2006-11-02.
  34. ^ "Intergraph Announces Port of Windows NT to SPARC Architecture". The Florida SunFlash. 1993-07-07. http://ftp.lanet.lv/ftp/sun-info/sunf lash/1993/Jul/55.11-Sun-Intergraph:-S PARC-and-Windows-NT.
  35. ^ "Microsoft demonstrates early build of Windows 8", Win rumors, http://www.winrumors.com/microsoft-de monstrates-early-build-of-windows-8/.
  36. ^ Gandhi, Shaheen. "Xbox Team: The Xbox Operating System". http://blogs.msdn.com/xboxteam/archiv e/2006/02/17/534421.aspx. Retrieved 2008-05-29.
  37. ^ Thurott, Paul (December 1999). "The Road to Gold: The development of Windows 2000 Reviewed". Win super site. http://www.winsupersite.com/reviews/w in2k_gold.asp. Retrieved 2008-01-05.
  38. ^ Chen, Raymond (August 2008). "Windows Confidential". Technology network. Microsoft. http://technet.microsoft.com/en-us/ma gazine/2008.08.windowsconfidential.as px.
  39. ^ Thurott, Paul (June 2000). "Windows 2000 Reportedly Returning to Alpha Platform". Windows IT pro. http://www.windowsitpro.com/Article/A rticleID/19345/19345.html. Retrieved 2008-01-05.
  40. ^ "Microsoft Windows XP 64-Bit Edition". Microsoft TechNet. Microsoft. 15 August 2001. http://technet.microsoft.com/en-us/li brary/bb457053.aspx. Retrieved 14 October 2011.
  41. ^ a b "Comparison of Windows Server 2003 Editions". Microsoft TechNet. Microsoft. http://technet.microsoft.com/en-us/li brary/cc758523%28WS.10%29.aspx. Retrieved 14 October 2011.
  42. ^ "Windows Server 2008 for Itanium-Based Systems Feature Support". Microsoft TechNet. Microsoft. http://technet.microsoft.com/en-us/li brary/cc772344%28WS.10%29.aspx. Retrieved 14 October 2011.
  43. ^ "Windows Server 2008 R2 for Itanium-Based Systems". Windows Server Editions. Microsoft. http://www.microsoft.com/en-us/server -cloud/windows-server/2008-r2-itanium .aspx. Retrieved 14 October 2011.
  44. ^ a b c d "A description of the x64-based versions of Windows Server 2003 and of Windows XP Professional x64 Edition". Microsoft Support Center. Microsoft. http://support.microsoft.com/kb/88873 3. Retrieved 14 October 2011.
  45. ^ a b "Windows NT 3.5x Setup Troubleshooting Guide (MSKB 139733)". Microsoft. 2006-11-01. http://support.microsoft.com/kb/13973 3. Retrieved 2010-11-24.
  46. ^ "Info: Windows NT 4.0 Setup Troubleshooting Guide". Microsoft. 2006-10-31. http://support.microsoft.com/kb/12669 0. Retrieved 2010-11-24.
  47. ^ "System requirements for Microsoft Windows 2000 operating systems". Microsoft. 2007-11-13. http://support.microsoft.com/kb/30429 7. Retrieved 2010-11-24.
  48. ^ "System requirements for Microsoft Windows XP operating systems". Microsoft. 2007-09-14. http://support.microsoft.com/kb/31486 5. Retrieved 2010-11-24.
  49. ^ "Windows Server 2003, Standard Edition: System requirements". Microsoft. 2005-01-21. http://technet.microsoft.com/en-us/li brary/cc738496(v=ws.10).aspx. Retrieved 2013-01-11.
  50. ^ "System requirements for Microsoft Windows Vista". Microsoft. 2007-11-13. http://support.microsoft.com/kb/91918 3. Retrieved 2010-11-24.
  51. ^ "Windows 7 system requirements". Microsoft. http://windows.microsoft.com/en-us/wi ndows7/products/system-requirements. Retrieved 2009-08-30.
  52. ^ "Windows 8 system requirements". Microsoft. http://windows.microsoft.com/en-US/wi ndows-8/system-requirements. Retrieved 2012-10-29.

External links

(Prev) Windows NT 3.51Windows Phone 7 (Next)