网上收集的:(2020年,再开发win7驱动发现好难,各种下载困难,得用老的vs+老的wdk )
问题1:
C:\Program Files (x86)\Windows Kits\10\build\WindowsDriver.common.targets(780,5): error MSB6004: The specified task executable location "\tracewpp.exe" is invalid.
解决方法:
1、在project.vcxproj文件的第一行后面添加以下行:
<PropertyGroup>
<WDKBinRoot Condition="'$(WDKBinRoot)' == ''">$(WindowsSdkDir)bin</WDKBinRoot>
<WDKBinRoot_x86>$(WDKBinRoot)\x86</WDKBinRoot_x86>
<WDKBinRoot_x64>$(WDKBinRoot)\x64</WDKBinRoot_x64>
</PropertyGroup>
也可以将这些行添加到WindowsDriver.Default.props或者WindowsDriver.Shared.props(位于<Windows 10 Kits installation root>\build下,默认情况下为“%ProgramFiles(x86)%\Windows Kits\10\build”或“%ProgramFiles(x86)%\Windows Kits\10\build”),允许所有项目在不进行任何修改的情况下成功生成。
原因是:无法使用WDK 1709(内部版本16299)生成以早于1709(版本10.0.16299.0)的SDK版本为目标的项目。
问题2:
MSB4064: The "ProviderName" parameter is not supported by the "StampInf" task. Verify the parameter exists on the task, and it is a settable public instance property.
MSB4064: The "KitVersion" parameter is not supported by the "Telemetry" task. Verify the parameter exists on the task, and it is a settable public instance property
原因是:也无法在安装WDK 1709(版本16299)后的机器上用VS2015下生成WDK 1607(内部版本14393)版本的项目(原话是:Unable to build projects under VS2015 after installing WDK 1709 (version 16299) on a machine with WDK 1607 (build 14393))。
解决方法:由于WDK已经开始提供与VS2017的兼容性,因此最新版本的WDK没有捆绑VS2015插件所需的一些文件更新。WDK 1703(版本15063)包含这些更新,因此安装此版本将解决此问题。如果项目的目标是旧版本的WDK,则可能还需要执行之前提供的解决方法。
问题3:
VS2013+WDK8.1编译时tracewpp.exe无效
在应用&功能上,vs2013,选择【修复】(repair) .修复完成重启系统,也许就OK了