TheSwamp

Code Red => .NET => Topic started by: MarioR on February 24, 2015, 11:35:42 AM

Title: is possible to disable the "plugin is loaded" message for *.bundle plugins?
Post by: MarioR on February 24, 2015, 11:35:42 AM
Hello,

is possible to disable the "plugin is loaded" message for *.bundle plugins?

regards Mario
Title: Re: is possible to disable the "plugin is loaded" message for *.bundle plugins?
Post by: BlackBox on February 24, 2015, 12:33:14 PM
This isn't anything awesome, but I thought it would help others, so I posted it here:



Quote from: AutoCAD Services and Support

How to disable the Communication Center in Autocad?

Issue
You are working in a secure location and you do not want the system to connect to the internet. You would like to disable the Communication Center.

Solution
You will need to open Regedit and search for InfoCenterOn.  You will need to change the value from 1 to 0.

Windows 7

(http://images.autodesk.com/adsk/images/win7_info_thumb.jpg)

linky (http://usa.autodesk.com/adsk/servlet/ps/dl/item?siteID=123112&id=14863102&linkID=9240657)



Code - Auto/Visual Lisp: [Select]
  1.  
  2. (defun c:InfoCenterOff ()
  3.   (princ "\rINFOCENTER: ")
  4.   (princ
  5.       (strcat
  6.         "HKEY_CURRENT_USER\\"
  7.         (if vlax-user-product-key                                       ; If 2013
  8.           (vlax-user-product-key)                                       ; Use 2013 function
  9.           (vlax-product-key)                                            ; Use legacy function
  10.         )
  11.         "\\InfoCenter"
  12.       )
  13.       "InfoCenterOn"
  14.       0
  15.     )
  16.   )
  17.   (princ)
  18. )
  19.  

... More on vlax-User-Product-Key (http://hyperpics.blogs.com/beyond_the_ui/2012/07/autolisp-api-changes-for-autocad-2013.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+BeyondTheUi+%28HyperPics%3A+Beyond+the+UI%29).

** Edit - You may want to close and open a new session for the GUI components to actually be removed. If that can be done within the active session (without closing, reopening), I am unsure how to accomplish this via LISP.