Can system Environment Variables be set via Windows Logon Scripts? - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T07:45:45Zhttp://stackoverflow.com/feeds/question/588321http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/588321/can-system-environment-variables-be-set-via-windows-logon-scripts0Can system Environment Variables be set via Windows Logon Scripts?Matthew McCullough2009-02-25T23:02:50Z2009-03-04T12:17:44Z
<p>I have an MSI-packaged application that is being deployed via Group Policy Objects (GPO) from a Windows 2003 Domain Server to all the XP client machines in the network.</p>
<p>This application reads two environment variables for its configuration (which server IPs to talk to) and it seems like we'd also want to push this configuration via a GPO style setting or Login script to all the desktops.</p>
<p>What is the best approach for setting environment variables across a network of desktops?</p>
http://stackoverflow.com/questions/588321/can-system-environment-variables-be-set-via-windows-logon-scripts/588405#5884050Answer by Matthew McCullough for Can system Environment Variables be set via Windows Logon Scripts?Matthew McCullough2009-02-25T23:31:22Z2009-02-26T04:57:46Z<p>My research says there are four ways to do this. I started at the <a href="http://technet.microsoft.com/en-us/library/cc757263.aspx" rel="nofollow">Microsoft Logon Script documentation pages and fanned out from there</a>.</p>
<h1>Login Script Batch File</h1>
<h2>Windows Server 2000, 2003, 2008</h2>
<p>Login batch file (.BAT) scripts are just a temporary instance of a CMD window, and the environment variables set in there go away as soon as the login window closes.</p>
<pre><code>set MYVAR=MyValue
</code></pre>
<p>Won't work for the aforementioned reason.</p>
<p>So, alternatively, I can try to set the variable via directly writing to the registry like so for a System Environment Variable:</p>
<pre><code>reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v MYVAR /t REG_EXPAND_SZ /d MyValue
</code></pre>
<p>or to the User Environment Variables like so:</p>
<pre><code>reg add HKCU\Environment /v MYVAR /t REG_EXPAND_SZ /d MyValue
</code></pre>
<p>The drawback here is that the variables, though written to registry, are not read until the next login for all I can see. A new CMD window shows no trace of them until the user re-logs-in.</p>
<p><br/></p>
<h1>Login Script WSH VBS File</h1>
<h2>Windows Server 2000, 2003, 2008</h2>
<p>With a Visual Basic Script (VBS) login script, you can use a more programmatic method to access the environment variables. This is looking like my most viable approach. <a href="http://www.experts-exchange.com/Programming/Languages/Visual%5FBasic/VB%5FScript/Q%5F23898348.html" rel="nofollow">This example would append to the end of PATH</a>.</p>
<pre><code>Set WSHShell = WScript.CreateObject("WScript.Shell")
Set WshEnv = WshShell.Environment("SYSTEM")
WshEnv("Path") = WshEnv("Path") & ";M:\DB\whatever\"
</code></pre>
<p>This example would just set the variable.</p>
<pre><code>Set WSHShell = WScript.CreateObject("WScript.Shell")
Set WshEnv = WshShell.Environment("SYSTEM")
WshEnv("MYVAR") = "MyNewValue"
</code></pre>
<p>This approach yields variables that are immediately available via a CMD window. No reboot is required like the batch file registry writes.</p>
<p><br/></p>
<h1>ADM File</h1>
<h2>Windows Server 2000, 2003, 2008</h2>
<p>ADM files are a way to expose custom functionality of settings to the Group Policy Editor. It seems tricky to get them installed and visible on the domain controller so I'm jumping over this option.</p>
<p><a href="http://support.microsoft.com/default.aspx?scid=228460" rel="nofollow">Microsoft Support TechNet Reference on ADM File Locations.</a><br/>
<a href="http://www.winserverkb.com/Uwe/Forum.aspx/windows-server-sbs/17515/SBS-Group-Policy-to-assign-registry-settings" rel="nofollow">Another article about ADM files and using them to set Registry settings.</a><br/>
<a href="http://www.tomshardware.com/forum/221564-46-adding-environment-variables" rel="nofollow">Tom's Hardware on ADM Files.</a></p>
<pre><code>---- set.adm ----
CLASS MACHINE
CATEGORY "Environment"
POLICY "Self dfined variables"
KEYNAME "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"
PART "Set MyVar1 =" EDITTEXT
DEFAULT "MyValue1"
VALUENAME MyVar1 ; EXPANDABLETEXT
; add expandabletext if it can contain Variables itself
END PART
END POLICY
END CATEGORY
---- set.adm ----
</code></pre>
<p><br/></p>
<h1>Group Policy Preferences (GPP)</h1>
<h2>Windows Server 2008</h2>
<p>Windows Server 2008 h<a href="http://www.thincomputing.net/blog/windows-server-2008-group-policy-preferences-the-end-of-the-login-sc.html" rel="nofollow">as a new feature</a> called the <a href="http://technet.microsoft.com/en-us/library/cc770493.aspx" rel="nofollow">Environment Extensions for the Group Policy Preferences</a>. It allows you to conveniently set what otherwise required complex batch scripts. The new items exposed include registry values, environment variables, and more. <a href="http://www.gpoguy.com/Portals/0/Group%20Policy%20Preferences%20Overview.pdf" rel="nofollow">A quick how-to guide is available here</a>.</p>
<p>I can't use this option because my clients don't have Windows Server 2008.</p>
<p><br/></p>
<h1>Summary</h1>
<p>Please tell me based on your experiences as Windows Administrators which of these works best and why. I'm just a desktop developer, and need an admin's insight.</p>
http://stackoverflow.com/questions/588321/can-system-environment-variables-be-set-via-windows-logon-scripts/592619#5926191Answer by sascha for Can system Environment Variables be set via Windows Logon Scripts?sascha2009-02-26T21:52:41Z2009-02-27T22:59:48Z<p>Why can't you embed this configuration into the Property table of the MSI (post-build, using a transform) and then read from there? This would make much more sense... fire up Orca, add a couple of properties, save a transform and deploy via GPO with transform applied.</p>
<p>Edit: Just re-read this question... then deploy settings to the registry and have the application read from there, rather than setting environment variables. Setting global environment variables for one application doesn't make sense for an administrators point of view.</p>
http://stackoverflow.com/questions/588321/can-system-environment-variables-be-set-via-windows-logon-scripts/610302#6103020Answer by Jason for Can system Environment Variables be set via Windows Logon Scripts?Jason2009-03-04T12:17:44Z2009-03-04T12:17:44Z<p>Set WSHShell = WScript.CreateObject("WScript.Shell")
Set WshEnv = WshShell.Environment("SYSTEM")
WshEnv("MYVAR") = "MyNewValue"</p>
<p>This works well with 2003 server and Group Policy. Does anyone know how I can get this to only run for users of a certain AD Group?</p>
<p>Regards
Jason</p>