Author Topic: DESKTOPANALYTICS  (Read 1672 times)

0 Members and 1 Guest are viewing this topic.

mailmaverick

  • Bull Frog
  • Posts: 493
DESKTOPANALYTICS
« on: March 17, 2020, 02:56:10 AM »
Autodesk is unreasonably collecting data of user files by internet through their DESKTOPANALYTICS program.
To all people, kindly disable it by typing DESKTOPANALYTICS and unchecking the option in the new window.

Also, is there a way to stop DESKTOPANALYTICS through LISP ?

tombu

  • Bull Frog
  • Posts: 289
  • ByLayer=>Not0
Re: DESKTOPANALYTICS
« Reply #1 on: March 17, 2020, 07:35:37 AM »
I was under the impression they were only collecting information on issues like crashes and other problems with their software so they could fix them. What data are they collecting we should be concerned with?
Tom Beauford P.S.M.
Leon County FL Public Works - Windows 7 64 bit AutoCAD Civil 3D

MP

  • Seagull
  • Posts: 17750
  • Have thousands of dwgs to process? Contact me.
Re: DESKTOPANALYTICS
« Reply #2 on: March 17, 2020, 08:52:29 AM »
Reg key:

HKEY_CURRENT_USER\Software\Autodesk\MC3

    ADAOptIn

        0 = Opt out
        1 = Opt in


Easy enough to flip via lisp, if no one posts code I will later.

PS: You likely have to restart AutoCAD for it to "take".
Engineering Technologist • CAD Automation Practitioner
Automation ▸ Design ▸ Drafting ▸ Document Control ▸ Client
cadanalyst@gmail.comhttp://cadanalyst.slack.comhttp://linkedin.com/in/cadanalyst

mailmaverick

  • Bull Frog
  • Posts: 493
Re: DESKTOPANALYTICS
« Reply #3 on: April 02, 2020, 09:09:16 AM »
Dear MP,
Please post LISP code to do the required changes in registry.
Thanks.

tombu

  • Bull Frog
  • Posts: 289
  • ByLayer=>Not0
Re: DESKTOPANALYTICS
« Reply #4 on: April 02, 2020, 10:29:54 AM »
To toggle it off/on:
Code: [Select]
(defun c:ADAOptIn (/ key)
  (setq key "HKEY_CURRENT_USER\\Software\\Autodesk\\MC3")
  (if(=(vl-registry-read key "ADAOptIn")"0")
    (vl-registry-write key "ADAOptIn" "1")
    (vl-registry-write key "ADAOptIn" "0")
  )
)
Enter ADAOptIn
Tom Beauford P.S.M.
Leon County FL Public Works - Windows 7 64 bit AutoCAD Civil 3D

T.Willey

  • Needs a day job
  • Posts: 5251
Re: DESKTOPANALYTICS
« Reply #5 on: April 02, 2020, 10:36:20 AM »
tombu, maybe return the value set so the user knows which option they have set.
Tim

I don't want to ' end-up ', I want to ' become '. - Me

Please think about donating if this post helped you.