How can I determine the version of the Windows SDK installed on my computer?

后端 未结 5 1892
死守一世寂寞
死守一世寂寞 2020-12-29 17:46

I\'ve very recently decided to teach myself c++ and win32 programming after learning vb.net, and I\'ve got a very simple question:

5条回答
  •  庸人自扰
    2020-12-29 18:50

    On English locale at least:

    dir "%ProgramFiles%\Microsoft SDKs\Windows"
    

    should work. It is quite likely that there will be multiple versions installed, which is the right one for an one build can only be specified by that project.

提交回复
热议问题