Wednesday, May 30, 2018

windows 7 - does using the SET command add to your path?



If I want to add the java \bin to my environment variable, can I do this from the command prompt using the SET command or is that just temporary?



Answer



That's just temporary for the current process' environment. There's setx if you'd like to make a more permanent change.


No comments:

Post a Comment

linux - How to SSH to ec2 instance in VPC private subnet via NAT server

I have created a VPC in aws with a public subnet and a private subnet. The private subnet does not have direct access to external network. S...