in reply to newbie question about setting environment variables
That will set the environment variable 'MY_NEW_ENV_VARIABLE' to 'C:\some\path' for the life of the script only.$ENV{MY_NEW_ENV_VARIABLE} = 'C:\some\path';
That sets the environment variable for the life of the shell in which you execute the batch file.set MY_NEW_ENV_VARIABLE=C:\some\path
|
|---|