Has anyone managed to get Visual Studio 2003 running on Windows 7?

前端 未结 16 1251
甜味超标
甜味超标 2020-12-14 02:52

Yes, I know... I could set up a virtual machine running XP. Unfortunately our build environment is such that we need to be running VC2003, 2005 and 2008 concurrently and it

16条回答
  •  孤城傲影
    2020-12-14 03:19

    I am experiencing the same issue; devenv.exe is leaving pdb files open after running the project. I have made a batch file to work around it, it closes all .pdb files open by devenv.exe:

    handle.exe .pdb | awk "/devenv.exe/ { split($4, fd, \":\"); system(\"handle.exe -c \" fd[1] \" -y -p \" $3)}"

    You will need to have handle.exe by sysinternals and awk by gnu in your path to make it work.

    Use at your own risk. Closing handles can cause application or system instability.

提交回复
热议问题