Disable InfoCenter in AutoCAD 2010

In case you missed it, Tony Tanzillo has posted instructions for disabling the InfoCenter in AutoCAD 2010. AutoCAD 2010 starts faster when the InfoCenter is disabled.

To make it easy, I’ve created an AutoLISP file that defines commands named DisableInfoCenter and EnableInfoCenter:
DisableInfoCenter.LSP

Alternatively, you can just paste the following lisp at the AutoCAD command line to disable it and be done with it. Note that you need to restart AutoCAD for the change to take effect.

(vl-load-com)
(vl-registry-write (strcat "HKEY_CURRENT_USER\\" (vlax-product-key) "\\InfoCenter") "InfoCenterOn" 0)

Related posts:

  1. AutoCAD 2008 Slow Startup Fix
  2. Automatic LISP Loading
  3. What’s New in the AutoCAD 2010 EULA
  4. AECOPEN Utility
  5. ObjectARX 2010: Dealing With Missing Exports

3 Comments

  1. Anonymous says:

    wow..it worked!..thanks dude :)

  2. Anonymous says:

    Hi Owen. Do you have anything that turns off the infocenter in AutoCad 2009?
    Thanks,
    Scott

Leave a Reply