Microsoft Word files have weird icons suddenly?

11

1

enter image description here

All of a sudden, my Microsoft Office files have the generic file icon, and it happens with Powerpoint and Word, but not Excel. I can open the files just fine, and I tried restarting my computer, creating new files, clicking F5 on the desktop, turning off my Windows XP theme patcher, and none of them worked, any ideas?

EDIT: I've also noticed that it happened to the following programs: Windows Live Messenger, iTunes, and Skype, so not just MS Office. Yet, some are still fine like IE, Paint, GIMP, Paint.NET, a few web browsers, etc.

I tried using ShellExView, and there were only two that happened on a date close to when the icons went crazy, and they were both on that date (Nov 15), but as for the modified date, none were even recent. I disabled them, and restarted Windows Explorer, but it didn't work. enter image description here

Oztaco - Reinstate Monica C.

Posted 2012-11-15T01:24:38.960

Reputation: 1 305

I suspect your registry is hosed. – Daniel R Hicks – 2012-11-27T20:47:55.847

Answers

9

You only explicitly mention the desktop. Are files in other folders affected?


Try deleting any thumbs.db file that exists. You may have to enable the display of hidden and system files to see it. Those files are safe to delete (thumbnail cache) and will be automatically regenerated by Windows.


This may be caused by a faulty shell extension. Have you installed anything recently?

Take a look at installed shell extensions with ShellExView.

  1. Go to Options => Filter By Extension Type; hold shift and select Icon Handler, Icon Overlay Handler and Thumbnail. Is there anything there that was recently installed?

  2. Try sorting by the File Created Time and CLSID Modified Time columns. Any items modified around the time you first noticed this?

  3. You can safely disable shell extensions to test, using the right click context menu. You may need to restart explorer.exe to force it to reload/unload any changed extensions.


  • You could try a repair installation of Microsoft Office. There is a chance that the icon files, etc., got corrupted and a repair installation should fix that. You might need to do so from the installation DVD if you have deleted the cached installation files (which are quite large).

  • You may also wish to run sfc /scannow to verify and repair any corrupted or missing system files.

  • You could also try a System Restore to a point before this first started happening. There is a chance that a Windows update corrupted necessary files, especially if an unclean shutdown occurred.

Bob

Posted 2012-11-15T01:24:38.960

Reputation: 51 526

I couldn't find any thumbs.db files, but somebody else recomended all files ending in .db, which fixed the icons for a few programs, but most are still broken. As for the ShellExView, I followed your instructions and disabled them, but it didn't work. Check out my edit for my details on that... I tried repair installation, but the installer literally opens, waits 5 seconds, then closes forever. As for the "sfc /scannow", it didnt fix it, but it removed my ability to use my hacked Windows XP theme, so thanks a lot for that :p . – Oztaco - Reinstate Monica C. – 2012-11-26T00:41:07.970

I also tried the Restore Point on the day that it happened, it broke more than it fixed :/ – Oztaco - Reinstate Monica C. – 2012-11-26T00:41:32.200

@leaf68 Were you using the installation DVD to perform the repair? Have you tried a reinstall (uninstall + install)? – Bob – 2012-11-26T04:19:10.810

I got it online so I don't have a CD, I have a download link. But yes, I tried the download link installer to repair. – Oztaco - Reinstate Monica C. – 2012-11-26T22:20:08.643

7

Terminate Windows Explorer, erase the centralized thumbnail cache by deleting all of the files ending in .db in the %UserProfile%\AppData\Local\Microsoft\Windows\Explorer folder, then restart the Explorer process. This can easily be done using a batch script (you may need to close other programs first):

taskkill /f /im explorer.exe
cd %UserProfile%\AppData\Local\Microsoft\Windows\Explorer
del *.db
explorer

Note that you can also use CCleaner to do this.

I've dealt with this before and it usually comes down to corruption of the thumbnail cache. Though I'm not exactly sure about this, cleaning the registry using CCleaner may also help.


Update

Try deleting all of the Thumbs.db files in your entire user folder using this script (don't worry, I've actually tested these commands :-)):

cd %UserProfile%
del /a:h /s Thumbs.db

You can integrate these commands into the first script, producing the following:

taskkill /f /im explorer.exe
cd %UserProfile%\AppData\Local\Microsoft\Windows\Explorer
del *.db
cd %UserProfile%
del /a:h /s Thumbs.db
explorer

Update 2

Try this:

del %UserProfile%\AppData\Local\IconCache.db

I've revised the script to make it more elegant and add the above command (in a modified form):

taskkill /f /im explorer.exe
cd %UserProfile%
del AppData\Local\Microsoft\Windows\Explorer\*.db
del AppData\Local\IconCache.db
del /a:h /s Thumbs.db
explorer

See KB2936571: Icons change incorrectly in Windows.

bwDraco

Posted 2012-11-15T01:24:38.960

Reputation: 41 701

+1 because the batch script fixed skype, and a few other programs, but it still didn't fix MS Office :/ – Oztaco - Reinstate Monica C. – 2012-11-25T06:27:41.513

@leaf68: See update. – bwDraco – 2012-11-26T02:46:47.510

That deleted something but the icons didn't change :( – Oztaco - Reinstate Monica C. – 2012-11-26T22:19:19.283

@leaf68, the problem is in the icon cache, not the thumbnail cache. See my second update; this should solve the problem. – bwDraco – 2012-11-27T20:44:56.213

@leaf68, are you online? – bwDraco – 2012-11-30T02:51:06.523

I am now. The second script didn't fix it either, sadly. I couldn't reply because my computer was gone for a few days, so I had no access to the internet. – Oztaco - Reinstate Monica C. – 2012-11-30T22:39:04.927

3

Oddly enough, Office programs don’t seem to have a user-friendly, built-in associate file-types function like pretty much every other program. Nevertheless, there are a few ways to restore the Office file-type association (though be aware that .docx is also used by WordPad in Windows 7, not just Office).

Synetech

Posted 2012-11-15T01:24:38.960

Reputation: 63 242

I already tried that, and the weird thing is, it opens with Word by default anyway, but the icons wont show up right. I even tried changing it to WordPad and then back to Word, and it still didn't work – Oztaco - Reinstate Monica C. – 2012-11-25T06:32:31.330

You tried what? I listed three things. The first and third options may or may not help with the icon, but the second one should. – Synetech – 2012-11-25T15:25:48.650

But all 3 of them do the same thing? I tried the first and second one. The files open with Word when I open them, but the icons are still the same as before. – Oztaco - Reinstate Monica C. – 2012-11-25T23:59:31.077

> But all 3 of them do the same thing?   Not quite. The first and third methods simply changes registry settings to use the specified program to open a file and sets the icon manually. The second method—I should probably rearrange them—uses the program itself to associate its file-types. This is the best method because file association is not necessarily a simple matter of setting .xxx = blah.exe; many programs like browsers and most Microsoft programs have use extensive, complex methods with all kinds of hooks and registry entries to set file associations. – Synetech – 2012-11-26T01:15:16.480

The icon for Office programs may not be as simple as DefaultIcon=winword.exe; it may/probably be done through an icon handler, which allows for things like previews in thumbnail-mode (I am almost certain that Office files do in fact have icon-/preview-handlers). As such, you really need to have the program itself re-register its associated file-types to do it correctly. – Synetech – 2012-11-26T01:17:11.860

Oh I understand, sorry. I'd reinstall office, but the installer just opens, and closes 5 seconds later – Oztaco - Reinstate Monica C. – 2012-11-26T02:36:20.810

Running it with the /r switch or with /unregserver and then /regserver would be an easier step before resorting to doing a repair install. (If the installer is not working, then your installation may have gotten corrupted which could account for the icon problem, but it is a different issue.) – Synetech – 2012-11-26T02:43:10.380

3

For me the problem was caused by a missing folder.

Office 2010 file icons are stored in:

C:\Windows\Installer\{90140000-0011-0000-0000-0000000FF1CE}

...in 4 files: ACCICONS.EXE, PPTICO.EXE, WORDICON.EXE and XLICONS.EXE.

I recreated the folder {90140000-0011-0000-0000-0000000FF1CE} in C:\Windows\Installer and copied those 4 files from C:\Program Files (x86)\Microsoft Office\Office14.

in other installations the folder may be named differently then this. search for the exact folder name in the registry (regedit ---> find --->wordicon.exe), mine was : {90140000-0011-0000-1000-0000000FF1CE} for example

postdan

Posted 2012-11-15T01:24:38.960

Reputation: 31

1I am not on Windows, but I'd say it's weird that the icons are taken from some Installer folder rather than from the actual program folder. Though apparently this did the trick, I wonder if it's not the registry that is somehow referring to the wrong location instead? – Arjan – 2015-02-08T10:13:44.840

yes, i deleted the folder a while back and right after that the issue started for me. Weird to look here for icons .. Microsoft, grrrr – Nrj – 2015-11-11T15:49:17.657

1

IF word and power point are still installed you need to reassociate the file type to the program, something stole it. Right click on the file > open with > choose default program(or select program) > find word/powerpoint in the list and make sure the checkbox next to always use this program to open this file is checked and click ok.

Fix File association walk through

If word or powerpoint are no longer installed you will have to reinstall them.

Phillip R.

Posted 2012-11-15T01:24:38.960

Reputation: 1 801

1I already tried that, the file opens with word by default already when I double click it as well – Oztaco - Reinstate Monica C. – 2012-11-16T22:53:04.837

Have you tried doing a repair install of office? method 2 most likely http://support.microsoft.com/kb/924611

– Phillip R. – 2012-11-17T03:27:40.420

1Several times... ecah time the uinstall window opens up, "Please wait while setup prepares necessary files." the closes 2-3 seconds later. – Oztaco - Reinstate Monica C. – 2012-11-17T03:50:16.573

1

If your MSOFFICE (or any application) is installed on a different disk than your OS and that disk becomes unavailable or very latent, icons will behave this way.

Fergus

Posted 2012-11-15T01:24:38.960

Reputation: 1 541

It's installed on my local hard drive, sadly. – Oztaco - Reinstate Monica C. – 2012-11-22T04:21:05.453

I know it sounds crazy, but you may want to see if your HD is having problems or not well connected. I had similar problems on SSD a year ago. It turned out to be the connection. – Fergus – 2012-11-22T04:43:47.813

it seems really hard to believe that a faulty connection could cause only certain files to act weird every single time...but is there a way I could test this without opening up my computer? – Oztaco - Reinstate Monica C. – 2012-11-25T06:29:51.250

1

It seems to me the problem is missing Installer files.

Are you running low on disk space? Have you tried making some space by deleting files?

That was the cause when it happened to me. I don't remember the exactly folder, but it was C:\Windows\$hf_mig$ if I'm not mistaken.

I don't think there's an easy way to correct that. You can try to restore from a restore point, created before Nov 15. Have you tried that?

Luiz Angelo

Posted 2012-11-15T01:24:38.960

Reputation: 1 297

+1 you can definitely cause this problem by deleting C:\Windows\Installer (I know from experience...) – Colin Pickard – 2014-02-25T21:12:49.207

1

Just type "winword /r" in your search box or run, and your problem will be solved immediately. Don't waste time to change IconCache.db because it often doesn't work.

Dean

Posted 2012-11-15T01:24:38.960

Reputation: 11

0

I had a similar problem, but none of the advice on this page worked.

To solve it, I examined some of the other Registry keys installed by Microsoft Office (which installs a large number of keys, unlike normal programs which add only a single key to the Registry). And I built myself a new Registry key as follows:

Windows Registry Editor Version 5.00

; Delete these keys
[-HKEY_CLASSES_ROOT\.doc]
[-HKEY_CLASSES_ROOT\Word.Document.8]
[-HKEY_CLASSES_ROOT\Wordview.Document.8]
[-HKEY_CLASSES_ROOT\Applications\WINWORD.EXE]


; .doc

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.doc]
@="DOC.File" ; Target Class
"Content Type"="application/msword"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.doc\PersistentHandler]
@="{98de59a0-d175-11cd-a7bd-00006b827d94}"


; DOC.File

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\DOC.File]
@="Word Document"
"EditFlags"=hex:00,00,00,00

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\DOC.File\DefaultIcon]
@="C:\\Program Files (x86)\\Microsoft Office\\Office\\WINWORD.EXE,1"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\DOC.File\AppRegistry]
@="\\Software\\Microsoft\\Office\\10.0\\Word"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\DOC.File\HTML Handler]
@=""

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\DOC.File\HTML Handler\Icon]
@=".dochtml"
".htm"=".dochtml"
".html"=".dochtml"
".mht"=".docmhtml"
".mhtml"=".docmhtml"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\DOC.File\shell]
@="open" ; Default action


; Word

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\DOC.File\shell\open]
@="Word"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\DOC.File\shell\open\command]
@="\"C:\\Program Files (x86)\\Microsoft Office\\Office\\WINWORD.EXE\" \"%1\""


; Word Viewer

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\DOC.File\shell\open2]
@="Open as Read-only"
; "Extended"="" ; Show on Right-click context menu only

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\DOC.File\shell\open2\command]
@="\"C:\\PROGRA~2\\MICROS~3\\WORDVI~1\\OFFICE11\\WORDVIEW.EXE\" /n /dde"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\DOC.File\shell\open2\ddeexec]
@="[REM _DDE_Direct][FileOpen(\"%1\")]"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\DOC.File\shell\open2\ddeexec\Application]
@="Wordview"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\DOC.File\shell\open2\ddeexec\Topic]
@="System"

After many years experience, it is my opinion that almost all problems of this type are caused by conflicts in the Windows Registry, between the many different registry keys which Microsoft Office installs. And can only be resolved by deleting the keys created by the installer, and replacing them with a single key, as demonstrated in my above example.

MS-Office contains many very poor design decisions. The open source replacement for it, Open Office, is a much easier program to use, as its design philosophy is quite different.

Ed999

Posted 2012-11-15T01:24:38.960

Reputation: 178

0

Download Nirsoft FileTypesMan, unpack into a folder and launch the exe.
Double-click on the .docx entry and examine the default icon entry.

My own icon entry for Word 2010 Professional Plus contains the following value :
C:\Windows\Installer\{91140000-0011-0000-0000-0000000FF1CE}\wordicon.exe,13

See this article for more info about Office GUIDs:
Description of the numbering scheme for product code GUIDs in Office 2010.

In any case, FileTypesMan finds this value in the registry. For Word 2010 this value is at :
HKEY_CLASSES_ROOT\Word.Document.12\DefaultIcon.
Copy it from someone who has the same version of Office, or let us know your exact version so we can help.

A problem might arrive if you had another version of Office installed before, or two versions side by side, so some confusion has occurred.

I would suggest first, if you have two versions of Office installed, to uninstall the one you don't need.

Second, try to repair your version by going to Control Panel, right-click Microsoft Office, choosing Repair, Repair again, then Continue.

If this doesn't work, I suggest uninstalling Office and reinstalling. Ensure first that you have at hand the Office serial number (if you can't find it, there are programs that can do it for you).

If you don't have the Office installation media, you could try to reinstall/repair it from the MSOCache folder (ensure hidden files/folders are visible). See the article Install Office 2010 from local installation source.

You can also download a copy of the Office installation media from Microsoft Office 2010 Backup (Office serial number required).

harrymc

Posted 2012-11-15T01:24:38.960

Reputation: 306 093

1I cant copy it from someone else, but I have 2010 Professional edition I believe – Oztaco - Reinstate Monica C. – 2012-11-25T06:37:44.473

Which value do you have for default icon? – harrymc – 2012-11-25T08:08:05.537

C:\Windows\Installer{91140000-0011-0000-0000-0000000FF1CE}\wordicon.exe,13... which, I checked and it does not exist – Oztaco - Reinstate Monica C. – 2012-11-26T02:43:14.730

You seem to have had another version of Office installed before, or some other confusion has occurred. See my edit above. – harrymc – 2012-11-26T06:59:26.160

I only have 1 version of office installed. I tried re[airing it, but a window opens, and closes 5 seconds later. I tried downloading the installer online (I have a download link instead of a CD) but it has the same problem. – Oztaco - Reinstate Monica C. – 2012-11-26T22:03:29.450

See additions above. – harrymc – 2012-11-29T12:14:12.070

0

I assume your system might be infected by some Spyware which has changed the registry values. This might have happened during install of any new software or toolbars. System restore is also an open option but then you will also lose some of your data.

In my opinion you can use the free edition of SuperAntiSpyware Utility available here- www.superantispyware.com

This util is clean and is frequently advised by MVPs on microsoft official forums to check for Spywares. All you have to do is to install and run this util and it will prompt you the registry changes(if any) before repairing it automatically for you.

pragmatic

Posted 2012-11-15T01:24:38.960

Reputation: 29

0

I had the same problem, under Windows 7, 32-bit, Office 2010, with missing Excel and Word icons (and I do not recall whether there was anything else missing). I was looking for something to try with the least possible risk. I was wary of using the method involving

DEL IconCache.db /a

(which was generally well received) since I read a couple of posts stating that, in addition to not fixing the problem, it ruined many other icons.

I found a very simple solution as a side effect of other operation. It is possible that this leads to a general solution, although I did not experiment any further after having my problem solved. It is probably worth trying.

I logged off from my user, logged in as admin, and changed the system font size via registry editing to a "non-standard" size (after reading several links). I needed to do it via registry editing instead of doing it from the control panel for specific reasons (irrelevant here). When I logged in again with my user, besides the intended effect, I had recovered my lost icons.

So, I propose trying a change in system font size as a solution. This appears to induce rereading of icons as well, and perhaps refreshing the icon cache as other methods propose. I do not know if the good icons will remain after reverting to the original font size, if that is what you want. One may try doing this from the control panel, to avoid regedit. I guess your mileage may vary.

Good luck.

PS: I am adding two related links here (cannot post more, I have posted others in threads referred to below).

http://answers.microsoft.com/en-us/office/forum/office_2007-word/excel-and-word-icons-dont-display-correctly/fdc46a1a-eb48-4623-8665-73010c539c9e?msgId=a603b89f-d84e-4421-a6aa-2b9743ddbcbe

http://answers.microsoft.com/en-us/windows/forum/windows_7-desktop/office-icons-dissapear-in-windows-7/525e9303-86a9-4206-a375-ad81328f408e

sancho.s Reinstate Monica

Posted 2012-11-15T01:24:38.960

Reputation: 2 404

Please provide a more detailed solution, preferably step-by-step instructions. Links die sometimes. – gronostaj – 2013-08-14T13:49:31.697

0

two suggestions from another site (the first worked for me - I had orange rectangles instead of the big blue W & E) Use Open With & link it to the Microsoft Office Client Virtualization Handler and it worked. Everything is back as it was.

Second idea:

If you're using Starter and can't find winwordc.exe, and also don't have an active link to Word Starter or Excel Starter on the desktop, right-click on the desktop and create new shortcuts with the following paths:

For Word: "C:\Program Files (x86)\Common Files\microsoft shared\Virtualization Handler\CVH.EXE" "Microsoft Word Starter 2010 9014006604090000

For Excel: "C:\Program Files (x86)\Common Files\microsoft shared\Virtualization Handler\CVH.EXE" "Microsoft Excel Starter 2010 9014006604090000"

Then right-click on the file you want to associate, and Open With > Choose Default Program. Select one of those new desktop shortcuts and it should be linked up again.

user254524

Posted 2012-11-15T01:24:38.960

Reputation: 1

0

I had a variation of this problem, where the Word icon in the task bar reverted to the default, but files in Explorer still appeared normally.

In this case, deleting the icon cache or repairing Office did not help. Instead, I unpinned Word, created a new shortcut to C:\Program Files (x86)\Microsoft Office\Office15\WINWORD.EXE (your path may vary) in my start menu, launched that, and pinned that to the task bar. This just took a minute, so feel free to try it before reinstalling Office.

user49214

Posted 2012-11-15T01:24:38.960

Reputation:

0

I had a similar problem. I have Office 2007 and uninstalled 2010 Starter. All the icons got screwed up for Word & Excel (the two programs in Starter edition). I dug in the registry and was able to fix the .doc, .docx, .xls, .xlsx, and I probably could have done with ALL of them, but it would be a painful process. Then I realized, what if I just put back the Icon Cache folder that was there before!?!? Here's what you do... Open RegEdit.exe Browse to: HKEY_CLASSES_ROOT\Excel.Sheet.12\DefaultIcon -OR- HKEY_CLASSES_ROOT\Word.Document.12\DefaultIcon

This will show you where the computer is trying to find the icons. For me, the icons were here:

C:\ProgramData\Microsoft\Application Virtualization Client\SoftGrid\Icon Cache

If you browse to that path, it probably won't work since the folder was deleted when you uninstalled the newest version of Office. Go back as far as you can, which in my case was "C:\ProgramData\Microsoft\Application Virtualization Client".

Right click on the white-space and choose properties. Alternatively, go up one level and right-click on the "Application Virtualization Client" (or whatever it's called in your case) folder. Hopefully shadowcopy/previous versions is turned on. You will see a previous versions tab. Open a previous version of the folder from before everything got screwed up & rebuild the path.

I created a folder called SoftGrid, then copied the Icon Cache folder.

If that doesn't work just change the DefaultIcon path in the registry to whatever you want such as: "C:\Program Files (x86)\Microsoft Office\Office12\WINWORD.EXE,1"

Good Luck

Keith

Posted 2012-11-15T01:24:38.960

Reputation: 1

0

Go to Add or [Remove Programs] or other name under different version of Windows in your control panel, right click microsoft office icon, select change, in the dialogue box provided select repair, sit back and wait. Your lovely icons will be back. Hope you have been helped.

OLE KITIVI

Posted 2012-11-15T01:24:38.960

Reputation: 1

-1

Go to Add or [Remove Programs] or other name under different version of Windows, in stead of click Uninstall, click [Change], then repair the installation.

Guest

Posted 2012-11-15T01:24:38.960

Reputation: 1

3could you elaborate your answer what need to be repaired,the user can see lot of programs there – BlueBerry - Vignesh4303 – 2013-08-28T04:38:27.993