Can't change environment variables in windows 10
In windows 10 whether I go to the control panel or through the start panel, nothing happen when I click to edit the environment variables.
Nothing happens. No window opens. The variables I have set in windows 8 before upgrading still work but I am unable to add any more which is a major problem.
Anyone have any ideas?
windows-10
add a comment |
In windows 10 whether I go to the control panel or through the start panel, nothing happen when I click to edit the environment variables.
Nothing happens. No window opens. The variables I have set in windows 8 before upgrading still work but I am unable to add any more which is a major problem.
Anyone have any ideas?
windows-10
How do I set system environment variables in Windows 10? "Unfortunately, the recent update to Windows 10 (November update, version 1511) destroyed this functionality. The "Change my environment variables" link no longer works. It is there, but it is dead. So for the post-November version of Windows 10 the correct answer is: it is generally impossible to edit user-specific environment variables in version 1511 of Windows 10 from regular Users accounts. (cont)
– DavidPostill♦
Jan 7 '16 at 13:37
(cont) For the time being one workaround for non-administrative accounts is to, well, add your user account to Administrators group, logout, log back in, edit the variables using "System" -> “Advanced system settings” method, and then take away administrative rights again"
– DavidPostill♦
Jan 7 '16 at 13:38
Thanks for the workaround! What the hell is Microsoft doing with these updates? I keep having to re-install my motherboard drivers after each major update.
– Guerrilla
Jan 8 '16 at 5:47
add a comment |
In windows 10 whether I go to the control panel or through the start panel, nothing happen when I click to edit the environment variables.
Nothing happens. No window opens. The variables I have set in windows 8 before upgrading still work but I am unable to add any more which is a major problem.
Anyone have any ideas?
windows-10
In windows 10 whether I go to the control panel or through the start panel, nothing happen when I click to edit the environment variables.
Nothing happens. No window opens. The variables I have set in windows 8 before upgrading still work but I am unable to add any more which is a major problem.
Anyone have any ideas?
windows-10
windows-10
asked Jan 7 '16 at 8:34
Guerrilla
108115
108115
How do I set system environment variables in Windows 10? "Unfortunately, the recent update to Windows 10 (November update, version 1511) destroyed this functionality. The "Change my environment variables" link no longer works. It is there, but it is dead. So for the post-November version of Windows 10 the correct answer is: it is generally impossible to edit user-specific environment variables in version 1511 of Windows 10 from regular Users accounts. (cont)
– DavidPostill♦
Jan 7 '16 at 13:37
(cont) For the time being one workaround for non-administrative accounts is to, well, add your user account to Administrators group, logout, log back in, edit the variables using "System" -> “Advanced system settings” method, and then take away administrative rights again"
– DavidPostill♦
Jan 7 '16 at 13:38
Thanks for the workaround! What the hell is Microsoft doing with these updates? I keep having to re-install my motherboard drivers after each major update.
– Guerrilla
Jan 8 '16 at 5:47
add a comment |
How do I set system environment variables in Windows 10? "Unfortunately, the recent update to Windows 10 (November update, version 1511) destroyed this functionality. The "Change my environment variables" link no longer works. It is there, but it is dead. So for the post-November version of Windows 10 the correct answer is: it is generally impossible to edit user-specific environment variables in version 1511 of Windows 10 from regular Users accounts. (cont)
– DavidPostill♦
Jan 7 '16 at 13:37
(cont) For the time being one workaround for non-administrative accounts is to, well, add your user account to Administrators group, logout, log back in, edit the variables using "System" -> “Advanced system settings” method, and then take away administrative rights again"
– DavidPostill♦
Jan 7 '16 at 13:38
Thanks for the workaround! What the hell is Microsoft doing with these updates? I keep having to re-install my motherboard drivers after each major update.
– Guerrilla
Jan 8 '16 at 5:47
How do I set system environment variables in Windows 10? "Unfortunately, the recent update to Windows 10 (November update, version 1511) destroyed this functionality. The "Change my environment variables" link no longer works. It is there, but it is dead. So for the post-November version of Windows 10 the correct answer is: it is generally impossible to edit user-specific environment variables in version 1511 of Windows 10 from regular Users accounts. (cont)
– DavidPostill♦
Jan 7 '16 at 13:37
How do I set system environment variables in Windows 10? "Unfortunately, the recent update to Windows 10 (November update, version 1511) destroyed this functionality. The "Change my environment variables" link no longer works. It is there, but it is dead. So for the post-November version of Windows 10 the correct answer is: it is generally impossible to edit user-specific environment variables in version 1511 of Windows 10 from regular Users accounts. (cont)
– DavidPostill♦
Jan 7 '16 at 13:37
(cont) For the time being one workaround for non-administrative accounts is to, well, add your user account to Administrators group, logout, log back in, edit the variables using "System" -> “Advanced system settings” method, and then take away administrative rights again"
– DavidPostill♦
Jan 7 '16 at 13:38
(cont) For the time being one workaround for non-administrative accounts is to, well, add your user account to Administrators group, logout, log back in, edit the variables using "System" -> “Advanced system settings” method, and then take away administrative rights again"
– DavidPostill♦
Jan 7 '16 at 13:38
Thanks for the workaround! What the hell is Microsoft doing with these updates? I keep having to re-install my motherboard drivers after each major update.
– Guerrilla
Jan 8 '16 at 5:47
Thanks for the workaround! What the hell is Microsoft doing with these updates? I keep having to re-install my motherboard drivers after each major update.
– Guerrilla
Jan 8 '16 at 5:47
add a comment |
4 Answers
4
active
oldest
votes
Nothing happen when I click to edit the environment variables.
Unfortunately, the recent update to Windows 10 (November update, version 1511) destroyed this functionality. The "Change my environment variables" link no longer works. It is there, but it is dead.
So for the post-November version of Windows 10 the correct answer is: it is generally impossible to edit user-specific environment variables in version 1511 of Windows 10 from regular Users accounts.
Workaround:
For the time being one workaround for non-administrative accounts is to:
- add your user account to Administrators group,
- logout,
- log back in,
- edit the variables using "System" -> “Advanced system settings” method, and then
- take away administrative rights again
Source How do I set system environment variables in Windows 10? by AnT
The version with therundll32
command will work even when administrative access is denied by group policy.
– Berin Loritsch
Aug 28 '18 at 14:51
add a comment |
Use Powershell to set an existing environment variable like this:
$Env:Path = $Env:Path + ";C:Temp"
The following command from Windows Search or Powershell will open the GUI for this on versions of Windows 10 where this bug is fixed:
rundll32 sysdm.cpl,EditEnvironmentVariables
References
about_Environment_Variables | Microsoft Docs
Tip of the Day: Using environment variables with Windows PowerShell – Tip of the Day
How to run Control Panel tools by typing a command
Edit Environment Variables of Standard User Account - Microsoft Community
Executing Control Panel Items | Microsoft Docs
The rundll32 command is the only way to set user environment variables when the front door is closed via group policy
– Berin Loritsch
Aug 28 '18 at 14:50
add a comment |
In Windows 10 version 1607 the environment variable PATH is updated when you enter the full path to a command within the Windows Power Shell. After the first time a command is used the PATH is update.
add a comment |
start, search: powershell
right click: open as administrator
enter this command:
Set-ItemProperty -Path "HKLM:SoftwareMicrosoftWindowsCurrentVersionPoliciesSystem" -Name "EnableLUA" -Value "0"
press: enter
restart pc
Now you can edit enviroment variables in down position.
This message is from 10.12. 2018 :-)
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1022952%2fcant-change-environment-variables-in-windows-10%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
Nothing happen when I click to edit the environment variables.
Unfortunately, the recent update to Windows 10 (November update, version 1511) destroyed this functionality. The "Change my environment variables" link no longer works. It is there, but it is dead.
So for the post-November version of Windows 10 the correct answer is: it is generally impossible to edit user-specific environment variables in version 1511 of Windows 10 from regular Users accounts.
Workaround:
For the time being one workaround for non-administrative accounts is to:
- add your user account to Administrators group,
- logout,
- log back in,
- edit the variables using "System" -> “Advanced system settings” method, and then
- take away administrative rights again
Source How do I set system environment variables in Windows 10? by AnT
The version with therundll32
command will work even when administrative access is denied by group policy.
– Berin Loritsch
Aug 28 '18 at 14:51
add a comment |
Nothing happen when I click to edit the environment variables.
Unfortunately, the recent update to Windows 10 (November update, version 1511) destroyed this functionality. The "Change my environment variables" link no longer works. It is there, but it is dead.
So for the post-November version of Windows 10 the correct answer is: it is generally impossible to edit user-specific environment variables in version 1511 of Windows 10 from regular Users accounts.
Workaround:
For the time being one workaround for non-administrative accounts is to:
- add your user account to Administrators group,
- logout,
- log back in,
- edit the variables using "System" -> “Advanced system settings” method, and then
- take away administrative rights again
Source How do I set system environment variables in Windows 10? by AnT
The version with therundll32
command will work even when administrative access is denied by group policy.
– Berin Loritsch
Aug 28 '18 at 14:51
add a comment |
Nothing happen when I click to edit the environment variables.
Unfortunately, the recent update to Windows 10 (November update, version 1511) destroyed this functionality. The "Change my environment variables" link no longer works. It is there, but it is dead.
So for the post-November version of Windows 10 the correct answer is: it is generally impossible to edit user-specific environment variables in version 1511 of Windows 10 from regular Users accounts.
Workaround:
For the time being one workaround for non-administrative accounts is to:
- add your user account to Administrators group,
- logout,
- log back in,
- edit the variables using "System" -> “Advanced system settings” method, and then
- take away administrative rights again
Source How do I set system environment variables in Windows 10? by AnT
Nothing happen when I click to edit the environment variables.
Unfortunately, the recent update to Windows 10 (November update, version 1511) destroyed this functionality. The "Change my environment variables" link no longer works. It is there, but it is dead.
So for the post-November version of Windows 10 the correct answer is: it is generally impossible to edit user-specific environment variables in version 1511 of Windows 10 from regular Users accounts.
Workaround:
For the time being one workaround for non-administrative accounts is to:
- add your user account to Administrators group,
- logout,
- log back in,
- edit the variables using "System" -> “Advanced system settings” method, and then
- take away administrative rights again
Source How do I set system environment variables in Windows 10? by AnT
edited Mar 20 '17 at 10:17
Community♦
1
1
answered Jan 8 '16 at 9:14
DavidPostill♦
104k25224258
104k25224258
The version with therundll32
command will work even when administrative access is denied by group policy.
– Berin Loritsch
Aug 28 '18 at 14:51
add a comment |
The version with therundll32
command will work even when administrative access is denied by group policy.
– Berin Loritsch
Aug 28 '18 at 14:51
The version with the
rundll32
command will work even when administrative access is denied by group policy.– Berin Loritsch
Aug 28 '18 at 14:51
The version with the
rundll32
command will work even when administrative access is denied by group policy.– Berin Loritsch
Aug 28 '18 at 14:51
add a comment |
Use Powershell to set an existing environment variable like this:
$Env:Path = $Env:Path + ";C:Temp"
The following command from Windows Search or Powershell will open the GUI for this on versions of Windows 10 where this bug is fixed:
rundll32 sysdm.cpl,EditEnvironmentVariables
References
about_Environment_Variables | Microsoft Docs
Tip of the Day: Using environment variables with Windows PowerShell – Tip of the Day
How to run Control Panel tools by typing a command
Edit Environment Variables of Standard User Account - Microsoft Community
Executing Control Panel Items | Microsoft Docs
The rundll32 command is the only way to set user environment variables when the front door is closed via group policy
– Berin Loritsch
Aug 28 '18 at 14:50
add a comment |
Use Powershell to set an existing environment variable like this:
$Env:Path = $Env:Path + ";C:Temp"
The following command from Windows Search or Powershell will open the GUI for this on versions of Windows 10 where this bug is fixed:
rundll32 sysdm.cpl,EditEnvironmentVariables
References
about_Environment_Variables | Microsoft Docs
Tip of the Day: Using environment variables with Windows PowerShell – Tip of the Day
How to run Control Panel tools by typing a command
Edit Environment Variables of Standard User Account - Microsoft Community
Executing Control Panel Items | Microsoft Docs
The rundll32 command is the only way to set user environment variables when the front door is closed via group policy
– Berin Loritsch
Aug 28 '18 at 14:50
add a comment |
Use Powershell to set an existing environment variable like this:
$Env:Path = $Env:Path + ";C:Temp"
The following command from Windows Search or Powershell will open the GUI for this on versions of Windows 10 where this bug is fixed:
rundll32 sysdm.cpl,EditEnvironmentVariables
References
about_Environment_Variables | Microsoft Docs
Tip of the Day: Using environment variables with Windows PowerShell – Tip of the Day
How to run Control Panel tools by typing a command
Edit Environment Variables of Standard User Account - Microsoft Community
Executing Control Panel Items | Microsoft Docs
Use Powershell to set an existing environment variable like this:
$Env:Path = $Env:Path + ";C:Temp"
The following command from Windows Search or Powershell will open the GUI for this on versions of Windows 10 where this bug is fixed:
rundll32 sysdm.cpl,EditEnvironmentVariables
References
about_Environment_Variables | Microsoft Docs
Tip of the Day: Using environment variables with Windows PowerShell – Tip of the Day
How to run Control Panel tools by typing a command
Edit Environment Variables of Standard User Account - Microsoft Community
Executing Control Panel Items | Microsoft Docs
answered Aug 23 '18 at 23:30
Paul Sweatte
548215
548215
The rundll32 command is the only way to set user environment variables when the front door is closed via group policy
– Berin Loritsch
Aug 28 '18 at 14:50
add a comment |
The rundll32 command is the only way to set user environment variables when the front door is closed via group policy
– Berin Loritsch
Aug 28 '18 at 14:50
The rundll32 command is the only way to set user environment variables when the front door is closed via group policy
– Berin Loritsch
Aug 28 '18 at 14:50
The rundll32 command is the only way to set user environment variables when the front door is closed via group policy
– Berin Loritsch
Aug 28 '18 at 14:50
add a comment |
In Windows 10 version 1607 the environment variable PATH is updated when you enter the full path to a command within the Windows Power Shell. After the first time a command is used the PATH is update.
add a comment |
In Windows 10 version 1607 the environment variable PATH is updated when you enter the full path to a command within the Windows Power Shell. After the first time a command is used the PATH is update.
add a comment |
In Windows 10 version 1607 the environment variable PATH is updated when you enter the full path to a command within the Windows Power Shell. After the first time a command is used the PATH is update.
In Windows 10 version 1607 the environment variable PATH is updated when you enter the full path to a command within the Windows Power Shell. After the first time a command is used the PATH is update.
answered Mar 7 '18 at 13:35
user879873
1
1
add a comment |
add a comment |
start, search: powershell
right click: open as administrator
enter this command:
Set-ItemProperty -Path "HKLM:SoftwareMicrosoftWindowsCurrentVersionPoliciesSystem" -Name "EnableLUA" -Value "0"
press: enter
restart pc
Now you can edit enviroment variables in down position.
This message is from 10.12. 2018 :-)
add a comment |
start, search: powershell
right click: open as administrator
enter this command:
Set-ItemProperty -Path "HKLM:SoftwareMicrosoftWindowsCurrentVersionPoliciesSystem" -Name "EnableLUA" -Value "0"
press: enter
restart pc
Now you can edit enviroment variables in down position.
This message is from 10.12. 2018 :-)
add a comment |
start, search: powershell
right click: open as administrator
enter this command:
Set-ItemProperty -Path "HKLM:SoftwareMicrosoftWindowsCurrentVersionPoliciesSystem" -Name "EnableLUA" -Value "0"
press: enter
restart pc
Now you can edit enviroment variables in down position.
This message is from 10.12. 2018 :-)
start, search: powershell
right click: open as administrator
enter this command:
Set-ItemProperty -Path "HKLM:SoftwareMicrosoftWindowsCurrentVersionPoliciesSystem" -Name "EnableLUA" -Value "0"
press: enter
restart pc
Now you can edit enviroment variables in down position.
This message is from 10.12. 2018 :-)
answered Dec 10 '18 at 17:23
Peter Porubský
1
1
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1022952%2fcant-change-environment-variables-in-windows-10%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
How do I set system environment variables in Windows 10? "Unfortunately, the recent update to Windows 10 (November update, version 1511) destroyed this functionality. The "Change my environment variables" link no longer works. It is there, but it is dead. So for the post-November version of Windows 10 the correct answer is: it is generally impossible to edit user-specific environment variables in version 1511 of Windows 10 from regular Users accounts. (cont)
– DavidPostill♦
Jan 7 '16 at 13:37
(cont) For the time being one workaround for non-administrative accounts is to, well, add your user account to Administrators group, logout, log back in, edit the variables using "System" -> “Advanced system settings” method, and then take away administrative rights again"
– DavidPostill♦
Jan 7 '16 at 13:38
Thanks for the workaround! What the hell is Microsoft doing with these updates? I keep having to re-install my motherboard drivers after each major update.
– Guerrilla
Jan 8 '16 at 5:47