I’m executing the following command
SETX PATH "very_very_long_list";
after closing and opening comand line, echo %path% outputs the old value. What I’m doing wrong?
Thank you in advance!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No need to use
SETX PATH. If you need to add onto the currentPATH, useElse if you need to wipe PATH completely and then add in your own parameters use
No need to surround paths with double quotes as
PATHcommand sees spaces in pathnames.