Author Topic: Losing support file search paths.  (Read 1481 times)

0 Members and 1 Guest are viewing this topic.

Bryco

  • Water Moccasin
  • Posts: 1883
Losing support file search paths.
« on: March 24, 2006, 12:07:21 PM »
Acad 2006. I have support file search paths mapped to a shared drive for for fonts and hatchs. After a power cut they get lost and only the c drive ones survive.
1) Does this happen to anyone else
2) How do I fix it.

Cheers Bryce

nivuahc

  • Guest
Re: Losing support file search paths.
« Reply #1 on: March 24, 2006, 12:18:17 PM »
How do you have the paths spelled out?

Like this:
Code: [Select]
N:\Shared\Folder
or like this:
Code: [Select]
\\shared_computer_name\folder\

Are they mapped drives on your machine or are you just pointing directly to the folders themselves?

If they are mapped as drives on your machine, how are you mapping them?

MP

  • Seagull
  • Posts: 17750
  • Have thousands of dwgs to process? Contact me.
Re: Losing support file search paths.
« Reply #2 on: March 24, 2006, 02:46:50 PM »
Perhaps AutoCAD <periodically/on network events> validates system paths and removes ones it considers invalid, so if a network drive fails AutoCAD goes, meh, this drive is kaput, *yank*.
Engineering Technologist • CAD Automation Practitioner
Automation ▸ Design ▸ Drafting ▸ Document Control ▸ Client
cadanalyst@gmail.comhttp://cadanalyst.slack.comhttp://linkedin.com/in/cadanalyst

Bryco

  • Water Moccasin
  • Posts: 1883
Re: Losing support file search paths.
« Reply #3 on: March 24, 2006, 05:15:19 PM »
Thanks for the replies. I've been too busy to check until now.
J:\AutoCAD Support\Fonts   Full paths created w/ browse.

I don't remember this happening w/ 2000 so I think this is a 2006 think.
(we skipped the years in between)

MP I guess as your post hints at, I should programmatically add the paths. I have no problem w/ the support paths but the stinking cui punk stuff is something that I haven't looked at yet, is that difficult?

MP

  • Seagull
  • Posts: 17750
  • Have thousands of dwgs to process? Contact me.
Re: Losing support file search paths.
« Reply #4 on: March 25, 2006, 08:56:56 AM »
I thinki CUI is P'Tui. I don't mess with it (other guys at our offices look after that stuff so I can't really comment).

As for setting your support path perhaps this little ditty will help.

Code: [Select]
(defun SetSupportPath ( path )
    (vla-put-SupportPath
        (vla-get-Files
            (vla-get-Preferences
                (vlax-get-acad-object)
            )
        )
        path
    )
)

Use carefully.

:)
Engineering Technologist • CAD Automation Practitioner
Automation ▸ Design ▸ Drafting ▸ Document Control ▸ Client
cadanalyst@gmail.comhttp://cadanalyst.slack.comhttp://linkedin.com/in/cadanalyst