Jump to content

How to disable InfoCenter


rkmcswain

Recommended Posts

just to make things extra easy, here it is in vlisp:

 

(vl-registry-write

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

Link to comment
Share on other sites

Not to appear to be a moron, but where do you go to disable this function. I went to the info center, but didn't seem to find what I needed. Please try not to laugh at my ignorance!:P

Link to comment
Share on other sites

Not to appear to be a moron' date=' but where do you go to disable this function. I went to the info center, but didn't seem to find what I needed. Please try not to laugh at my ignorance!:P[/quote']

if you'll just paste the code i posted above in the commandline, it will turn it off for you. :)

Link to comment
Share on other sites

I finally had a chance to try pasting in the code, but it came up with an error message. All I did was copy & paste into the commandline. What am I doing wrong?

Link to comment
Share on other sites

I finally had a chance to try pasting in the code' date=' but it came up with an error message. All I did was copy & paste into the commandline. What am I doing wrong?[/quote']

probably missing a paren on paste. draw attachment into autocad and it will run.

hope this helps.

no comm center.lsp

Link to comment
Share on other sites

  • 9 months later...
just to make things extra easy, here it is in vlisp:

 

(vl-registry-write

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

 

Nice Alan :thumbsup:

Link to comment
Share on other sites

  • 4 months later...

I was looking for a way to stop the second command line from always popping up and by adding this little code it stopped...

 

 

Thanks all...

 

:)

 

 

 

BTW: I googled to find this answer and found this thread. I love google...

Link to comment
Share on other sites

  • 6 months later...

For some reason this does not work on my machine. I tried that code in hopes that i can get some other code to work. I am actually trying to change a setting for the Cad manager Channel

(vl-registry-write
 (strcat "HKEY_LOCAL_MACHINE\\"
  (vlax-product-key)
  "\\CadManagerControl\\Infocenter")
 "EnableCadMgrChannel"
 1)

I was about give up after reading in the help file that its not possible. In the help file it states "Note: You cannot use vl-registry-write for HKEY_USERS or KEY_LOCAL_MACHINE."

I am running Win7 64bit, could this be an issue?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...