Author Topic: is possible to disable the "plugin is loaded" message for *.bundle plugins?  (Read 2308 times)

0 Members and 1 Guest are viewing this topic.

MarioR

  • Newt
  • Posts: 64
Hello,

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

regards Mario

BlackBox

  • King Gator
  • Posts: 3770
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



linky



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.

** 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.
"How we think determines what we do, and what we do determines what we get."