Basically, I know I can go through my control panel and modify the path variable. But, I\'m wondering if there is a way to through batch programming have a temporary path in
That's right, but it doesn't change it permanently, but just for current command prompt, if you wanna to change it permanently you have to use for example this:
setx ENV_VAR_NAME "DESIRED_PATH" /m
This will change it permanently and yes you can overwrite it by another batch script.