This tip is simple yet helpful in displaying more of a file name that might be obscured by the upper right “Info Center.”
All that you have to do is simply collapse the arrow next to the search field that says “type a keyword or phrase”
Note that both AutoCAD and Revit are shown. This search area (Info Center) is similar in most Autodesk products
Personally, I prefer to use this:
http://otb.manusoft.com/2013/04/turning-off-infocenter-in-autocad-2014.htm?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+obox+%28Outside+The+Box%29
Thanks for sharing Owen’s freebie link. This is a common setting that CAD Manager & CAD Admins turn off so that users don’t sign in and upload their companies files to their 360 account.
Here are a couple of other ways to go about this. All that is involved is changing a registry setting as shown here:
http://knowledge.autodesk.com/support/autocad/troubleshooting/caas/sfdcarticles/sfdcarticles/How-to-disable-the-Communication-Center-in-Autocad-s.html
Or maybe a little lisp routine to do it as well
;; Disable InfoCenter in 2015
(vl-registry-write
(strcat "HKEY_CURRENT_USER\\" (vlax-user-product-key) "\\InfoCenter")
"InfoCenterOn"
0
)