Microsoft increment linker stopped work Solution
Install Visual Studio 2008 in Windows 7. When writing SDK programs, the linker often has problems. If the program contains resources, the chance of problems is even greater. Generally, the debug version prompts "Microsoft increment linker has stopped working" at the link ",.
Whether or not Visual Studio 2008 is run as an administrator, such problems may occur. If you find it online, there is a temporary solution: Open the "properties" dialog box of the project, click the "linker" option, click the "General" attribute page, and modify the "enable incremental link" attribute to "no (/Incremental: No )"; or you can directly use the following command in the program:
#pragma comment(linker, "/INCREMENTAL:NO")
It is called a temporary solution because I do not know the impact of enabling incremental links on the program, and I will study it again when I have time.
From: http://www.programlife.net/microsoft-increment-linker-crash.html