I followed the steps to create a Visual Studio extension, however after installing the extension in VS2015, Visual Studio does not display any icons in toolbars in menus. Any idea what could be the cause and how to restore icons.
-
I have this problem too. Just sayin' – Programmer Paul Jul 31 '15 at 02:39
-
Same for me, although I did a fresh installation of Visual Studio 2015 and doesn't show any icons in the toolbar nor anywhere else (e.g. solution explorer, server explorer, etc...) – Maurits van Beusekom Aug 04 '15 at 07:27
-
@Maurits van Beusekom: I have a hint it is caused by hardware rendering. What video card are you using? – AlexRoz Aug 05 '15 at 16:00
-
@AlexRoz: I have resolved my problem with the help of Microsoft Support. Turns out that in my case the environment variable %LocalAppData% did not map to a valid location on my harddisk. Fixing this issue resolved the problem I was experiencing with the icons not loading in Visual Studio 2015. Thank you however for offering your assistance. – Maurits van Beusekom Aug 06 '15 at 05:56
-
@Maurits van Beusekom, Thank you! But in my case the %LocalAppData% is set correctly – AlexRoz Aug 06 '15 at 17:07
8 Answers
I had same issue and it was resolved by just remove the ImageLibrary.cache
file from
C:\Users\< user ame>\AppData\Local\Microsoft\VisualStudio\14.0\ImageLibrary
and re-open the visual studio

- 892
- 10
- 20
-
6This helped me in VS 2017 too. AppData\Local\Microsoft\VisualStudio\15.0_e263f642\ImageLibrary\ – Deepak Mariswamy Jul 17 '17 at 17:44
-
5Same goes for me, also worked in VS 2017. FYI - the subfolder in VisualStudio is not always the same, but go for the 15.[then some alphanumeric sequence]. And for those who can't locate their AppData\Local, just type in `%localappdata%` from File Explorer. – Ricardo Virtudazo Jr Sep 12 '17 at 09:31
-
-
Different visual studio has different directory name. Please refer above comment of @RicardoVirtudazoJr – nativegrip Mar 22 '18 at 06:09
-
-
Microsoft released a solution yesterday. Here is the link. I had to close and reopen VS for the update to take effect. Worked like a charm!

- 615
- 1
- 11
- 23
I had this issue on a windows 10 upgrade and installing an extension. VS couldn't seem to find the files required under my windows profile. I realized that I was logging in through my windows Live login (my email) and not my local user account. I logged in under my local account and it now has no issues finding all files it needs. Hopefully this helps someone with this issue.

- 21
- 1
I've experienced the same issue intermittently. Updating the computer's display drivers may resolve the issue.

- 499
- 1
- 5
- 6
-
Updated NVidia drivers, did not help. Re-install Visual Studio, the problem is still there – AlexRoz Jul 30 '15 at 14:21
I have solve the issue after asking on Msdn forum I got some suggestion and got myself sorted. Here is the link with the explaination. Link MSDN

- 81
- 1
- 3
-
Thank you, @user5177742: I run as administrator but the problem occurs when installing/uninstalling extension (VSIX) – AlexRoz Aug 10 '15 at 17:31
In Visual Studio 2017
solve this ;
Open this folder
C:\Users\YourName\AppData\Local\Microsoft\VisualStudio\15.0_533da44c\ImageLibrary
than remove the ImageLibrary.cache
file

- 1,375
- 18
- 28
In Visual Studio 2015, 2017 solve this ; Open this folder
- Press Windows Key + R (Open Run from).
- Type "%LocalAppData%\Microsoft\VisualStudio\".
- Go to "15.0_......" (Your random name) Directory.
- Go to "ImageLibrary" Directory.
- Remove "ImageLibrary.cache" file.
- Starting VS2015 or VS2017.

- 1
- 1