The MMC 3.0 might not be the fastest console in the world so here are a few little tricks that might speed up the performance.

  1. Open Internet Explorer, select Internet Options and the Advanced tab.
  2. Remove the check mark from Check for publisher’s certificate revocation.

    image 

The revocation check only takes place a startup (when the DLL’s are loaded) so it wont effect the performance once the console i loaded.

Another trick that might boost the performance when working with snap-ins in the MMC is to use the mmcperf.exe command found in .\Windows\System32\

  1. Open a command prompt
  2. Navigate to Windows\System32
  3. Type mmcperf.exe – you will notice that the mmc dll files are now being "GAC’d" which they for some unknown reason aren’t by default.

    image

  4. Open a MMC and add a few snap-ins. You should be able to spot the difference in performance right away.

This has all ready been done for Vista and above OS. But there might still be a Windows XP or Windows 2003 out there 🙂

The last trick is NGEN’ing the ConfigMgr assemblies

  1. Open a command prompt
  2. type for %f in ("C:\Program Files\Microsoft Configuration Manager Console\AdminUI\bin\*.dll ") do ngen.exe install "%f "

This trick was picked up by reading a thread about this post. Thanks to Michael Niehaus. For more information about ngen.exe check http://msdn.microsoft.com/en-us/library/6t9t5wcf(VS.71).aspx 

If you have other tricks to boost the performance let me know – we are all in this together.