ProcessStartInfo.EnvironmentVariables Property
Gets search paths for files, directories for temporary files, application-specific options, and other similar information.
Namespace: System.Diagnostics
Assembly: System (in System.dll)
Property Value
Type: System.Collections.Specialized.StringDictionaryA string dictionary that provides environment variables that apply to this process and child processes. The default is null.
Although you cannot set the EnvironmentVariables property, you can modify the StringDictionary returned by the property. For example, the following code adds a TempPath environment variable: myProcess.StartInfo.EnvironmentVariables.Add("TempPath", "C:\\Temp"). You must set the UseShellExecute property to false to start the process after changing the EnvironmentVariables property. If UseShellExecute is true, an InvalidOperationException is thrown when the Start method is called.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.