Visual LISP, AutoLISP and General Customization
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Does anyone have a list of the "system environment variables"

15 REPLIES 15
Reply
Message 1 of 16
Anonymous
579 Views, 15 Replies

Does anyone have a list of the "system environment variables"

Im trying to access the files tab under options and was wondering if anyone had a list of the "System Enviroment variables"? Thanks for any help? Mark
15 REPLIES 15
Message 2 of 16
Anonymous
in reply to: Anonymous

HELP, COMMAND REFERENCE, SYSTEM VARIABLES at the bottom? "Mark Douglas" wrote in message news:40364f1b$1_1@newsprd01... > Im trying to access the files tab under options and was wondering if anyone > had a list of the "System Enviroment variables"? > > Thanks for any help? > > Mark > >
Message 3 of 16
Anonymous
in reply to: Anonymous

I am looking for the "System ENVIRONMENT Variables" These use the (getenv "ACAD") for search paths and options like that? Mark "Warren Trost" wrote in message news:40364f86_2@newsprd01... > HELP, COMMAND REFERENCE, SYSTEM VARIABLES at the bottom? > > > "Mark Douglas" wrote in message > news:40364f1b$1_1@newsprd01... > > Im trying to access the files tab under options and was wondering if > anyone > > had a list of the "System Enviroment variables"? > > > > Thanks for any help? > > > > Mark > > > > > >
Message 4 of 16
Anonymous
in reply to: Anonymous

System environment variables are specific to each machine and the software installed on each machine. My system has 30+. Most systems have probably less than a dozen. There is no definitive list as you can add any variable you want. There are a few standards that windows uses, like PATH and TEMP, but they dont necessarily have to be there. You can look on your system to see what you have set. In Windows 2000 they are in Control Panel->System->Advanced->Environment Variables.
Message 5 of 16
Anonymous
in reply to: Anonymous

That makes sense....I thought you could run this through AutoLisp to specify custom properties.. Mark "Randy Sanders" wrote in message news:40365bad_3@newsprd01... > System environment variables are specific to each machine and the software > installed on each machine. My system has 30+. Most systems have probably > less than a dozen. There is no definitive list as you can add any variable > you want. There are a few standards that windows uses, like PATH and TEMP, > but they dont necessarily have to be there. You can look on your system to > see what you have set. In Windows 2000 they are in Control > Panel->System->Advanced->Environment Variables. > >
Message 6 of 16
Anonymous
in reply to: Anonymous

Here is a list that I swiped from some code that John Uhden posted here once upon a time. (Thanks John!) "PlotSpoolerNode" "PlotSpoolerDirectory" "AutoSaveFile" "TempDirectory" "DefaultPlotToFile" "ModeBits" "AlarmOnError" "ActiveAssistance" "PROXYWEBSEARCHNUMBER" "Use TODAY as Startup dialog" "ShowFullPathInTitle" "LayoutRegenControl" "SnapType" "ShowHyperlinkCursor" "ShowHyperlinkToolTip" "ShowPaperSize" "ObjectARXSupportPath" "ObjectDBXSupportPath" "ExplorerInsertUnits" "LineWeightDisplayScale" "MRUFilesToList" "HideWarningDialogs" "DatabaseTablesOpenMode" "SQLIndexInDwg" "InsertUnitsDefTarget" "InsertUnitsDefSource" "Measureinit" "AssignInsertUnits" "LoadPaletteBySession" "ShowOleScaleDialog" "ImageHighlight" "AutoSnapPolarAddAng" "LogFilePath" "SaveFilePath" "OffsetCurveGapType" "UcsIconNonActiveColor" "UcsIconActiveColor" "UcsIconLineWidth" "UcsIconCone" "UcsIconSize" "UcsIcon3d" "UCSAxisAng" "UCSView" "UCSOrtho" "XFadeCtl" "DisableTrueColor" "Trimmode" "CheckDrawingSignature" "PrinterDescDir" "PrinterStyleSheetDir" "PrinterConfigDir" "ShowPrintBorder" "ShowPaperMargins" "ShowPaperBackground" "CreateViewports" "ShowPlotSetup" "ShowRuler" "ShowTabs" "DefaultFormatForSave" "LineWeightUnits" "WHIPTHREAD" "WhipThreadEnable" "WhipArcEnable" "DefaultLayerZeroPlotStyle" "DefaultPlotStyle" "HatchAlertDisabled" "DatabaseWorkSpacePath" "TemplatePath" "MaxArray" "EdgeMode" "MaxHatch" "HatchType" "PlineType" "AVEMAP" "ImportPathInfo" "CursorSize" "ShowProxyGraphics" "ShowProxyDialog" "ARXDemandLoad" "TextWindow.FontPitchAndFamily" "TextWindow.FontItalic" "TextWindow.FontWeight" "TextWindow.FontHeight" "TextWindow.FontFace" "CmdLine.FontPitchAndFamily" "CmdLine.FontItalic" "CmdLine.FontWeight" "CmdLine.FontHeight" "CmdLine.FontFace" "FontPitchAndFamily" "FontItalic" "FontWeight" "FontHeight" "FontFace" "MonoVectors" "Plot preview background" "Autotracking vector" "LayoutXhairPickboxEtc" "XhairPickboxEtc" "TextWindow.BackColor" "TextWindow.ForeColor" "CmdLine.BackColor" "CmdLine.ForeColor" "Layout background" "Background" "MaxDwg" "CustomColors" "CmdHistLines" "CmdVisLines" "MaxApp" "ToolTips" "Scrollbars" "UseMenuHeader" "AcadClassic" "SDIMode" "NoStartUpDialog" "DemandLoadingModeler" "ScreenMenu" "DigitizerArbitration" "BmpOutCompression" "LogFileOpen" "ACADLOGFILE" "LOGFILE" "UserName" "ACADALTMENU" "ACADLspAsDoc" "AutoSnapTrackPath" "AutoSnapPolarDistance" "AutoSnapPolarAng" "AutoSnapPolarMode" "AutoSnapShowAperture" "AutoSnapSize" "AutoSnapColor" "OleHide" "XrefLoadPath" "Trim&ExtendProjectMode" "MaxOctTreeNodesToAllocate" "PostscriptQuality" "PickFirst" "PickDrag" "PickBox" "PickAuto" "PickAdd" "GripSize" "GripHot" "GripColor" "GripBlock" "Grips" "EntityExtentVariant" "AuditControlFlags" "MenuOptionFlags" "XrefControlFlags" "DisableGraphicsTextArea" "SDF_AttributeExtractTemplateFile" "ObjectSnapCursorSize" "StatusLine&CoordinateDisplay" "RasterPreview" "PlotRotationMode" "QAFlags" "CommandDialogs" "FileDialog" "RtDisplay" "ZoomFactor" "UseContextMenus" "ContextMenus" "MiddleButtonPan" "OsnapCoord" "XrefLazyLoadMode" "TextFill" "MTextEditor" "CustomDictionary" "MainDictionary" "PSOUT_PrologFileName" "AutomaticSaveMinutes" "DisableScreenMenuArea" "MaxSortEntries" "FontMappingFile" "EmergencyFont" "NetLocation" "IsaveBackupDwg" "IsavePercent" "MenuFile" -- -Jason Member of the Autodesk Discussion Forum Moderator Program "Mark Douglas" wrote in message news:40364f1b$1_1@newsprd01... > Im trying to access the files tab under options and was wondering if anyone > had a list of the "System Enviroment variables"?
Message 7 of 16
Anonymous
in reply to: Anonymous

What, specifically, are you wanting to access? Jeff "Mark Douglas" wrote in message news:40365f90$1_1@newsprd01... > That makes sense....I thought you could run this through AutoLisp to specify > custom properties.. > > Mark > > "Randy Sanders" wrote in message > news:40365bad_3@newsprd01... > > System environment variables are specific to each machine and the software > > installed on each machine. My system has 30+. Most systems have probably > > less than a dozen. There is no definitive list as you can add any variable > > you want. There are a few standards that windows uses, like PATH and TEMP, > > but they dont necessarily have to be there. You can look on your system to > > see what you have set. In Windows 2000 they are in Control > > Panel->System->Advanced->Environment Variables. > > > > > >
Message 8 of 16
Anonymous
in reply to: Anonymous

Yes......This is what im looking for!!!!! Thank you very much!!!! Mark "Jason Piercey" wrote in message news:403660fb_3@newsprd01... > Here is a list that I swiped from some code that > John Uhden posted here once upon a time. > (Thanks John!) > > "PlotSpoolerNode" > "PlotSpoolerDirectory" > "AutoSaveFile" > "TempDirectory" > "DefaultPlotToFile" > "ModeBits" > "AlarmOnError" > "ActiveAssistance" > "PROXYWEBSEARCHNUMBER" > "Use TODAY as Startup dialog" > "ShowFullPathInTitle" > "LayoutRegenControl" > "SnapType" > "ShowHyperlinkCursor" > "ShowHyperlinkToolTip" > "ShowPaperSize" > "ObjectARXSupportPath" > "ObjectDBXSupportPath" > "ExplorerInsertUnits" > "LineWeightDisplayScale" > "MRUFilesToList" > "HideWarningDialogs" > "DatabaseTablesOpenMode" > "SQLIndexInDwg" > "InsertUnitsDefTarget" > "InsertUnitsDefSource" > "Measureinit" > "AssignInsertUnits" > "LoadPaletteBySession" > "ShowOleScaleDialog" > "ImageHighlight" > "AutoSnapPolarAddAng" > "LogFilePath" > "SaveFilePath" > "OffsetCurveGapType" > "UcsIconNonActiveColor" > "UcsIconActiveColor" > "UcsIconLineWidth" > "UcsIconCone" > "UcsIconSize" > "UcsIcon3d" > "UCSAxisAng" > "UCSView" > "UCSOrtho" > "XFadeCtl" > "DisableTrueColor" > "Trimmode" > "CheckDrawingSignature" > "PrinterDescDir" > "PrinterStyleSheetDir" > "PrinterConfigDir" > "ShowPrintBorder" > "ShowPaperMargins" > "ShowPaperBackground" > "CreateViewports" > "ShowPlotSetup" > "ShowRuler" > "ShowTabs" > "DefaultFormatForSave" > "LineWeightUnits" > "WHIPTHREAD" > "WhipThreadEnable" > "WhipArcEnable" > "DefaultLayerZeroPlotStyle" > "DefaultPlotStyle" > "HatchAlertDisabled" > "DatabaseWorkSpacePath" > "TemplatePath" > "MaxArray" > "EdgeMode" > "MaxHatch" > "HatchType" > "PlineType" > "AVEMAP" > "ImportPathInfo" > "CursorSize" > "ShowProxyGraphics" > "ShowProxyDialog" > "ARXDemandLoad" > "TextWindow.FontPitchAndFamily" > "TextWindow.FontItalic" > "TextWindow.FontWeight" > "TextWindow.FontHeight" > "TextWindow.FontFace" > "CmdLine.FontPitchAndFamily" > "CmdLine.FontItalic" > "CmdLine.FontWeight" > "CmdLine.FontHeight" > "CmdLine.FontFace" > "FontPitchAndFamily" > "FontItalic" > "FontWeight" > "FontHeight" > "FontFace" > "MonoVectors" > "Plot preview background" > "Autotracking vector" > "LayoutXhairPickboxEtc" > "XhairPickboxEtc" > "TextWindow.BackColor" > "TextWindow.ForeColor" > "CmdLine.BackColor" > "CmdLine.ForeColor" > "Layout background" > "Background" > "MaxDwg" > "CustomColors" > "CmdHistLines" > "CmdVisLines" > "MaxApp" > "ToolTips" > "Scrollbars" > "UseMenuHeader" > "AcadClassic" > "SDIMode" > "NoStartUpDialog" > "DemandLoadingModeler" > "ScreenMenu" > "DigitizerArbitration" > "BmpOutCompression" > "LogFileOpen" > "ACADLOGFILE" > "LOGFILE" > "UserName" > "ACADALTMENU" > "ACADLspAsDoc" > "AutoSnapTrackPath" > "AutoSnapPolarDistance" > "AutoSnapPolarAng" > "AutoSnapPolarMode" > "AutoSnapShowAperture" > "AutoSnapSize" > "AutoSnapColor" > "OleHide" > "XrefLoadPath" > "Trim&ExtendProjectMode" > "MaxOctTreeNodesToAllocate" > "PostscriptQuality" > "PickFirst" > "PickDrag" > "PickBox" > "PickAuto" > "PickAdd" > "GripSize" > "GripHot" > "GripColor" > "GripBlock" > "Grips" > "EntityExtentVariant" > "AuditControlFlags" > "MenuOptionFlags" > "XrefControlFlags" > "DisableGraphicsTextArea" > "SDF_AttributeExtractTemplateFile" > "ObjectSnapCursorSize" > "StatusLine&CoordinateDisplay" > "RasterPreview" > "PlotRotationMode" > "QAFlags" > "CommandDialogs" > "FileDialog" > "RtDisplay" > "ZoomFactor" > "UseContextMenus" > "ContextMenus" > "MiddleButtonPan" > "OsnapCoord" > "XrefLazyLoadMode" > "TextFill" > "MTextEditor" > "CustomDictionary" > "MainDictionary" > "PSOUT_PrologFileName" > "AutomaticSaveMinutes" > "DisableScreenMenuArea" > "MaxSortEntries" > "FontMappingFile" > "EmergencyFont" > "NetLocation" > "IsaveBackupDwg" > "IsavePercent" > "MenuFile" > > -- > > -Jason > Member of the Autodesk Discussion Forum Moderator Program > > > "Mark Douglas" wrote in message news:40364f1b$1_1@newsprd01... > > Im trying to access the files tab under options and was wondering if anyone > > had a list of the "System Enviroment variables"? > >
Message 9 of 16
Anonymous
in reply to: Anonymous

Ok....1 more question......How do access the Latest List?...To see if there are new ones between 2002/2004 & 2005? Mark "Mark Douglas" wrote in message news:403662c6$1_1@newsprd01... > Yes......This is what im looking for!!!!! > Thank you very much!!!! > > Mark > > "Jason Piercey" wrote in message > news:403660fb_3@newsprd01... > > Here is a list that I swiped from some code that > > John Uhden posted here once upon a time. > > (Thanks John!) > > > > "PlotSpoolerNode" > > "PlotSpoolerDirectory" > > "AutoSaveFile" > > "TempDirectory" > > "DefaultPlotToFile" > > "ModeBits" > > "AlarmOnError" > > "ActiveAssistance" > > "PROXYWEBSEARCHNUMBER" > > "Use TODAY as Startup dialog" > > "ShowFullPathInTitle" > > "LayoutRegenControl" > > "SnapType" > > "ShowHyperlinkCursor" > > "ShowHyperlinkToolTip" > > "ShowPaperSize" > > "ObjectARXSupportPath" > > "ObjectDBXSupportPath" > > "ExplorerInsertUnits" > > "LineWeightDisplayScale" > > "MRUFilesToList" > > "HideWarningDialogs" > > "DatabaseTablesOpenMode" > > "SQLIndexInDwg" > > "InsertUnitsDefTarget" > > "InsertUnitsDefSource" > > "Measureinit" > > "AssignInsertUnits" > > "LoadPaletteBySession" > > "ShowOleScaleDialog" > > "ImageHighlight" > > "AutoSnapPolarAddAng" > > "LogFilePath" > > "SaveFilePath" > > "OffsetCurveGapType" > > "UcsIconNonActiveColor" > > "UcsIconActiveColor" > > "UcsIconLineWidth" > > "UcsIconCone" > > "UcsIconSize" > > "UcsIcon3d" > > "UCSAxisAng" > > "UCSView" > > "UCSOrtho" > > "XFadeCtl" > > "DisableTrueColor" > > "Trimmode" > > "CheckDrawingSignature" > > "PrinterDescDir" > > "PrinterStyleSheetDir" > > "PrinterConfigDir" > > "ShowPrintBorder" > > "ShowPaperMargins" > > "ShowPaperBackground" > > "CreateViewports" > > "ShowPlotSetup" > > "ShowRuler" > > "ShowTabs" > > "DefaultFormatForSave" > > "LineWeightUnits" > > "WHIPTHREAD" > > "WhipThreadEnable" > > "WhipArcEnable" > > "DefaultLayerZeroPlotStyle" > > "DefaultPlotStyle" > > "HatchAlertDisabled" > > "DatabaseWorkSpacePath" > > "TemplatePath" > > "MaxArray" > > "EdgeMode" > > "MaxHatch" > > "HatchType" > > "PlineType" > > "AVEMAP" > > "ImportPathInfo" > > "CursorSize" > > "ShowProxyGraphics" > > "ShowProxyDialog" > > "ARXDemandLoad" > > "TextWindow.FontPitchAndFamily" > > "TextWindow.FontItalic" > > "TextWindow.FontWeight" > > "TextWindow.FontHeight" > > "TextWindow.FontFace" > > "CmdLine.FontPitchAndFamily" > > "CmdLine.FontItalic" > > "CmdLine.FontWeight" > > "CmdLine.FontHeight" > > "CmdLine.FontFace" > > "FontPitchAndFamily" > > "FontItalic" > > "FontWeight" > > "FontHeight" > > "FontFace" > > "MonoVectors" > > "Plot preview background" > > "Autotracking vector" > > "LayoutXhairPickboxEtc" > > "XhairPickboxEtc" > > "TextWindow.BackColor" > > "TextWindow.ForeColor" > > "CmdLine.BackColor" > > "CmdLine.ForeColor" > > "Layout background" > > "Background" > > "MaxDwg" > > "CustomColors" > > "CmdHistLines" > > "CmdVisLines" > > "MaxApp" > > "ToolTips" > > "Scrollbars" > > "UseMenuHeader" > > "AcadClassic" > > "SDIMode" > > "NoStartUpDialog" > > "DemandLoadingModeler" > > "ScreenMenu" > > "DigitizerArbitration" > > "BmpOutCompression" > > "LogFileOpen" > > "ACADLOGFILE" > > "LOGFILE" > > "UserName" > > "ACADALTMENU" > > "ACADLspAsDoc" > > "AutoSnapTrackPath" > > "AutoSnapPolarDistance" > > "AutoSnapPolarAng" > > "AutoSnapPolarMode" > > "AutoSnapShowAperture" > > "AutoSnapSize" > > "AutoSnapColor" > > "OleHide" > > "XrefLoadPath" > > "Trim&ExtendProjectMode" > > "MaxOctTreeNodesToAllocate" > > "PostscriptQuality" > > "PickFirst" > > "PickDrag" > > "PickBox" > > "PickAuto" > > "PickAdd" > > "GripSize" > > "GripHot" > > "GripColor" > > "GripBlock" > > "Grips" > > "EntityExtentVariant" > > "AuditControlFlags" > > "MenuOptionFlags" > > "XrefControlFlags" > > "DisableGraphicsTextArea" > > "SDF_AttributeExtractTemplateFile" > > "ObjectSnapCursorSize" > > "StatusLine&CoordinateDisplay" > > "RasterPreview" > > "PlotRotationMode" > > "QAFlags" > > "CommandDialogs" > > "FileDialog" > > "RtDisplay" > > "ZoomFactor" > > "UseContextMenus" > > "ContextMenus" > > "MiddleButtonPan" > > "OsnapCoord" > > "XrefLazyLoadMode" > > "TextFill" > > "MTextEditor" > > "CustomDictionary" > > "MainDictionary" > > "PSOUT_PrologFileName" > > "AutomaticSaveMinutes" > > "DisableScreenMenuArea" > > "MaxSortEntries" > > "FontMappingFile" > > "EmergencyFont" > > "NetLocation" > > "IsaveBackupDwg" > > "IsavePercent" > > "MenuFile" > > > > -- > > > > -Jason > > Member of the Autodesk Discussion Forum Moderator Program > > > > > > "Mark Douglas" wrote in message > news:40364f1b$1_1@newsprd01... > > > Im trying to access the files tab under options and was wondering if > anyone > > > had a list of the "System Enviroment variables"? > > > > > >
Message 10 of 16
Anonymous
in reply to: Anonymous

You're welcome. -- -Jason Member of the Autodesk Discussion Forum Moderator Program "Mark Douglas" wrote in message news:403662c6$1_1@newsprd01... > Yes......This is what im looking for!!!!! > Thank you very much!!!!
Message 11 of 16
Anonymous
in reply to: Anonymous

Not sure where Mr. Uhden got all these from. Perhaps he will chime in here and let all of us know where the secrete stash is. -- -Jason Member of the Autodesk Discussion Forum Moderator Program "Mark Douglas" wrote in message news:40366384$1_2@newsprd01... > Ok....1 more question......How do access the Latest List?...To see if there > are new ones between 2002/2004 & 2005?
Message 12 of 16
Anonymous
in reply to: Anonymous

You can find a full listing here: http://betaprograms.autodesk.com/history/command-map.htm This currently goes up to release 2004 and will hopefully be updated to 2005 when released. -beau
Message 13 of 16
Anonymous
in reply to: Anonymous

Isn't this a regular command and sysvar listing? It doesn't seem to identify environment variables that one accesses via the SETENV and GETENV lisp commands, such as in MaxHatch. -- Mark McDonough Sasaki Associates http://www.sasaki.com "bturner" wrote in message news:40367c00_1@newsprd01... > You can find a full listing here: > http://betaprograms.autodesk.com/history/command-map.htm > > This currently goes up to release 2004 and will hopefully be updated to 2005 > when released. > > -beau > >
Message 14 of 16
Anonymous
in reply to: Anonymous

Thanks Mark, good point. For that you can find a full list from Lee Ambrosius available at http://hyperpics.com/ or the direct links: Environment Variables Quick Guide - http://hyperpics.com/downloads/resources/customization/autolisp/AutoCAD%20Environment%20Variable%20Quick%20Guide.pdf Environment Variables General Overview - http://hyperpics.com/downloads/resources/customization/autolisp/AutoCAD%20Environment%20Variables.pdf happy coding.... beau "Mark McDonough" wrote in message news:40368cb3$1_3@newsprd01... > Isn't this a regular command and sysvar listing? It doesn't seem to > identify environment variables that one accesses via the SETENV and GETENV > lisp commands, such as in MaxHatch. > > -- > Mark McDonough > Sasaki Associates > http://www.sasaki.com > > "bturner" wrote in message news:40367c00_1@newsprd01... > > You can find a full listing here: > > http://betaprograms.autodesk.com/history/command-map.htm > > > > This currently goes up to release 2004 and will hopefully be updated to > 2005 > > when released. > > > > -beau > > > > > >
Message 15 of 16
Anonymous
in reply to: Anonymous

Didn't catch the "system", please excuse me. "Mark Douglas" wrote in message news:4036511f$1_3@newsprd01... > I am looking for the "System ENVIRONMENT Variables" These use the (getenv > "ACAD") for search paths and options like that? > > Mark > > > "Warren Trost" wrote in message > news:40364f86_2@newsprd01... > > HELP, COMMAND REFERENCE, SYSTEM VARIABLES at the bottom? > > > > > > "Mark Douglas" wrote in message > > news:40364f1b$1_1@newsprd01... > > > Im trying to access the files tab under options and was wondering if > > anyone > > > had a list of the "System Enviroment variables"? > > > > > > Thanks for any help? > > > > > > Mark > > > > > > > > > > > >
Message 16 of 16
Anonymous
in reply to: Anonymous

Thanks, I talked to Lee yesterday and he gave me the Link to his site. Thanks Mark "bturner" wrote in message news:4036a2c4_2@newsprd01... > Thanks Mark, good point. > > For that you can find a full list from Lee Ambrosius available at > http://hyperpics.com/ > or the direct links: > > Environment Variables Quick Guide - > http://hyperpics.com/downloads/resources/customization/autolisp/AutoCAD%20Environment%20Variable%20Quick%20Guide.pdf > > Environment Variables General Overview - > http://hyperpics.com/downloads/resources/customization/autolisp/AutoCAD%20Environment%20Variables.pdf > > happy coding.... > beau > > > "Mark McDonough" wrote in message > news:40368cb3$1_3@newsprd01... > > Isn't this a regular command and sysvar listing? It doesn't seem to > > identify environment variables that one accesses via the SETENV and GETENV > > lisp commands, such as in MaxHatch. > > > > -- > > Mark McDonough > > Sasaki Associates > > http://www.sasaki.com > > > > "bturner" wrote in message news:40367c00_1@newsprd01... > > > You can find a full listing here: > > > http://betaprograms.autodesk.com/history/command-map.htm > > > > > > This currently goes up to release 2004 and will hopefully be updated to > > 2005 > > > when released. > > > > > > -beau > > > > > > > > > > > >

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report

”Boost