Hi friends,
Configuring VC++ Toolkit to use with Server 2003 R2 Platform SDK is easy, all what you need is to edit the vcvars32.bat coming with the VC++ Toolkit 2003 package:
Set PATH=C:\Program Files\Vctoolkit\bin;%PATH%
Set INCLUDE=C:\Program Files\Vctoolkit\include;C:\Program Files\PSDK\include;%INCLUDE%
Set LIB=C:\Program Files\Vctoolkit\lib;C:\Program Files\PSDK\lib;C:\masm32\lib;%LIB%
PSDK is the folder where your PSDK files are stored. I specified c:\masm32\lib while modifying the LIB parameter because msvcrt.lib doesn't come with PSDK and VC++ Toolkit
Windows Server 2003 R2 Platform SDK from the site below :
http://www.microsoft.com/downloads/details.aspx?FamilyId=0BAF2B35-C656-4969-ACE8-E4C0C0716ADB&displaylang=en
The PSDK setup menu allows you to choose the necessary components meeting your requirements. I dediced to download the minimal material targetting the classical win32 environment.
Attached is a demo compiled with VC Toolkit 2003 using the header files and libraries from Server 2003 R2 PSDK
[attachment deleted by admin]