views:

2971

answers:

13

I am just about to buy a Dell Studio 15 Laptop with Windows 7 Pro 64bit Has anyone faced any issues in installing or working with Visual Studio 2008 on Windows 7 Pro. Or do I need to go for Windows 7 Pro 32 bit?

[EDIT]
Any issues with any other development tools, what about VS2008SP1, Azure Add ons, Sql Server 2008 express, Virtual Server 2005 etc ?

[EDIT 2]
Could you all please list the development applications (specify 32/64bit) you have installed on you 64bit windows 7 (also specify the version of Windows 7 used)

A: 

I've been running VS2008 on a Dell D830 (the one I'm using right now) running Win7 x64 for over two months. No issues whatsoever. Just run the development environment as admin and you're good.

Dave Swersky
I run it normally (not as admin) and have no problems. You probably use IIS whereas I use Cassini. The IDE works great under UAC if you do not have such needs.
Chris
Let me clarify: I still use IIS 7.5 a couple times a week, but most of the time I don't need it.
Chris
Which version of Win 7 did you try this on?
Binoj Antony
I just did a new install on Windows 7 Ultimate and confirmed that I can run Visual Studio 2008 as normal (not admin) using Cassini. Quite nice, I can leave my UAC on without it affecting VS2008.
DavGarcia
+2  A: 

I am using VS 2008 in Windows 7 64 bit from September 2009. So far no issues. Just remember Win 7 64 bit required min of 2GB RAM and 32 Bit requires 1GB of RAM.

Shoban
Which version of Win 7 did you try this on?
Binoj Antony
Ultimate and Professional
Shoban
+2  A: 

I'm using VS 2008 on Windows 7 64-bit and have been since RC with no issues.

Alexander Kahoun
Sweet!.........
Robert Harvey
Which version of Win 7 did you try this on?
Binoj Antony
I used Ultimate RC and now use Ultimate Retail. The thing is with Windows 7, they all use the same OS software. Even if you buy a Home Premium DVD, the Ultimate version is on the disc. The product key is what unlocks the features, so unless there's a specific feature you're looking for then you should have the same experience for any version of Windows 7. http://en.wikipedia.org/wiki/Windows_7#Editions_2
Alexander Kahoun
+6  A: 

I own ALMOST that exact laptop. A Dell Studio 16 with Windows 7 64-bit Ultimate (RTM) installed. It runs perfectly. Visual Studio 2008 runs perfectly, too. I also run the same setup on my desktop and it runs well there.

The following tools are installed and work flawlessly:

  1. VS2008SP1
  2. Altova XMLSpy 2010
  3. AVGFree 9.0 AV
  4. BeyondCompare 3.x
  5. CodeSmith Pro 5.1
  6. ReSharper 4.5.x (5.x EAP works too)
  7. ASP.Net MVC
  8. Office 2007 Ultimate
  9. SQL Server 2008 64-bit (2005 32-bit Express worked fine too, but I don't have that installed any longer. I am sure 2008 Express 32-bit would work as well.)
  10. All Modern Browsers
  11. TortoiseSVN 64-bit
  12. VisualSVN
  13. WinRAR x64

Another reason to go with 64-bit is because that laptop will take up to 8 gigs of RAM, and you need a 64-bit OS for that. Save yourself a reinstall and go 64-bit now :)

Other notes about this laptop that I can tell you:

The laptop starts up and shuts down in just seconds. It's perfect for Win7.

You will be very happy, Binoj!

I have more information about my setup here. Aside: I also talk about how the performance improved when I added an SSD. I'm including this slightly OT stuff because I think it would benefit you personally, as your laptop is nearly identical. Note that in the blog post I have the RC installed, but I have been running the RTM for quite some time now and it works great!

Chris
Any issues with any other development tools, what about VS2008SP1, Azure Add ons, Sql Server 2008 express etc?
Binoj Antony
Btw Studio bundles Home Premium, and I am upgrading it to Pro, Which version do you have?
Binoj Antony
I haven't tried the Azure stuff, but given the fact that everything else works and I see countless MS employees doing webcasts on Dells, I think we're golden.
Chris
Make sure you get the RGBLED display. It's SO WORTH IT. The side-by-side comparison with my old Inspiron E1705 was shocking.
Chris
Dude, even GREY was more vivid ;-)
Chris
Sql Server 2008 express 32bit?
Binoj Antony
Updated the answer with stuff from the comments.
Chris
They are giving me the following - 15.6 720p WLED (1366x768) Display with TrueLife. Is this good enough?
Binoj Antony
I think "LED" is the key, and it's the same display I have but I am not 100% sure.
Chris
All installed and working fine, thanx for all your help..Just one issue though can't have Virtual PC due to the processor being 6600 (only Vostro laptops have 6670 :( )
Binoj Antony
The P8700 was an option when I ordered, and that is what I have. It works with VMWare Workstation 7.0, and I believe VPC but I have not tested that one.Historically, VMWare workstation has run on CPUs without built-in virtualization support so you might want to look into it.
Chris
A: 

I have several friends running that config for several months with 0 complaints.

bobber205
Has any of them used VS2008 on Windows 7 Home Premium?
Binoj Antony
I think all of them have been that or Ultimate. Not sure though.
bobber205
+1  A: 

Visual Studio 2008 has some random 64-bit OS issues, but they aren't specific to Windows 7 x64. It has some bugs where you can become unable to save documents in certain situations, and you're sometimes unable to change Visual C++ project properties. Nothing so crippling that I'd suggest going back to 32-bit, and I was able to overcome every issue I came across by using the editbin tool on devenv.exe and marking it as not-large-address-aware.

You also can't do mixed-mode (native + managed) debugging against a 64-bit process, but if you work in 32-bit processes exclusively, it doesn't matter. You also can't use Edit and Continue in 64-bit .NET apps.

I'm pretty sure that all of those issues have been fixed in the current VS2010 builds.

Morbo
Which version of Win 7 did you try this on?
Binoj Antony
Damn, didnt see your note on the Edit and contune :)
Darien Ford
My experience with this comes from Windows Server 2008 x64 and Windows Server 2008 R2 x64. I also use Visual Studio 2008 on Windows 7 Ultimate x64 more recently, but I've preemptively used editbin and haven't run into those problems.
Morbo
+2  A: 

One caveat to note, if you target "Any CPU" or specifically "x64" you will be unable to use "Edit and Continue".
That is, you will be unable to break execution, change code, and then continue execution. This can significantly slow down development in some cases, and is not immediately apparent until you use it. To get around this, ensure your target is "x86" unless you absolutely need to target 64 bit.

Ultimately having multiple build profiles will be the only real solution if you want to use "edit and continue" while building on a 64 bit OS.

Darien Ford
A: 

No problems at all running Visual Studio (2008 or 2010) in 64-bit Windows 7 (Ultimate edition here). Visual Studio is a 32-bit app, but that is not a problem.

As far as I know, the only constraint on Home Premium that may be a concern for some developers is that you can't join a domain.

IIS is not installed as a default configuration on any edition of Windows 7, but it can be configured from the control panel that configures Windows features. (link on Programs and Features control panel)

Other useful programs that run fine in 64-bit Windows 7:

  • Microsoft Expression Suite
  • Visual Studio 2010
  • Adobe CS4
Cylon Cat
A: 

Im using Windows7 Home Premium x64 with both Visual Studio 2008 and Visual Studio 2010 Beta installed. No issues found.

dario
A: 

There are problems debugging the form load event with visual studio 2008 and 64 bit windows 7. Throw an exception in form load and see what happens!!

Ste Millington
You mean throw it within a try or outside of it?
Binoj Antony
A: 

I am using win7 64x pro + VS2008sp1/2010pro + sql2008 std, no issues with speed or others, but recently I had copied a project from old laptop (xp pro 32 bit) and noticed some issues.

As noticed by some other users issues with load event, debug and continue are noticed by other collogue, but on all similar machines debugging Episerver projects takes almost 30 min to run default page. The same page used to load in seconds in old configuration.

Other projects on VS2008 or VS2010pro works like charm. Are there any issues with Episerver's dlls copied across? Does any one noticed similar issues?

Sanjay.

Sanjay Zalke
A: 

I was wondering if it's possible to install VS2008 on Win 7 Home Premium (because Win 7 released in 2009 :D) but now I know at least it's possible, but with some bugs, so now I'm wondering whether I should uninstall Win 7 then install XP

Newbie
A: 

I am using VS2008 SP1 and Team Explorer on Windows 7. I first used it with the 32-bit version and things were great. Then my machined got paved by IT with the 64-bit version. I now have issues with VS windows coming up funny, windows not repainting themselves etc. These issues are really annoying. Co-workers with 64-bit have the same issues, ones with 32-bit are happy. So if I had the choice I would go back to 32-bit.

fredw