How do you remove online features from AutoCAD 2018 installs?
How do you remove online features from AutoCAD 2018 installs such as A360 the Autodesk App Store?
Even when unchecking all of the a360 options when going through the Admin Install wizard, AutoCAD still allows you to 'login' and gives an icon for the App Store.
In the past, for other versions, I've edited the INI file of the admin install to remove A360, but it doesn't seem to be there or working for 2018.
Any help is appreciated.
Thanks
0 Comments
[ + ] Show comments
Answers (1)
Please log in to answer
Posted by:
jmaeding
5 years ago
I know this is a year later than the OP, but may be useful for others searching in the future.
In our acad startup lisp file "acaddoc.lsp", we disable the info center with this line:
(vl-registry-write (strcat "HKEY_CURRENT_USER\\" (vlax-product-key) "\\InfoCenter") "InfoCenterOn" 0)
So that is editing the registry to do that.
You can do that with KACE, after the install, though you must write that code of course.