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 8449791
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T10:48:23+00:00 2026-06-10T10:48:23+00:00

I got access to Visual studio 2012 a couple of days back and I

  • 0

I got access to Visual studio 2012 a couple of days back and I found that the solution explorer is a bit too minimalistic for my taste.
With most icons grey and black , I have to make an extra effort to find out the file that I was looking for.

Is there a way to revert back to 2010 style icons for files ?

  • 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-10T10:48:25+00:00Added an answer on June 10, 2026 at 10:48 am

    The only “solution” I know if is to uninstall Visual Studio 2012.

    The problem comes down to how the icons are registered. When 2012 is installed, all the HKEY_CLASSES_ROOT icon registrations are over-written with 2012. Conceptually you could edit these registrations to “restore” or change the icon. For example, .csproj files are linked to the first icon in the C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC#\VCSPackages\csproj.dll file. You could change that so the icon points to the first icon in C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC#\VCSPackages\csproj.dll instead. A .reg file to set that value could be created to set that value, for example:

    Windows Registry Editor Version 5.00
    
    [HKEY_CLASSES_ROOT\VisualStudio.Launcher.csproj.11.0\DefaultIcon]
    @="c:\\Program Files (x86)\\Microsoft Visual Studio 10.0\\VC#\\VCSPackages\\csproj.dll,0
    

    That, when double-clicked, would “restore” the icon to the 2010 icon. But, you’d have to do that for each and every icon you want to “restore”.

    Update:

    I suppose you could write some code to search the registry and replace icons that point to 11.0 files and replace them with 10.0 files. For example:

    const string vsDirectory = "c:\\Program Files (x86)\\Microsoft Visual Studio 11.0\\";
    int index = vsDirectory.IndexOf("10.0\\", StringComparison.Ordinal);
    
    var keyNames = Registry.ClassesRoot.GetSubKeyNames();
    foreach (var name in keyNames.Where(name => name.StartsWith("VisualStudio.Launcher.")))
    {
        using(RegistryKey key = Registry.ClassesRoot.OpenSubKey(name+@"\DefaultIcon"))
        {
            if (key == null) continue;
            var value = key.GetValue(null).ToString();
            if (!value.StartsWith(vsDirectory)) continue;
            var sb = new StringBuilder(value);
            var newValue = sb.Replace("10.0", "11.0", index, 4).ToString();
            var elements = newValue.Split(',');
            if (elements.Length <= 0) continue;
            var filename = elements[0];
            if (File.Exists(filename))
            {
                key.SetValue(null, sb.ToString());
            }
        }
    }
    

    This particular bit of code only changes class root keys associated with VisualStudio.Launcher and only changes icons that are contained in a file within the “c:\Program Files (x86)\Microsoft Visual Studio 11.0\” directory and have a corresponding 10.0 file. i.e. it won’t change the icon of a .cs file. To include those files change "VisualStudio.Launcher." to "VisualStudio." It also assumes icon indexes haven’t changed from 10 to 11.

    I don’t have 10 and 11 installed together, so I didn’t test the SetValue of this code. If you use the code, you need to make sure your install is in “c:\Program Files (x86)”.

    No warranties expressed nor implied. Use at your own risk and only after backing up. If it does what you want, let me know.

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

Sidebar

Related Questions

I got two project in my solution in Visual Studio 2010. Project 1 contains
I've got this error while compiling a big c# solution in Visual Studio 2010.
I have a visual studio solution and when I opened it I got an
I've got a data access class that sets up three phpcassa connection pools on
I got a combobox that is populated from a access database. How can I
I've got a couple of colleagues who love Access and have lots of important
I've got a little Bash script that I use to access twitter and pop
I've got a HTML/JS (YUI framework) photo-organizer that needs access to the local FS.
I am using the Crystal Reports designer that came with Visual Studio 2008. My
I am new in creating application using Visual Studio 2010 and Microsoft Access 2007.

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.