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.
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.
What is the best approach for setting environment variables across a network of desktops?
Best Answer
My research says there are four ways to do this. I started at the Microsoft Logon Script documentation pages and fanned out from there.
Login Script Batch File
Windows Server 2000, 2003, 2008
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.
Won't work for the aforementioned reason.
So, alternatively, I can try to set the variable via directly writing to the registry like so for a System Environment Variable:
or to the User Environment Variables like so:
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.
Login Script WSH VBS File
Windows Server 2000, 2003, 2008
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. This example would append to the end of PATH.
This example would just set the variable.
This approach yields variables that are immediately available via a CMD window. No reboot is required like the batch file registry writes.
ADM File
Windows Server 2000, 2003, 2008
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.
Microsoft Support TechNet Reference on ADM File Locations.
Another article about ADM files and using them to set Registry settings.
Tom's Hardware on ADM Files.
Group Policy Preferences (GPP)
Windows Server 2008
Windows Server 2008 has a new feature called the Environment Extensions for the Group Policy Preferences. It allows you to conveniently set what otherwise required complex batch scripts. The new items exposed include registry values, environment variables, and more. A quick how-to guide is available here.
I can't use this option because my clients don't have Windows Server 2008.
Summary
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.