Setting Environment Variable from VB.NET
I have an Environment variable named "PAR" which has value "plan".
Now i open 2 command prompt..
In first command prompt..
I run my exe which uses Original Environment variable..
In Second command prompt.
I set the value for Enviroment variable as "planned" and for the execute the
my exe which uses new Environment...
When Both the command prompt are closed and we see the Environment
variable value and i.e. same as set original...
I want to perform the same process with my VB.NET application.
What i am doing is calling Process.Start() method to execute the EXE but..
I need to change the Environment Variable for the current Instance..
Any Ideas how to achieve this.
Regards
Amit Pandya

