Advertisement
Guest User

Untitled

a guest
May 19th, 2015
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. Minimal installation of Microsoft Visual C++ 10.0 (2010) SP1
  2.  
  3. Note that this installation does not include the Visual Studio IDE, help, tools, etc. Only
  4. the build system, compilers, headers, and libraries will be installed.
  5.  
  6. 1. Get the Microsoft Windows SDK 7.1 for Windows 7 and .NET Framework 4:
  7.  
  8. http://www.microsoft.com/download/en/details.aspx?id=8442
  9.  
  10. 2. From the SDK, install at least the headers and libraries, but do not install the compilers.
  11. The headers and libraries will be installed for the x86, x64, and IA64 platforms. To keep the
  12. installation self-contained, and for for consistency with Visual Studio, one may install to
  13. %ProgramFiles(x86)%\Microsoft Visual Studio 10.0\SDK rather than the default location.
  14.  
  15. 3. Get the Microsoft Visual C++ 2010 Service Pack 1 Compiler Update for the Windows SDK 7.1:
  16.  
  17. http://www.microsoft.com/download/en/details.aspx?id=4422
  18.  
  19. 4. Install the Compiler Update. This will install x86, x64, and IA64 compilers.
  20.  
  21. 5. If support for the IA64 platform is not required, one can remove the IA64 compiler via Add/Remove
  22. Programs (if present there) and then simply delete all of the directories installed by either the
  23. SDK or the Compiler Update that contain IA64-specific files. (Note that the Compiler Update will
  24. install the x86-hosted IA64 cross-compiler along with the x86 compiler even if the IA64 compiler
  25. itself is not installed.) The directories to delete can easily be identified since they all have
  26. "IA64" as part of the name. This saves about 200MB of space. Note that apart from the main
  27. installation directory, some (small) files are also installed into %ProgramFiles(x86)%\MSBuild,
  28. including some for IA64 in MSBuild\Microsoft.Cpp\v4.0\Platforms\IA64.
  29.  
  30. 5. After installing, it is recommended to run Microsoft Update in case any patches are required.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement