6

I have Windows 7 Ultimate OS.

I'm opening mmc.exe as administrator and trying add Certificates or any other snap-in, then while loading that snap-in MMC breaks and displays following message and after that it closes automatically once I click on close button on that message. What could be the problem?

I did following to fix the problem but couldn't succeed any of these:

  1. I tried to repair the OS
  2. I repaired files using this method
  3. Even repaired the installation using this link

Edit:

I've even tried to rename or delete the MMC.exe file and couldn't succeed because it says I need authorization from TrustedInstaller to do those operations. In order to avoid this I've even followed instructions in this article but still it doesn't allow me to delete and now it says you need to have authorization from the user who is owner of the file, but interesting thing is that owner is logged in user only but still it asks for authorization from same user.

Update: @oldskool: Here is the debug process output: Sorry its a long output text.

'C:\Windows\winsxs\x86_microsoft.vc80.mfc_1fc8b3b9a1e18e3b_8.0.50727.4053_none_cbf21254470d8752\mfc80u.dll',

Cannot find or open the PDB file 'mmc.exe': Loaded 'C:\Windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.4927_none_d08a205e442db5b5\msvcp80.dll', Cannot find or open the PDB file 'mmc.exe': Loaded 'C:\Windows\winsxs\x86_microsoft.vc80.atl_1fc8b3b9a1e18e3b_8.0.50727.4053_none_d1c738ec43578ea1\ATL80.dll', Cannot find or open the PDB file 'mmc.exe': Loaded 'C:\Windows\winsxs\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.7600.16661_none_ebfb56996c72aefc\comctl32.dll', Cannot find or open the PDB file 'mmc.exe': Loaded 'C:\Windows\winsxs\x86_microsoft.vc80.mfcloc_1fc8b3b9a1e18e3b_8.0.50727.4053_none_03ca5532205cb096\mfc80ENU.dll', Binary was not built with debug information. 'mmc.exe': Loaded 'C:\Program Files\Microsoft SQL Server\100\Tools\Binn\Resources\1033\SqlManager.rll', Binary was not built with debug information. 'mmc.exe': Loaded 'C:\Windows\System32\msxml6.dll', Cannot find or open the PDB file 'mmc.exe': Loaded 'C:\Program Files\Microsoft SQL Server\90\Tools\Binn\SqlManager.dll', Cannot find or open the PDB file 'mmc.exe': Loaded 'C:\Windows\System32\wbem\wbemcntl.dll', Cannot find or open the PDB file The thread 'Win32 Thread' (0xf74) has exited with code 0 (0x0). Unhandled exception at 0x774d35e3 in mmc.exe: 0xC0000374: A heap has been corrupted.

enter image description here

6
  • can you Post a Screenshot what the output of the Debug Process is?
    – patricks
    Commented Mar 14, 2011 at 13:58
  • @oldskool: I've added the debug output, I'm not sure whether you are looking for the same, please let me know. Commented Mar 15, 2011 at 5:23
  • thanks for the output. Sadly no information about the crash i can see there. did you tried sfc /verifyonly to see if there are any corrupt files?
    – patricks
    Commented Mar 15, 2011 at 8:37
  • @JayaprakashReddy: You might erase the entire debug output except the "Unhandled exception" part at the end, which is the reason why I counseled reinstalling .Net 4 as a possible fix for the heap corruption.
    – harrymc
    Commented Mar 15, 2011 at 10:04
  • It looks like it’s probably a WinSxS problem. Open C:\Windows\Logs\CBS and delete or rename CBS.log, then run sfc /scannow again. Pay close attention to what it says when it finishes. Does it say that it found and fixed the problems or does it say that there were problems that it could not fix? Look at CBS.log now to see the results of the scan without previous clutter. Open it in a text-editor (you can copy it to avoid permission issues), then search for the term error.
    – Synetech
    Commented Mar 15, 2011 at 19:38

1 Answer 1

6
+50

Questions first :

  • Can you find anything special in the Event Log?
  • Is computer Management working?
  • Is it possible that some software installation has added a defective MMC add-on ?

A couple of ideas for this really weird problem:

  1. If you have a system restore point dating from before the problem occurred, you might restore back to it.
  2. Install or reinstall the latest Microsoft .Net Framework 4.

EDIT

A method for fixing the problem was suggested in mmc crash when adding snap in :

On the assumption that the part of your registry that deals with MMC snap-ins is corrupted, this method copies that registry part from a working computer (should have a similar setup to the problematic computer).

  1. The registry key where the MMC snap-ins are situated is :
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MMC\SnapIns
  2. In the working computer, use regedit to export SnapIns with all its sub-keys as a .reg file. (If you don't have access to a working computer, create a virtual machine.)
  3. In the problematic computer, use regedit to backup SnapIns, then delete it
  4. Import the exported .reg file to your problematic computer's registry (double-click on it is usually enough, otherwise use File / Import in regedit).

I would also suggest as a precaution to create a system restore point before trying this method.

11
  • 4
    I experienced the exact same problem as OP (but Windows 10), and did the following: 1) Exported the SnapIns keys from a working computer. 2) Exported the SnapIns from the broken computer. 3) Used a diff tool on them to see what's different. 4) Removed extra keys from the broken computer, testing MMC each time until I found the key that was causing trouble. In my case, it was {f66ae3a2-97c7-4e45-9c70-4ecea8b3bfa0}, an old version of SQL Server Configuration Manager. I skipped 5) Add back the keys whose removal did not solve the problem. Commented Feb 18, 2016 at 21:49
  • 2
    I also got the MMC Has Stopped Working popup when adding the Certificates snap-in. Chris' fix worked - simply delete the registry key [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MMC\SnapIns\{f66ae3a2-97c7-4e45-9c70-4ecea8b3bfa0}]
    – GarDavis
    Commented Feb 28, 2016 at 19:17
  • 2
    @Chris I want to send you a beer. I've wasted my entire day tracking this down.
    – JJS
    Commented Apr 18, 2016 at 19:19
  • 1
    This worked for me too! In my case the offending key was {91C407BA-9314-4050-BE48-1287439D6963}, also related to SQL Server, although I never had 2015 installed. Commented May 12, 2016 at 21:09
  • 1
    Worked for me too! There's a forum post that calls out Sql Server as the problem. For me I removed {91C407BA-9314-4050-BE48-1287439D6963} and {d52e5f54-75d9-4a93-91b7-2215ea5cbed2} and then it worked.
    – Carl Walsh
    Commented Aug 26, 2016 at 22:57

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .