<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to set System environment variable using batch/script before AutoCAD lau in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/how-to-set-system-environment-variable-using-batch-script-before/m-p/8212580#M169342</link>
    <description>&lt;P&gt;You will have to do some investigating first.&lt;BR /&gt;What variable(s) are you trying to set?&lt;BR /&gt;&lt;BR /&gt;After gathering the suspect variables, go to help --&amp;gt; system variables&lt;BR /&gt;and determine if the variable is either:&lt;BR /&gt;a) Drawing specific.&lt;BR /&gt;b) "User Setting" or Registry.&lt;BR /&gt;c) "Not Saved".&lt;BR /&gt;&lt;BR /&gt;The only manipulation externally, before launch, would be item "b". However, if&lt;BR /&gt;the entry is located inside a profile sub-section, one will need to know the name&lt;BR /&gt;of the profile.&lt;BR /&gt;For "a" - One can only manipulate a DXF file (I think).&lt;BR /&gt;For "c" - It would have to be set during launch.&lt;BR /&gt;&lt;BR /&gt;Do a search here for key phrase "load order", "startup sequence" or similar to see&lt;/P&gt;
&lt;P&gt;the sequence of third party interface points verses when the plugin(s) is loaded.&lt;/P&gt;
&lt;P&gt;Image below is a screen capture from 2014 (of unknown origin).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ACAD-StartupSequence.jpg" style="width: 320px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/536844i4B3C1827D591A1E6/image-size/large?v=v2&amp;amp;px=999" role="button" title="ACAD-StartupSequence.jpg" alt="ACAD-StartupSequence.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;???&lt;/P&gt;</description>
    <pubDate>Mon, 20 Aug 2018 22:43:47 GMT</pubDate>
    <dc:creator>scot-65</dc:creator>
    <dc:date>2018-08-20T22:43:47Z</dc:date>
    <item>
      <title>How to set System environment variable using batch/script before AutoCAD launch</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-set-system-environment-variable-using-batch-script-before/m-p/8210865#M169339</link>
      <description>&lt;P&gt;&lt;STRONG&gt;How to set System environment variable using batch/script before AutoCAD launch&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a requirement to load an external plugin which reads system environment variable&lt;/P&gt;&lt;P&gt;system environment variable values changes based on the CAD Application&lt;/P&gt;&lt;P&gt;Requirement is to have separate system environment variable values for AutoCAD which should be set before AutoCAD process is started.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help on this will be highly appreciated.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Aug 2018 12:15:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-set-system-environment-variable-using-batch-script-before/m-p/8210865#M169339</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-20T12:15:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to set System environment variable using batch/script before AutoCAD lau</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-set-system-environment-variable-using-batch-script-before/m-p/8211179#M169340</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;FONT color="#808000"&gt;set ‹var name›=‹value&amp;gt;&lt;/FONT&gt; is the syntax I would suggest.&amp;nbsp; This can be contained in a script, login batch file or simply run at the Windows command line.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #808000;"&gt;Please select the &lt;STRONG&gt;Accept as Solution&lt;/STRONG&gt; button if my post solves your issue or answers your question.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Aug 2018 14:03:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-set-system-environment-variable-using-batch-script-before/m-p/8211179#M169340</guid>
      <dc:creator>john.vellek</dc:creator>
      <dc:date>2018-08-20T14:03:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to set System environment variable using batch/script before AutoCAD lau</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-set-system-environment-variable-using-batch-script-before/m-p/8211493#M169341</link>
      <description>&lt;P&gt;You may want to do a condition that checks for autocad version, then sets the variable based on that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So create an acad.lsp file that everyone reads and do something like:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;(cond
	((= (getvar "acadver") "23.0s (LMS Tech)")
		(setenv "VARIABLE" "SETTING")
	)
(setenv "VARIABLE" "SETTING")
)&lt;/PRE&gt;&lt;P&gt;Obviously you can add as many autocad versions as you need. Also, this won't set it before AutoCAD is run, but during startup.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Aug 2018 15:40:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-set-system-environment-variable-using-batch-script-before/m-p/8211493#M169341</guid>
      <dc:creator>ArchD</dc:creator>
      <dc:date>2018-08-20T15:40:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to set System environment variable using batch/script before AutoCAD lau</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-set-system-environment-variable-using-batch-script-before/m-p/8212580#M169342</link>
      <description>&lt;P&gt;You will have to do some investigating first.&lt;BR /&gt;What variable(s) are you trying to set?&lt;BR /&gt;&lt;BR /&gt;After gathering the suspect variables, go to help --&amp;gt; system variables&lt;BR /&gt;and determine if the variable is either:&lt;BR /&gt;a) Drawing specific.&lt;BR /&gt;b) "User Setting" or Registry.&lt;BR /&gt;c) "Not Saved".&lt;BR /&gt;&lt;BR /&gt;The only manipulation externally, before launch, would be item "b". However, if&lt;BR /&gt;the entry is located inside a profile sub-section, one will need to know the name&lt;BR /&gt;of the profile.&lt;BR /&gt;For "a" - One can only manipulate a DXF file (I think).&lt;BR /&gt;For "c" - It would have to be set during launch.&lt;BR /&gt;&lt;BR /&gt;Do a search here for key phrase "load order", "startup sequence" or similar to see&lt;/P&gt;
&lt;P&gt;the sequence of third party interface points verses when the plugin(s) is loaded.&lt;/P&gt;
&lt;P&gt;Image below is a screen capture from 2014 (of unknown origin).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ACAD-StartupSequence.jpg" style="width: 320px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/536844i4B3C1827D591A1E6/image-size/large?v=v2&amp;amp;px=999" role="button" title="ACAD-StartupSequence.jpg" alt="ACAD-StartupSequence.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;???&lt;/P&gt;</description>
      <pubDate>Mon, 20 Aug 2018 22:43:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-set-system-environment-variable-using-batch-script-before/m-p/8212580#M169342</guid>
      <dc:creator>scot-65</dc:creator>
      <dc:date>2018-08-20T22:43:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to set System environment variable using batch/script before AutoCAD lau</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-set-system-environment-variable-using-batch-script-before/m-p/8213538#M169343</link>
      <description>&lt;P&gt;Hi John&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried using wgm.scr with below contents&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;set PTC_WGM_ROOT=C:\Users\%username%\Documents\wgmcache\wgm&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;set PTC_WLD_ROOT=C:\Users\%username%\Documents\wgmcache\wld&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;set PTC_WF_ROOT=C:\Users\%username%\Documents\wgmcache\wf&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;set PTC_WFS_ROOT=C:\Users\%username%\Documents\wfs&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;And&lt;STRONG&gt; AutoCAD shortcut target changed as shown below&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;"C:\Program Files\Autodesk\AutoCAD 2018\acad.exe" /product ACAD /language "en-US" /b "C:\Program Files\Autodesk\AutoCAD 2018\wgm.scr"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;However it does not work correctly. &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I need the&amp;nbsp;AutoCAD to be launched with above environment variable and not the environment variable set after the launch.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Let me know if you need any further information.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;It would be good if you can share any sample batch or script file.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Regards&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Amey Parkar&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Aug 2018 10:12:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-set-system-environment-variable-using-batch-script-before/m-p/8213538#M169343</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-21T10:12:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to set System environment variable using batch/script before AutoCAD lau</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-set-system-environment-variable-using-batch-script-before/m-p/8213704#M169344</link>
      <description>&lt;P&gt;&lt;SPAN&gt;To install additional paths, you can use a registry entry, for example (AutoCAD 2016)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;[HKEY_CURRENT_USER\Software\Autodesk\AutoCAD\R20.1\ACAD-F001:419\Profiles\&amp;lt;&amp;lt;YOUR-PROFILE&amp;gt;&amp;gt;\General]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;"ACAD"=...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Aug 2018 11:53:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-set-system-environment-variable-using-batch-script-before/m-p/8213704#M169344</guid>
      <dc:creator>alex101000</dc:creator>
      <dc:date>2018-08-21T11:53:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to set System environment variable using batch/script before AutoCAD lau</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-set-system-environment-variable-using-batch-script-before/m-p/8214240#M169345</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is this custom app one that you have designed? Or is it from another developer?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are on a Windows domain, can you not &lt;A href="https://www.morgantechspace.com/2013/10/add-environment-variable-via-group.html" target="_blank"&gt;set the environment with GP&lt;/A&gt;?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or if stand alone, how many users would you need to set this up on?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If only a couple then perhaps just set it manually?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/537129iACE2B48D599F33A3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #808000;"&gt;Please select the &lt;STRONG&gt;Accept as Solution&lt;/STRONG&gt; button if my post solves your issue or answers your question.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Aug 2018 14:51:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-set-system-environment-variable-using-batch-script-before/m-p/8214240#M169345</guid>
      <dc:creator>john.vellek</dc:creator>
      <dc:date>2018-08-21T14:51:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to set System environment variable using batch/script before AutoCAD lau</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-set-system-environment-variable-using-batch-script-before/m-p/8215702#M169346</link>
      <description>&lt;P&gt;Hello John&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your time on this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This app/plugin is a&amp;nbsp;PTC Windchill app&amp;nbsp;developed by PTC for connection with Windchill PLM Tool&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We are on windows domain, however we cannot set environment variable&amp;nbsp;through group policy&amp;nbsp;as we have separate cache folder for each CAD Application like AutoCAD, Creo, Solidworks, etc., Having common cache folder&amp;nbsp;might have issues with loading these data to PDM.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We have around 10-15 users each at 4 sites, so setting up manually will not be a good option either.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am looking to setup a batch or script or any other way to set environment variables which should be set before the AutoCAD launch. There should be some way out for this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Amey Parkar&lt;/P&gt;</description>
      <pubDate>Wed, 22 Aug 2018 04:46:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-set-system-environment-variable-using-batch-script-before/m-p/8215702#M169346</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-22T04:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to set System environment variable using batch/script before AutoCAD lau</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-set-system-environment-variable-using-batch-script-before/m-p/8216021#M169347</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I can tell you only an approximate way to write a script.&lt;BR /&gt;We check if AutoCAD is running:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
    &amp;amp; "{impersonationLevel=impersonate}!\\" _
    &amp;amp; strComputer &amp;amp; "\root\cimv2")

Set colProcesses = objWMIService.ExecQuery( _
    "Select Name From Win32_Process " _
    &amp;amp; "Where Name = 'acad.exe'")

If colProcesses.Count &amp;gt;= 1 Then
  Set objShell = Wscript.CreateObject("Wscript.Shell")
  objShell.Run "notepad.exe"
else
  Msgbox "No AutoCAD"
End If&lt;/PRE&gt;&lt;P&gt;&lt;SPAN&gt;&lt;BR /&gt;Set or delete values of environment variables:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;A title="Link" href="http://www.robvanderwoude.com/vbstech_data_environment.php" target="_blank"&gt;http://www.robvanderwoude.com/vbstech_data_environment.php&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;To set a variable, specify new values for its &lt;FONT face="Courier New" size="3"&gt;Name&lt;/FONT&gt;, &lt;FONT face="Courier New" size="3"&gt;UserName&lt;/FONT&gt; and/or &lt;FONT face="Courier New" size="3"&gt;VariableValue&lt;/FONT&gt; properties.&lt;/P&gt;&lt;DIV&gt;&lt;A href="http://www.amazon.com/gp/product/0596006330?ie=UTF8&amp;amp;tag=robvanderwoudess&amp;amp;linkCode=as2&amp;amp;camp=1789&amp;amp;creative=390957&amp;amp;creativeASIN=0596006330" target="_blank"&gt;&lt;IMG alt="" src="http://www.robvanderwoude.com/pictures/books/0596006330.jpg" border="0" /&gt;&lt;/A&gt;&lt;IMG width="1" height="1" alt="" src="http://www.assoc-amazon.com/e/ir?t=robvanderwoudess&amp;amp;l=as2&amp;amp;o=1&amp;amp;a=0596006330" border="0" /&gt;&lt;/DIV&gt;&lt;P&gt;The following code, from the book &lt;A href="http://www.amazon.com/gp/product/0596006330?ie=UTF8&amp;amp;tag=robvanderwoudess&amp;amp;linkCode=as2&amp;amp;camp=1789&amp;amp;creative=390957&amp;amp;creativeASIN=0596006330" target="_blank"&gt;&lt;FONT color="#0066cc"&gt;Windows Server Cookbook&lt;/FONT&gt;&lt;/A&gt;&lt;FONT color="#0066cc"&gt;&lt;IMG width="1" height="1" alt="" src="http://www.assoc-amazon.com/e/ir?t=robvanderwoudess&amp;amp;l=as2&amp;amp;o=1&amp;amp;a=0596006330" border="0" /&gt;&lt;/FONT&gt; by Robbie Allen, creates a new system environment variable called FOOBAR:&lt;/P&gt;&lt;PRE&gt;strVarName = "FOOBAR"
strVarValue = "Foobar Value"

Set objVarClass = GetObject( "winmgmts://./root/cimv2:Win32_Environment" )
Set objVar      = objVarClass.SpawnInstance_
objVar.Name          = strVarName
objVar.VariableValue = strVarValue
objVar.UserName      = "&amp;lt;SYSTEM&amp;gt;"
objVar.Put_
WScript.Echo "Created environment variable " &amp;amp; strVarName
Set objVar      = Nothing
Set objVarClass = Nothing&lt;/PRE&gt;&lt;P&gt;And the following code removes the environment variable again by giving it an empty value:&lt;/P&gt;&lt;PRE&gt;strVarName = "FOOBAR"

Set objVarClass = GetObject( "winmgmts://./root/cimv2:Win32_Environment" )
Set objVar      = objVarClass.SpawnInstance_
objVar.Name          = strVarName
objVar.VariableValue = ""
objVar.UserName      = "&amp;lt;SYSTEM&amp;gt;"
objVar.Put_
WScript.Echo "Removed environment variable " &amp;amp; strVarName
Set objVar      = Nothing
Set objVarClass = Nothing&lt;/PRE&gt;&lt;P&gt;Replace the dot in the &lt;FONT face="Courier New" size="3"&gt;GetObject&lt;/FONT&gt; commands by a remote computer name to manage environment variables on that remote computer.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Aug 2018 08:29:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-set-system-environment-variable-using-batch-script-before/m-p/8216021#M169347</guid>
      <dc:creator>alex101000</dc:creator>
      <dc:date>2018-08-22T08:29:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to set System environment variable using batch/script before AutoCAD lau</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/how-to-set-system-environment-variable-using-batch-script-before/m-p/8220971#M169348</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This isn't really an AutoCAD issue. Setting the Windows environment variables for your 3rd party add-in can be done manually, through group policy or through the script in the last post.&amp;nbsp; You might even consider using the setenv in a user login script.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If none of these fits your requirements I suggest contacting the developer of the 3rd party app to see if they can offer suggestions that are different than those already provided in this thread.&amp;nbsp; I am sorry that I dont have additional resources on this process for you.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You might also consider a post in the Installation and Licensing forum as they might have some other methods that they have used to help with customer deployments.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #808000;"&gt;Please select the &lt;STRONG&gt;Accept as Solution&lt;/STRONG&gt; button if my post solves your issue or answers your question.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Aug 2018 14:27:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/how-to-set-system-environment-variable-using-batch-script-before/m-p/8220971#M169348</guid>
      <dc:creator>john.vellek</dc:creator>
      <dc:date>2018-08-24T14:27:20Z</dc:date>
    </item>
  </channel>
</rss>

