Fairly straightforward question. I need to update my PATH environment variable in Windows Server 2008 Core. Considering there's no GUI, how is this done from the command line?
|
feedback
|
|
from the Mueller book Administering Windows Server 2008 core - use WMIC WMIC Environment Where Name="Path" SET VariableValue="C:\Temp;%PATH% | |||
|
feedback
|
|
To make persistent changes use For example, to add a folder to the end of the current path, use:
Your change won't be visible in the current
| ||||
|
feedback
|
|
As it has always been done since DOS times:
| |||||
feedback
|