Microsoft's Windows

The Power Shell: Window's New-Fangled Shell*

[...]

Adding a directory to the PATH environment variable in Windows

Change PATH with the GUI
  1. Open Start Search, type env, and select Edit the system environment variables.
  2. Click the Environment Variables… button.
  3. In the System Variables section, locate Path, and click edit.
  4. In the Edit environment variable UI, click New to add the new path.

After you change PATH with the GUI, close and reopen the console window. This works because only programs started after the change will "see" the new PATH. This is because when you change the PATH environment variable using the GUI tool, it updates the variable for future processes but not for anything currently running.

Use the command line (set):

This option only affects your current shell session, not the whole system. Execute this command in the command window you have open:

set PATH=%PATH%;C:<ANOTHER_PATH>
Use the command line (xset):

You can permanently add a path to PATH with the setx command:

setx /M path "%path%;<ANOTHER_PATH>"
Remove the /M flag if you want to set the user PATH instead of the system PATH.