Hello Everyone!
I am setting up some standards within our company and I was able to auto add some variables that get saved to the registry by using the following lisp below. This sets up our Pen Table locations and Template Locations. What I am having a problem with is the Design Standards file. I found the "LatestCriteriaFileName" heading in my registry and the mapping was to the location it should be, however this is not working as the previous ones. I have it set as below, however it was in a different location within the registry.
Is there any way at all to accomplish this?
(defun c:setenvvariables ()
(setvar "cmdecho" 0)
(setenv "PrinterStyleSheetDir" "W:\\Drafting\\Support\\PEN TABLES")
(setenv "QnewTemplate" "W:\\Drafting\\Support\\templates\\auto cad\\AT Template.dwt")
(setenv "TemplatePath" "W:\\Drafting\\Support\\Templates\\Auto Cad")
(setenv "LatestCriteriaFileName" "W:\\Drafting\\Support\\AT Standards\\AT Design Standards.xml")
(setenv "ShowTabs" "1")
(setvar "cmdecho" 1)
Thanks in Advance!