[Search tip detail and code files using keywords, tip number, author name, etc ]
 
Autodesk Network License Error at Startup
Tip# 4442 By Andrea Andreetti On 30-Mar-2015
0
Rated By 0 users
Categories : Misc. User Tools
Software type : AutoCAD 2015
Rename File To : No Files to download.
This tip offers a solution for license error 0.0.0, which indicates a valid license could not be obtained by the network license manager.

When you start AutoCAD (or a related Autodesk program), you receive a license error 0.0.0 that indicates a valid license could not be obtained by the network license manager. The issue may be caused by a corrupt file called CascadeInfo.cas.

If the CascadeInfo.cas file is corrupt due to a power failure or any reason, cascading functionality will not be available. This issue only applies to network licensed products and does not affect stand-alone licensed products. You must delete this file before starting AutoCAD.

To prevent this problem from happening again, add the following code to the acaddoc.lsp file.

(vl-load-com)
(if (setq cascadeinfo (findfile (strcat (getenv "ALLUSERSPROFILE") "Application DataAutodeskAdlmCascadeInfo.cas")))
  (vl-file-delete cascadeinfo)
)

 

Notes from Cadalyst tip review R.K. McSwain: This is a solution to a fairly obscure issue, but if it happens to you, you'll be glad you ran across this tip. The issue is further explained in the following Autodesk knowledge base documents. Note that this issue affects products other than AutoCAD, such as Revit or Inventor.

 

Average Rating:
0


User comments