缺少必需的文件“tracker.exe”

时间:2014-01-13 06:43:30

标签: c++

第一次在Visual Studio中使用Visual C ++,我试图从一些书籍中自学C ++。我只是想做一个基本的“Hello World”程序,它会得到一些我不知道的错误,以及一个奇怪的警告。缺少的源文件似乎是标准的,我无法弄清楚。

错误:

Error   2   error : Required file "tracker.exe" is missing.
Error   3   IntelliSense: cannot open source file "SDKDDKVer.h"

警告:

warning MSB8003: Could not find WindowsSDKDir variable from the registry.  TargetFrameworkVersion or PlatformToolset may be set to an invalid version number.

代码:

#include "stdafx.h"
#include <iostream>
using namespace std;
int main()          
{
    cout << "Hello World!" ;


    // This prevents the Console Window from closing during debug mode
    cin.ignore(cin.rdbuf()->in_avail());
    cout << "\nPress only the 'Enter' key to exit program: ";
    cin.get();

    return 0;
}

任何解释或帮助都会很大!谢谢。

1 个答案:

答案 0 :(得分:0)

这是一个标准的C ++ 03“你好,世界!”:

#include <iostream>
using namespace std;

int main()
{
    cout << "Hello, world!" << endl;
}

在项目设置中关闭预编译的标题。进行编译而不添加任何内容。通过Ctrl F5运行它(或者在最终点上放置一个断点)并通过调试器运行它,例如按键F5)。

如果这不起作用,那么您有配置错误。然后先尝试一个新项目。如果这不起作用,请卸载VS并重新安装。