vote up 4 vote down star
4

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 would be much more convenient if I could run 2003 natively on Windows 7 for the few projects we have that require it.

I realize some things may not be available in the IDE, but I was able to run 2003 under windows Vista and if I could get the same base level of functionality under Windows 7 I would be extremely happy.

Right now I get an error opening the *.pdb file when I compile after switching vc2003 to run as Administrator under compatibility mode for XP SP 2.

Thanks!

flag
I know that Visual Studio 2005 has some issues with Windows Vista, so I know 2003 would have more problems. – Daniel A. White May 18 at 18:21
3  
Sounds like the real problem is your development environment :O – womp May 18 at 18:27
3  
Yes I am sure he realizes that the environment is a problem, but not everyone can just "upgrade or retarget". I have to run VS2003 as well due to some legacy apps that cannot be upgraded to a newer version due to corporate red tape. – aquillin May 18 at 18:43
1  
@womp: Or the underlying OS. VS 2003 is neither supported on Vista nor will it be on Windows 7. Thus, if it is essential to my build process I would always use XP/2003 to not waste my time with unexpected problems. – divo May 18 at 18:50
@divo - Yep, I could do that. But it is going to be very difficult to debug issues our customers have when running 7 if I can't even run the compiler on it. It will be a messagebox debugging fest at best. – Jeremy White May 18 at 19:20
show 1 more comment

9 Answers

vote up 0 vote down

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.

link|flag
vote up 0 vote down

Problems:
I have tried to use "External Tools" like Doxygen using Ouput Window and it crashed several times. I tried to use the "Find in Files" function, it also crashed.

Solution:
If your switch your Window 7 design to classic Windows design only during the work with Visual Studio 2003 everything works fine. Visual Studio 2003 seems to be buggy with Aero design.

link|flag
vote up 1 vote down

Solution i found on the web which helped: For your visual studio, use application compatibility = windows vista SP2, and NOT WinXP SP3

link|flag
vote up 0 vote down

I have a really dirty and pathetic workaround for the pdb problem.

Download and run Sysinternals-ProceXP, press CTRL-F enter the name of pdb(smt like ($ProjectName).pdb) that can't be created while linking. Double click when it is found.(if it can't be found run procexp with administrator priviliges)

Then you will see that the .pdb file is highlighted in the lower pane of the main screen. Right click it and select Close Handle. When you retry building your solution it wont raise an error.

I dont know if this solution can be scripted but it is at least better than restarting visual studio.

link|flag
vote up 1 vote down

I have attempted to install VS2003 on Windows 7 64-bit using the Virtual Windows XP feature. I'm reasonably certain that this will be successful. The issue I ran into is that the installer wants IIS installed, and the XP installation provided by the Virtual XP doesn't have that enabled by default.

If you go to Add/Remove components, and try to add it, it will ask for the disc, which I didn't have on hand. Once I get my hands on the disc, I'm pretty sure that it will run fine.

If you haven't tried it for other apps, the Virtual XP feature is really neat...

link|flag
vote up 0 vote down

In windows 7, there is the compatabiliy mode in the executable properties. open:C:\Program Files\Microsoft Visual Studio .NET 2003\Common7\IDE\ then right click on the devenv.exe and select properties. In the compatability tab, select the "Run in compatability mode" and select "Windows XP" in the dropdown.

Try that, I am not sure if it works, but it is worth a shot.

link|flag
Unfortunately I already tried that. The IDE runs well, but something is up with where the build files get saved to. – Jeremy White May 18 at 19:13
You probably need to change the properties on all the executables that come with VS2003. The IDE just launches the command-line compiler and captures the output, right? – jmucchiello Jul 2 at 0:53
Yes, and I have messed around will all the properties I can find. Still, the executable seem to run afoul of some permission issue with the temp directory. I keep thinking there has to be some recipe that will work, at least for compilation. As it is, I can move each solution forward as soon as something breaks that is critical enough of a reason to mandate retesting. At this rate it will all be in 2005 by 2011 :) – Jeremy White Jul 9 at 19:32
vote up 4 vote down

Give XP Mode a try if you can't get it to run natively.

http://www.microsoft.com/windows/virtual-pc/download.aspx

link|flag
This would not be native to Windows 7 like what he was asking for. – m0ck0bject May 18 at 18:45
@m0ck0bject, you misunderstand XP mode, then. The unique virtual environment may offer 'native enough' features to accomplish what he desires. – Wayne Hartman May 18 at 18:49
I have heard that XP mode is just like running it natively, and most users would be unoticable. It not like you have to spool up a whole VM. I tries to simulate running the app as native, and remove the feeling of a VM. This is a pretty good suggestion. – aquillin May 18 at 18:59
I can't run it on this box. The processor doesn't support virtualization. But - it might be worth purchasing another box if that solution was shown to work. – Jeremy White May 18 at 19:16
XP Mode is really just new Virtual PC running XP, plus some added desktop integration where windows from the guest appear directly on desktop of the host, and host FS is auto-mounted in guest. It is still a "VM" in the same sense VMware is one. – Pavel Minaev Dec 3 at 4:41
show 1 more comment
vote up -1 vote down

Have you considered upgrading your solutions to vs2005, using MSBEE to target .net 1.1?

link|flag
These are non-.net applications (the 2003 ones.) I would -love- to upgrade them to 2005 but these are old legacy applications that have exhibited some strange behavior when compiled under vc2005 (beyond linker errors - those I can fix.) In simple terms, I can't justify to the client the effort needed to rewrite some complicated mathematical algorithms just to get things to compile under vc2005. – Jeremy White May 18 at 19:26
vote up 0 vote down

I'm sorry, your build environment requires you to have VC 2003, 2005, AND 2008 running concurrently? I would really bet that your efforts would be better spent simply consolidating your build environment to just one environment.

link|flag
2  
You obviously don't work for a customer that dictates how things will be done. I agree - it would be nice to ditch the legacy code but at this time it isn't an option. Sadly, they will eventually realize they should have invested the time and money to stay current when their product won't run on a currently available operating system. – Jeremy White May 18 at 19:17
I understand your predicament, I really do. Really, I'm just saying that at some point, you need to tell your customer that things just don't work, and it would take more time to do it their way than it would to fix it. Usually, customers understand money, and when you tell them it'll take 5 times as long to patch it than it will to fix it, they get the point. – McWafflestix May 18 at 19:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.