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

前端 未结 16 1216
甜味超标
甜味超标 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:27

    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.

    0 讨论(0)
  • 2020-12-14 03:28

    I did managed to install VS2003 on Windows 7 32 bit. However I had to do some IIS tricks in order to be able to run my ASP.NET project. When you install VS2003 Web Development component can't be selected. Basically you have to drop your VS2003 ASP.NET v1.1 into C:\inetpub\wwwroot\project_name and make it working on it's own as a standalone web portal first. Here is the steps I did.

    1. Install IIS on Windows 7

    1. Copy your VS2003 project to C:\inetpub\wwwroot\project_name. Right click on your project_name and Convert to application. Following was my custom issue that didn't work until I enabled Windows Authentication even if I had no related settings in my web.config. Select your project_name > Authentication > enable both Anonymous and Windows Authentications.

    1. Enable ASP.NET 1.1 in ISAPI and CGI Restrictions and make sure ASP.NET is added under ISAPI filters
    2. Once I'm able to fire up my ASP.NET project in a browser go ahead and open project from your project location in my case is C:\inetpub\wwwroot\MHSScoreOrg\MHSScoreOrg.sln. I was able to run my project only when it was fully integrated on IIS.
    0 讨论(0)
  • 2020-12-14 03:34

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

    0 讨论(0)
  • 2020-12-14 03:36

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

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

    0 讨论(0)
提交回复
热议问题