up vote 103 down vote favorite
34
share [g+] share [fb]

In particular,

  • what functionality is not available?
  • what restrictions are there on its use?
link|improve this question

50% accept rate
feedback

closed as not constructive by Kev Nov 16 '11 at 1:30

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

16 Answers

up vote 127 down vote accepted

The major areas where Visual Studio Express lacks features compared to Visual Studio Professional:

  • No add-ins/macros
  • Some Win32 tools missing
  • No Team Explorer support
  • Limited refactoring support
  • Debugging is much more limited (particularly problematic for server development is no remote debugging)
  • Lack of support for setup projects
  • No report creation tools
  • No Office development support
  • No mobile platform support
  • Limited set of designers
  • Limited set of database tools
  • No code profiling or test framework support
  • No MFC/ATL support
  • No support for compiling C++ to 64-bit images (workaround is to install Windows SDK which is free)

NOTE: it is often said that the Express EULA does not permit commercial development - that is not true (Visual Studio Express FAQ Item 7)

link|improve this answer
Excellent, thanks. – benefactual Sep 17 '08 at 21:06
1  
There is support for 64 bit execs! – George Edison Apr 17 '10 at 7:33
@George: Not for C++ – Michael Burr Apr 17 '10 at 8:05
@Michael: It can because I've done it. – George Edison Apr 17 '10 at 20:04
1  
@Michael: Yes. I installed the Windows SDK - but that's a free download too. – George Edison Apr 17 '10 at 22:41
show 1 more comment
feedback

There's a handy set of comparison charts on microsoft.com.

It depends on the particular express edition, of course (since there are several and they have different features). The limitations you're most likely to run into are source control integration (and TFS client license), debugging limitations, limited refactorings, no unit testing support, and limited designer support.

For completeness sake, here's a list of features that are in Visual Studio 2008 Standard Edition but are in none of the express editions:

  • Add-Ins
  • Macros and Macros IDE
  • Visual Studio Add-in project template
  • VSPackages
  • Wizards
  • ATL/MFC Trace Tool
  • Create GUID
  • Dotfuscator Community Edition
  • Error Lookup
  • Source Control Integration
  • Spy++
  • Team Explorer Integration
  • Team Foundation Server Client Access License
  • Visual Studio 2008 Image Library
  • Add-Ins/Macro Security options
  • Visual Studio Settings
  • Class Designer
  • Encapsulate Field Refactoring
  • Extract Interface Refactoring
  • Promote Local Variable to Parameter Refactoring
  • Remove Parameters Refactoring
  • Reorder Parameters Refactoring
  • Debugging Dumps
  • JIT Debugging
  • Mini-dumps
  • Multithreaded/Multiprocess Debugging
  • NTSD Command Support
  • Step-Into Web Services Debugging
  • CAB Project Project Template
  • Merge Module Project Template
  • Publish Web Site Utility
  • Setup Project Template
  • Setup Wizard Project Template
  • Smart Device CAB Project Template
  • Web Setup Project Template
  • Windows Installer Deployment
  • 64-bit Visual C++ Tools
  • Create XSD Schema from an XML Document
  • Reports Application Project Template
  • Visual Studio Report Designer
  • Visual Studio Report Wizard
  • Shared Add-in Project Template
  • ASP.NET AJAX Server Control Extender Project Template
  • ASP.NET AJAX Server Control Project Template
  • ASP.NET Reports Web Site project template
  • ASP.NET Server Control Project Template
  • ASP.NET Web Application Project Template
  • Generate Local Resources
  • WCF Service Host
  • WCF Service Library Project Template
  • WF Activity Designer
  • Custom Wizard Project Template
  • WF Empty Workflow Project Template
  • MFC ActiveX Control Project Template
  • MFC Application Project Template
  • MFC DLL Project Template
  • WF Sequential Workflow Console Application Project Template
  • WF Sequential Workflow Library Project Template
  • WF Sequential Workflow Service Library Project Template
  • WF State Machine Workflow Library Project Template
  • WF State Machine Workflow Designer
  • WF State Machine Workflow Service Library Project Template
  • WCF Syndication Service Library Project Template
  • Visual Studio Extensions for Windows Workflow Foundation Designer
  • Windows Forms Control Library Project Template
  • Windows Service Project Template
  • WF Workflow Activity Library Project Template
  • WPF Custom Control Library Project Template
  • WPF User Control Library Project Template
  • ASP.NET Server Control Item Template
  • COM Class Item Template
  • Configuration File Item Template
  • Frameset Item Template
  • Interface Item Template
  • CLR Installer Class Item Template
  • Local Database Cache Item Template
  • Module-Definition File Item Template
  • Nested Master Page Item Template
  • ATL Registration Script Item Template
  • MS Report Item Template
  • Report Wizard Item Template
  • .NET Resources File Item Template
  • Win32 Resource File Item Template
  • Static Discovery File (Web Services) Item Template
  • Transactional Component Item Template
  • Web Content Form Item Template
  • Windows Script Host Item Template
  • Windows Services Item Template
  • XML Schema Item Template
link|improve this answer
It seems like the link you gave (msdn.microsoft.com/en-us/vs2008/products/cc149003.aspx) is not valid any more. Do you have a working one? – Piotr Dobrogost May 11 '09 at 21:47
1  
@Piotr Dobrogost: Unfortunately, I don't have the rep to edit Wedge's post, but I think this might be what you want: microsoft.com/downloads/… – AgentConundrum Jun 8 '09 at 5:51
Updated the link, thanks @AgentConundrum. – Wedge Jun 8 '09 at 17:52
feedback

Here's comparison chart of editions

Edit: didn't realize this was for 2005, not 2008

link|improve this answer
1  
That is a nice overview for VS2005, shame the VS2008 comparison isn't so useful. – benefactual Sep 17 '08 at 19:33
feedback

Visual Studio 2008 Product Comparison

As far as I know there are no restrictions on it's use, but I'm not a lawyer.

AviewAnew pointed out you can use Express Editions for commercial use: there are no licensing restrictions for applications built using Visual Studio Express Editions. See FAQ #7.

link|improve this answer
Can I use Express Editions for commercial use? Yes, there are no licensing restrictions for applications built using Visual Studio Express Editions. microsoft.com/express/support/faq – Tom Ritter Sep 17 '08 at 19:18
1  
@Tobi It seems like the link you gave (msdn.microsoft.com/en-us/vstudio/products/cc149003.aspx) is not valid any more. Do you have a working one? – Piotr Dobrogost May 11 '09 at 22:19
@Piotr, a quick search turned up this download, seems it contains the comparison chart I originally linked to: microsoft.com/downloads/… – Tobi May 13 '09 at 10:45
feedback

These are the most significant for me :

  • You cannot set breakpoint with condition
  • Add-in support
  • Refactoring is very limited (rename, extract method)
link|improve this answer
feedback

MFC is the most important missing thing in my opinion.

link|improve this answer
10  
I would have thought that was a bonus! – Mitch Wheat Sep 27 '08 at 2:05
feedback

No add-ins allowed

link|improve this answer
Yea, no Vi keybindings :( – progo Feb 6 '11 at 18:16
feedback

One that is missing (which is nice to have) is:

Source Control Integration enables two options: source control solution based on the Source Control Plug-in API (formerly known as the MSSCCI API), or a source control VSPackage

This is particularly important especially if you're working with systems like Perforce where you must check out files before changing with them, particularly changing project settings for all team members.

link|improve this answer
I think if I were expected to work with Perforce, I might investigate using local Mercurial repositories and the Perfarce extension to push/pull to the Perforce repos. That would also mean being able to use TortoiseHg in Windows Explorer rather than relying on a VS plug in for VCS. – Mark Booth Mar 24 '10 at 13:37
feedback

Other people have posted huge lists, but as a practical matter, speaking as someone who does mostly systems programming, the features I miss most when using the express edition are

  1. the thread-aware parts of the debugger,and

  2. the ability to open files with the built-in binary viewer.

If I did MFC programming more often I would probably miss the dialog designer as well.

link|improve this answer
point 1, very important. – Hassan Syed Mar 11 '11 at 10:29
feedback

This MSDN document should get you everything you need!

link|improve this answer
@Mitchel Sellers It seems like the link you gave (msdn.microsoft.com/en-us/vstudio/products/cc149003.aspx) is not valid any more. Do you have a working one? – Piotr Dobrogost May 11 '09 at 22:23
Argh...darn MS and moving links. I'll try to dig up a new one! – Mitchel Sellers May 12 '09 at 13:57
feedback

I think in 2008 the express editions do not have the built in Testing features for one.

link|improve this answer
feedback

You can build MFC apps if you download the libraires in the platform SDK. But there is no built in support for designing dialogs

link|improve this answer
feedback

Add-ins are allowed in VS express. The most notable one is straight from Microsft: XNA Game Studio works as a VS express add-in.

There's even a project type (maybe only available in full VS) that lets you build your own VS express add-ins!

link|improve this answer
feedback

Note that currently, you can't get F# in an Express edition, though I imagine that this is likely to change at some point in time.

There is a workaround - you install the Visual Studio Shell and F# CTP separately and they work together.

link|improve this answer
feedback

I had trouble with Visual Studio Express (C++) 2008 (with service pack 1) on Windows Vista, with debugging. Any time I did anything such as (a) break the program, (b) set focus from the app back to the IDE, (c) resume execution, the program hung for about 30 seconds. Task Manager showed "VSExpress.exe" consuming an entire CPU for the duration. Vista showed "Not responding" in the IDE's title bar during this time.

This was driving me bonkers so I bought a commercial copy of Visual Studio Professional 2008 ($150 from SoftwareSurplus) and this solved the problem.

link|improve this answer
feedback

You can't create windows services for one.

link|improve this answer
I've created Windows services using Express. It's a little more difficult than the paid-for editions because the Express IDE will not create all the code to install and run the services for you, but it is possible. – Jonathan Webb Sep 17 '08 at 19:53
feedback

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