I'm attempting to build some C++ code that requires the Windows 7.0 SDK header files and libraries. My VC++ Directories is set to:

$(VCInstallDir)include
$(VCInstallDir)atlmfc\include
$(WindowsSdkDir)\include
$(WindowsSdkDir)\common\include
$(FrameworkSDKDir)include

My $(WindowsSdkDir) variable should be set to C:\Program Files\Microsoft SDKs\Windows\v7.0\ -- I've used the SDK's "Visual Studio Registration" configuration tool to set it, and it looks correct in the registry. I've checked under HKLM\SOFTWARE\Microsoft\Microsoft SDKs\Windows (and the same in Wow6432Node.

Despite this, Visual C++ is still picking up header files from C:\Program Files\Microsoft SDKs\Windows\v6.0A\

What's wrong, and how do I fix it?

link|improve this question

73% accept rate
feedback

3 Answers

up vote 8 down vote accepted

Ah. Found this blog post: http://blogs.msdn.com/windowssdk/archive/2008/06/30/winsdk-bug-notification-sdk-config-tool-appears-to-work-but-fails.aspx

Essentially, the configuration tool only updates the HKEY_LOCAL_MACHINE settings; Visual Studio uses the HKEY_CURRENT_USER settings in preference.

link|improve this answer
1  
Just had a similar problem. Windows SDK v7.0A was installed but only found in the HKEY_LOCAL_MACHINE registry key and not in HKEY_CURRENT_USER. VS was using the Windows SDK v6.0A instead since it was registered in HKEY_CURRENT_USER. One way to fix the problem is to use the reg copy HKLM\... HKCU\... /s command to copy the data over, and then to fix the CurrentVersion and CurrentInstallFolder values to use the newer SDK. – André Caron Apr 3 at 16:20
The link in the answer talks about version 6.1 of Windows SDK yet you had a problem with version 7.0. Does it mean Microsoft hasn't fixed the bug in Windows SDK 7.0 although they had discovered it in earlier version (6.1)? – Piotr Dobrogost May 17 at 19:44
How to get the WinSDK Configuration Tool to work covers yet another problem with WinSDK Configuration Tool this time due to the bug in Service Pack 1 for Visual Studio 2008 Retail (not Express). – Piotr Dobrogost May 17 at 20:00
feedback

I came across this same problem and found a solution which seems better than hacking around with the registry...

"Open any project and change the Platform Toolset to Windows7.1SDK and build it. After this, the macro $(WindowsSdkDir) changes for all projects to v7.1 regardless of the selected Platform Toolset."

It worked for me.

link|improve this answer
This (presumably) applies to VS2010. When I asked the question, we were still using VS2008. So, this update is useful. Thanks. – Roger Lipscombe May 14 '11 at 8:06
Just wanted to add the explicit instructions: select your project, then select Properties-->Configuration Properties-->General. – Apprentice Queue Feb 17 at 9:40
feedback

If the blog post doesn't work. Try running the vsvars32.bat in your <VS installdir>/Common7/Tools/vsvars32.bat and then run devenv.exe (in the same environment).

link|improve this answer
2  
In order to get that to work, you need to run DEVENV.EXE /USEENV. Useful workaround, but annoying, nonetheless. – Roger Lipscombe Jul 9 '09 at 10:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.