Microsoft Windows SDK

From Wikipedia, the free encyclopedia

Jump to: navigation, search
Microsoft Windows Software Development Kit
Developed by Microsoft Corporation
Latest release 6.1 / February, 2008
Operating system Windows XP, Windows Server 2003, Windows Vista, Windows Server 2008, Windows 7
Type API
License Various
Website Windows SDK Developer Center on MSDN

The Microsoft Windows SDK (Software Development Kit) is a software development kit from Microsoft that contains header files, libraries, samples, documentation and tools utilizing the APIs required to develop applications for Microsoft Windows and the .NET Framework 3.0/.NET Framework 3.5. The Windows SDK can be used to write applications that target Windows XP and Windows Server 2003 as well as Windows Vista and Windows Server 2008 while the older Platform SDK can be used to develop applications for Windows 2000, Windows XP and Windows Server 2003. The Windows SDK replaces the Platform SDK, the WinFX SDK and the .NET Framework 2.0 SDK. The package contains over 100 million words of documentation and nearly 1000 samples. Although the SDK itself is available free of cost, obtaining the SDK requires that the copy of Windows be validated.

Contents

[edit] Obtaining the SDK

Windows SDKs are available free on the Microsoft Download Center, in ISO and Web-download formats. Users can install the entire SDK or choose to install only some SDK components, such as code samples demonstrating only native development or only the tools for managed development. Some Windows SDK components are also included in Microsoft Visual Studio. DVDs are also available for purchase here.

The latest Windows SDK is the Microsoft Windows SDK for Windows Server 2008 and .NET Framework 3.5, released February, 2008. This SDK release supports Windows Server 2008, .NET Framework 3.5, and Windows Vista SP1 and is compatible with Visual Studio 2008 and Visual Studio 2005 SP1; including Visual Studio Express Editions.

[edit] Targeting Windows Vista development with the Windows SDK

Starting with Windows Vista, the Platform SDK has been replaced by the Windows SDK. The change of name is to better reflect the content included, and to offer the documentation, samples, build environment and tools needed to develop Windows applications all in one place. Also, the SDK for .NET Framework 3.0 (previously known as WinFX) /.NET Framework 3.5 and .NET Framework 2.0 (which is also now a part of .NET Framework 3.0) is included in the Windows SDK. The Tablet PC SDK and the Windows Media SDK (Windows Media Player 11 SDK, Windows Media Format 11 SDK and the Windows Media Device Manager 11 SDK) are also included. Thus, all the APIs which ship with Windows Vista / Windows Server 2008 and the latest compilers are now integrated into the Windows SDK. However, the .NET Framework 1.1 SDK is not included since the .NET Framework 1.1 does not ship with Windows Vista. Also, the Windows Media Center SDK for Windows Vista ships separately.

The Windows SDK allows the user to specify where the SDK will be installed and what components will be installed where. This new SDK integrates better with Visual Studio, so multiple copies of tools are not installed. Information shown can be filtered by content, such as showing only new Windows Vista content, Win32 development content, .NET Framework development content; or by language or a specific technology.

[edit] SDK support for older operating systems

A developer might want to use an older SDK for a particular reason. For example, the Windows Server 2003 Platform SDK released in February 2003 was the last SDK to provide full support of Visual Studio 6.0. Some older PSDK versions, including the February 2003 SDK can still be downloaded from the Microsoft Download center [1]; others can be ordered on CD/DVD.

[edit] 64-bit development

The most recently released Windows SDK for Windows Server 2008 and .NET Framework 3.5 contains the updated x86, x64 and Itanium (IA-64) Visual Studio 2008 compilers.

The earlier Windows SDK Update for Windows Vista contains the x86 and x64 Visual Studio 2005 SP1 VC++ compilers.

The Platform SDK also contains the resources (tools, documentation, samples, etc.) and compilers needed for 64-bit development on x86, x64 and Itanium (IA-64) platform architectures.

[edit] Documentation

The Windows SDK documentation contains over 304,000 pages, including the following:

  • 198,000 pages documenting managed code development
  • 106,000 pages documenting Win32 development
  • Over 100 million words
  • Approximately 149,000 “New in Windows Vista” topics
  • All SDK documentation is part of the online and disc-based MSDN Library

[edit] Tools, headers and libraries

The Windows SDK contains the following:

  • For Win32 development:
    • 1,700 Headers
    • 281 Libraries
    • 110 Tools
  • For .NET (managed code) development:
    • 14 Reference Assemblies supporting .NET, Tablet PC, Windows PowerShell, MMC, etc.
    • 33 Intellisense Files
    • 70 .NET 2.0 Tools + 10 .NET 3.0 Tools
  • For Visual Studio 2005/2008 integration
    • Utilities to enable Visual Studio 2005/2008 to easily use Windows SDK headers and libraries
    • Visual Studio 2005/2008 Wizards for creating Windows Media Player applications

[edit] SDK sample content

The SDK contains samples in the following topic areas:

  • 430 Windows Presentation Foundation samples
  • 140 Windows Communication Foundation samples
  • 60 Windows Workflow Foundation samples
  • 200 New to Windows Vista (Win32/COM-based) samples
  • 23 Cross technology samples

[edit] Windows SDK samples

.NET Framework (managed code) samples

Microsoft .NET Framework samples are installed with the SDK documents, providing a mechanism to view and browse samples in context of the rest of the documents. These samples fall into three main categories:

  • Compiled sample applications users can download and run, ranging from Hello World type applications to more complex samples.
  • Tutorial-like examples, often presented in topics which teach how to build a sample application, taking users from a blank screen to a running application.
  • Code snippets which are embedded in topics throughout the documentation set. The most common example of this type of code is found in API reference topics, which often contain small code blocks showing the syntax and usage of the members of an API.

Sample document topics contain options for viewing and copying sample source files and for downloading sample projects as ZIP files to a user’s computer. Each sample topic contains at least one source code selection box that lists all the sample files. There is one box for each programming language provided by the sample. If a user is viewing this documentation on the Web instead of in local Help, a link to download the sample is provided.

The .NET Framework samples are also available outside the documents, in .ZIP format installed to Program Files\Microsoft SDKs\Windows\[version number]\samples. This content can be deselected during SDK setup. The .ZIP files provide a mechanism to extract large subsets of samples at once.

Win32 (unmanaged code) samples

The Windows samples demonstrate Windows operating system features primarily using native code. These unmanaged Win32 samples are not included in the documentation. They are installed as loose files to subdirectories of \Program Files\Microsoft SDKs\Windows\[version number]\samples. This content can be deselected during SDK setup. A few samples with some managed code (PowerShell, Tablet PC) install with the Win32 samples. The Win32 samples directory layout for the Windows SDK is:

\Begin
\Com
\DataAccess
\Multimedia
\NetDS
\Security
\SysMgmt
\TabletPC
\Web
\WinBase
\WinUI

[edit] Building the samples

Building samples under Windows Vista or later operating systems should be done in a directory outside of Program Files to which there is write access to avoid issues with file and registry virtualization. This makes it possible to maintain an unmodified copy of the SDK samples. To build from the command line:

  1. Copy the sample to a working folder not under \Program Files.
  2. Open the Windows SDK CMD shell (Start> All Programs> Microsoft Windows SDK> CMD Shell).
  3. Build the sample from the command line as follows:
    • Build a makefile by typing nmake
    • Build a .csproj file by typing msbuild mysample.csproj /p:platform=[win32|x64|IA64]
    • Build a .vbproj file by typing msbuild mysample.vbproj /p:platform=[win32|x64|IA64]
    • Build a .sln file by typing msbuild mysample.sln /p:platform=[win32|x64|IA64]
    • Build a .vcproj by typing vcbuild mysample.vcproj /p:platform=[win32|x64|IA64]

It is important to specify the build platform when using MSBuild, otherwise the first platform listed in the solution or project file will be built.

[edit] See also

[edit] References

[edit] External links

Personal tools
Languages