Tuesday, December 23, 2008

Disable the AutoCAD InfoCenter

You might want to disable AutoCAD’s InfoCenter with its Help and documentation Search, Communication Center, Autodesk Channels, Balloon Notifications, RSS Feeds and Favorites. One reason is that it can speed up the AutoCAD startup or you just want to hide it. Otherwise it can be quite useful to have there. Here is the solution.

Before

and after

One way is using the CAD Manager Control Utility to control it to some extent or you can use Regedit.exe (or VBScript or a BAT or CMD file) and disable it completely. Just set the LoadCtrls key to 0 in the registry at:
HKEY_LOCAL_MACHINE\SOFTWARE\Autodesk\AutoCAD\R17.2\ACAD-7001:409\Applications\InfoCenterAcConn

(default value for LoadCtrls is 4c as Hexadecimal or 76 as Decimal value in case you want to enable it again)

R17.2\ACAD-7001:409 is for AutoCAD 2009 English version and needs to be changed depending on what AutoCAD product you use. It works with AutoCAD LT as well but then the registry location will start with: HKEY_LOCAL_MACHINE\SOFTWARE\Autodesk\AutoCAD LT.
For more about the productID and locateID.

Using Visual LISP here is how:

(vl-registry-write (strcat "HKEY_LOCAL_MACHINE\\" (vlax-product-key) "\\Applications\\InfoCenterAcConn" ) "LOADCTRLS" 0)

AutoCAD needs to be restarted to see the effect.

3 comments:

  1. Another great piece of helpful information. Thank you.

    I was checking the values of the other loadctls in the same tree. All of them are not "4c".

    Just wondering if you know what the other load values of "c" "d" etc. mean.

    Thanks

    ReplyDelete
  2. LOADCTRLS is a DWORD (numeric) value describing the reasons for loading the application
    1 - load on proxy detection
    2 - load on AutoCAD startup
    4 - load on command invocation
    8 - on load request

    These can then be combined so "c" (12) is the sum of 8+4 for example.

    ReplyDelete

Some of the latest blog posts

Subscribe to RSS headline updates from:
Powered by FeedBurner

Contact Us | About JTB World | Subscribe to this blog
JTB World's website | Website General Terms of Use | Privacy Policy
^ Top of page

© 2004- JTB World. All rights reserved.