I am trying to add new Environment variable in my windows 10 system , i am using below powershell command to add System variable
$env:ITH_PYTHON_PATH = 'C:\Python27\Python.exe'
i can see command is successful in adding the new values, and i can get back value when i use command $env:ITH_PYTHON_PATH.
- I cannot see updated path when i manually go to the system property Environment variable
- After reboot $env:ITH_PYTHON_PATH is also not seen.
Is there any better way to add environment variable permanently?