Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/flipeador/environment-variables-editor

Windows environment variables editor.
https://github.com/flipeador/environment-variables-editor

autohotkey editor environment environment-variables variables win32 windows

Last synced: about 11 hours ago
JSON representation

Windows environment variables editor.

Awesome Lists containing this project

README

        

# Environment Variables Editor

[AutoHotkey][ahk] script to edit user and system environment variables in Windows.


Preview





Environment variables specify files, directories, application-specific options,
and other similar information that can be different on different computers.
The system maintains an environment block for each user and one for the computer.

- **User environment variables** are set for the current user only.
- **System environment variables** are set for all users on the system.

The name of an environment variable cannot include an equal sign (`=`).

The `PATH` environment variable is a special variable that specifies the directories in which certain types of
files are located on the computer that can be referenced without knowing and typing the whole path to the file.
Directories are separated by semicolons (`;`), and those that contain semicolons in the path are surrounded by double quotes (`"`).

The `PATHEXT` environment variable stores a list of extensions that determines what types of files to look for and in what order within each directory specified in the `PATH` environment variable.

The script allows you to add multiple values to any variable, by separating them with semicolons, just like the `PATH` variable.

### Hotkeys

Hotkeys that perform an action when the script window is active.

| Hotkey | Description |
| :---: | --- |
| [F5][reload] | Replaces the currently running instance of the script with a new one. |
| [XButton1][xbutton] | [4th mouse button] Moves the selected environment variable value up. |
| [XButton2][xbutton] | [5th mouse button] Moves the selected environment variable value down. |

## Download

[ahk]: https://www.autohotkey.com
[reload]: https://www.autohotkey.com/docs/v2/lib/Reload.htm
[xbutton]: https://www.autohotkey.com/docs/v2/KeyList.htm#mouse-advanced