-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Windows - Disable option to add PATH during an AllUsers install (#584)
* Disable option to add installation to PATH during an AllUsers install * Add news file for release notes * Completely remove option to AddToPath when user selects AllUsers installation * Add note to help window, informing user the AddToPath is disable for AllUsers installs * Display MessageBox to alert user AddToPath is disabled for AllUsers * Move new item to Bug Fixes section * Update news/584-windows-disable-path-for-allusers Co-authored-by: Jaime Rodríguez-Guerra <jaimergp@users.noreply.github.com> * Remove trailing slash * Indent and fix trailing slash * Add comment for why AddToPath is disabled for AllUsers; remove unnecessary block * When initialize_conda and initialize_by_default are True, only allow AddToPath if InstMode is JustMe * Remove second (unnecessary) call to insertmacro ParseCommandLineArgs * Add note to description for initialize_by_default * Fix line break docs linter error * Add note to CONSTRUCT.md docs page * Restore OnInit_Release function (can't confidently remove it at this point) * Relocate parsing of AddToPath option to OnInit_Release function Co-authored-by: Daniel Bast <2790401+dbast@users.noreply.github.com> Co-authored-by: Jaime Rodríguez-Guerra <jaimergp@users.noreply.github.com>
- Loading branch information
1 parent
7307290
commit a1efe3b
Showing
5 changed files
with
74 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
### Enhancements | ||
|
||
* <news item> | ||
|
||
### Bug fixes | ||
|
||
* (For Windows only) Fix for [CVE-2022-26526](https://nvd.nist.gov/vuln/detail/CVE-2022-26526). Installations for "All Users" will not be allowed the option to modify the system PATH environment variable during installation. Installations for "Just Me" will still be allowed the option to add the installation to their PATH environment variable. Additionally, when installing with Administrator privileges, non-admin system Users will no longer have “Write” permissions. (#584) | ||
|
||
### Deprecations | ||
|
||
* <news item> | ||
|
||
### Docs | ||
|
||
* <news item> | ||
|
||
### Other |