Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/flipeador/environment-variables-editor
- Owner: flipeador
- License: apache-2.0
- Created: 2024-10-06T02:17:54.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-10-28T02:11:48.000Z (18 days ago)
- Last Synced: 2024-10-28T06:01:11.450Z (18 days ago)
- Topics: autohotkey, editor, environment, environment-variables, variables, win32, windows
- Language: AutoHotkey
- Homepage:
- Size: 153 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Environment Variables Editor
[AutoHotkey][ahk] script to edit user and system environment variables in Windows.
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