Jump to content

AutoCAD menu utilities loaded.; error: Automation Error. File system error


3dwannab

Recommended Posts

I have a bunch of lisp in a folder on a network with an edited acaddoc.lsp in the>

 

Support file search path

Trusted Location in the files ACADs option.

 

I've recently upgraded to 2015 and it intermittently says:

AutoCAD menu utilities loaded.; error: Automation Error. File system error

 

This message only appears on some drawings. Other drawings the list of scripts in the acaddoc.lsp loads up no problem.

 

Anybody else experiencing this?

 

EDIT: Same setup was working in 2013

Edited by 3dwannab
Link to comment
Share on other sites

  • 4 weeks later...

It ended up that it was a script that loaded up at the start which caused the problem. Once the script was found and fixed it, I never had this problem again.

Link to comment
Share on other sites

A good idea is to post the fix details for any one else I know I have to keep adding version numbers to some of my code

 

(setq vrsn (vlax-product-key))
((vl-string-search "R17.2" vrsn) (setq appstr "6.0")) ;09
((vl-string-search "R18.0" vrsn) (setq appstr "7.0")) ;10
((vl-string-search "R18.1" vrsn) (setq appstr "8.0")) ;11
((vl-string-search "R18.2" vrsn) (setq appstr "9.0")) ;12 ?
((vl-string-search "R19.0" vrsn) (setq appstr "10.0")) ;13 
; 14 ???
; 15 ???

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...