Skip to content
 

Disable InfoCenter in AutoCAD 2010

[Update: See Disable AutoCAD InfoCenter]

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 2012 InfoCenter
  2. Disable AutoCAD InfoCenter
  3. AutoCAD 2008 Slow Startup Fix
  4. ManuSoft Software Updated for AutoCAD 2009
  5. ObjectARX 2010: Dealing With Missing Exports

9 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

  3. Michael Puckett says:

    Thanks Owen. I penned a quick toggle for my own convenience, here for others if they want (apologies if formatting/indenting goes for sh!t):

    (defun c:InfoCenter ( / path reg-key val-name val-data )
    ;; with thanks to Tony Tanzillo and Owen Wengerd
    (vl-load-com)
    (vl-registry-write
    (setq reg-key (strcat “HKEY_CURRENT_USER\\” (vlax-product-key) “\\InfoCenter”))
    (setq val-name “InfoCenterOn”)
    (setq val-data (if (zerop (vl-registry-read reg-key val-name)) 1 0))
    )
    (princ (strcat “InfoCenter turned ” (if (zerop val-data) “off.” “on.”)))
    (princ)
    )

    Cheers, Michael.

  4. andy says:

    hi

    have just tried this in civils 3d 2010 and the pesky bar is still there. have also tried regedit and changed the value to 0 and its still there ! help !!!!

Leave a Reply