Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8085071
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T17:59:47+00:00 2026-06-05T17:59:47+00:00

In short I’m looking for the executable names and registry paths to the InstallDir

  • 0

In short I’m looking for the executable names and registry paths to the InstallDir key for each of the Visual Studio 2012 Express editions.

They are (minus the RC label)

  • Visual Studio Express 2012 for Windows 8
  • Microsoft Visual Studio Express 2012 for Web
  • Visual Studio Team Foundation Server Express 2012

The registry path will be in the HKLM hive and be something like:

{HKLM}\SOFTWARE\Microsoft\????\11.0

The executable names is probably different for each edition if previous versions of VS Express are anything to go by.

For completeness, here’s the edition number, version, solution version and HKLM relative registry path of each of the previous versions of Visual Studio .Net from 2002 up to 2012.

public class VSType
{
    public VSType(){}
    public VSType(string edition, string version, string solutionVersion, string hklmRegistryPath) {/*...*/}
    public static VSType VS2002 = new VSType("2002", "7.0", "7.00", "SOFTWARE\\Microsoft\\VisualStudio\\7.0");
    public static VSType VS2003 = new VSType("2003", "7.10", "8.00", "SOFTWARE\\Microsoft\\VisualStudio\\7.1");
    public static VSType VS2005 = new VSType("2005", "8.0", "9.00", "SOFTWARE\\Microsoft\\VisualStudio\\8.0");
    public static VSType VS2008 = new VSType("2008", "9.0", "10.00", "SOFTWARE\\Microsoft\\VisualStudio\\9.0");
    public static VSType VS2010 = new VSType("2010", "10.0", "11.00", "SOFTWARE\\Microsoft\\VisualStudio\\10.0");
    public static VSType VS2012 = new VSType("2012", "11.0", "12.00", "SOFTWARE\\Microsoft\\VisualStudio\\11.0");
}

public class VSExpressType : VSType
{
    public VSExpressType(VSType vsType, string name, string exeName, string hklmRegistryPath) {/*...*/}

    // 2005  ***********************************************************************
    public static VSExpressType VSExpress2005CSharp = new VSExpressType(VS2005,
        "Microsoft Visual C# 2005 Express Edition",
        "VCSExpress.exe",
        "SOFTWARE\\Microsoft\\VCSExpress\\8.0");

    public static VSExpressType VSExpress2005VB = new VSExpressType(VS2005,
        "Microsoft Visual Basic 2005 Express Edition",
        "vbexpress.exe",
        "SOFTWARE\\Microsoft\\VBExpress\\8.0");

    public static VSExpressType VSExpress2005Web = new VSExpressType(VS2005,
        "Microsoft Visual Web Developer 2005 Express Edition",
        "VWDExpress.exe",
        "SOFTWARE\\Microsoft\\VWDExpress\\8.0");

    // 2008  ***********************************************************************
    public static VSExpressType VSExpress2008CSharp = new VSExpressType(VS2008,
        "Microsoft Visual C# 2008 Express Edition",
        "VCSExpress.exe",
        "SOFTWARE\\Microsoft\\VCSExpress\\9.0");

    public static VSExpressType VSExpress2008VB = new VSExpressType(VS2008,
        "Microsoft Visual Basic 2008 Express Edition",
        "vbexpress.exe",
        "SOFTWARE\\Microsoft\\VBExpress\\9.0");

    public static VSExpressType VSExpress2008Web = new VSExpressType(VS2008,
        "Microsoft Visual Web Developer 2008 Express Edition",
        "VWDExpress.exe",
        "SOFTWARE\\Microsoft\\VWDExpress\\9.0");

    // 2010  ***********************************************************************
    public static VSExpressType VSExpress2010CSharp = new VSExpressType(VS2010,
        "Microsoft Visual C# 2010 Express Edition",
        "VCSExpress.exe",
        "SOFTWARE\\Microsoft\\VCSExpress\\10.0");

    public static VSExpressType VSExpress2010VB = new VSExpressType(VS2010,
        "Microsoft Visual Basic 2010 Express Edition",
        "vbexpress.exe",
        "SOFTWARE\\Microsoft\\VBExpress\\10.0");

    public static VSExpressType VSExpress2010Web = new VSExpressType(VS2010,
        "Microsoft Visual Web Developer 2010 Express Edition",
        "VWDExpress.exe",
        "SOFTWARE\\Microsoft\\VWDExpress\\10.0");

    // 2012 ***********************************************************************
    public static VSExpressType VSExpress2012WIn8 = new VSExpressType(VS2012,
        "Visual Studio Express 2012 for Windows 8",
        "EXENAME",
        "SOFTWARE\\Microsoft\\REGISTRYPATH");

    public static VSExpressType VSExpress2012Web = new VSExpressType(VS2012,
        "Microsoft Visual Studio Express 2012 for Web",
        "EXENAME",
        "SOFTWARE\\Microsoft\\REGISTRYPATH");

    public static VSExpressType VSExpressTFS2012 = new VSExpressType(VS2012,
                "Visual Studio Team Foundation Server Express 2012",
                "EXENAME",
                "SOFTWARE\\Microsoft\\REGISTRYPATH");
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T17:59:48+00:00Added an answer on June 5, 2026 at 5:59 pm

    Visual Studio Express 2012 for Windows 8

    • Exe Name: VSWinExpress.exe
    • Reg Path: {HKLM}\\SOFTWARE\\Microsoft\\VSWinExpress\\11.0

    Microsoft Visual Studio Express 2012 for Web

    • Exe Name: VWDExpress.exe
    • Reg Path: {HKLM}\\SOFTWARE\\Microsoft\\VWDExpress\\11.0

    Visual Studio Team Foundation Server Express 2012

    • ExeName: TfsMgmt.exe for the Management console
    • Reg Path: {HKLM}\\SOFTWARE\\Microsoft\\TeamFoundationServer\\11.0

    Note that there is no InstallDir directly under the TFS\11 path. Instead there’s an InstalledComponents node with a list of compents that are installed and InstallPath keys for each.

    Also note that on 64 bit PCs, the keys will be under the {HKLM}\\SOFTWARE\\Wow6432Node\\ node.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Short Version I'm currently looking into an issue with MySQL collations and how they
Short Generating table with barcodes of items. Each item has exact quantity in database
Short of inserting a try/catch block in each worker thread method, is there a
Short question, is the following ok: struct X { A& x; A y; X()
Short one: Am I correct in assuming, that the Samsung Galaxy S wifi 4.0
Short version: Can I grant access to external databases to a role? Long version:
Short: Is there a way we can push to multiple remotes simultaneously using Github
Short story: stopPropagation() prevents a dropdown menu from closing - which is good. But
Short and simple, our project has a Launcher component and an Application component and
Short and simple question. In Winforms you can bind a dataview to a combobox

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.