"John A Grandy" <johnagrandy-at-gmail-dot-com> wrote in message news:uxhpxk%23WJHA.1444[ at ]TK2MSFTNGP02.phx.gbl...
[Quoted Text] > In cmd.exe , typing "path" will display the "path" user variable .. > > But how to display the "path" system variable ? >
The command %path% will display the system variable. By default there is no user-specific %path% variable, only a user-specific %temp% variable. You can access user variables here: HKEY_CURRENT_USER\Environment and system variables here: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment
|