Registry entry for User Authentication?
Does anyone know the registry location for the internet user authentication->logon section within windows?
Start->Control Panel->Internet Options
Then second tab over to "Security" there is a button "Custom Level" if you click that button and scroll all the way down you see this:
How can I find the registry setting for this area?
windows-7 windows windows-registry
add a comment |
Does anyone know the registry location for the internet user authentication->logon section within windows?
Start->Control Panel->Internet Options
Then second tab over to "Security" there is a button "Custom Level" if you click that button and scroll all the way down you see this:
How can I find the registry setting for this area?
windows-7 windows windows-registry
add a comment |
Does anyone know the registry location for the internet user authentication->logon section within windows?
Start->Control Panel->Internet Options
Then second tab over to "Security" there is a button "Custom Level" if you click that button and scroll all the way down you see this:
How can I find the registry setting for this area?
windows-7 windows windows-registry
Does anyone know the registry location for the internet user authentication->logon section within windows?
Start->Control Panel->Internet Options
Then second tab over to "Security" there is a button "Custom Level" if you click that button and scroll all the way down you see this:
How can I find the registry setting for this area?
windows-7 windows windows-registry
windows-7 windows windows-registry
asked May 1 '13 at 12:54
JonH
1071111
1071111
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Here it is
- HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet SettingsZones
There are sub-keys under that for each zone, they will hold all of the security settings as a dword, there is a list on the Microsoft website somewhere of what dword is what (I will post it when I find it)
Hope that helps.
Edit: Here is the link - http://support.microsoft.com/kb/182569
Here is the link - http://support.microsoft.com/kb/182569
– mattblue84
May 1 '13 at 13:30
Yep had just found it too thanks.
– JonH
May 1 '13 at 13:31
add a comment |
Reference the following article: https://support.microsoft.com/en-us/help/182569/internet-explorer-security-zones-registry-entries-for-advanced-users
Here there is mention that most of these options can be found within this key:
ComputerHKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet SettingsZones
You will see various zones (such as Zones 0-5) the number of these zones represent the following:
The Zones key contains keys that represent each security zone that is defined for the computer. By default, the following five zones are defined (numbered zero through four):
Value Setting
------------------------------
0 My Computer
1 Local Intranet Zone
2 Trusted sites Zone
3 Internet Zone
4 Restricted Sites Zone
Note By default, My Computer does not appear in the Zone box on the Security tab.
Local Intranet / Internet
For local intranet/internet within zones 1 and zones 3 there is a key named 1A00 here are the values:
- For automatic login using current user name and password the value should be set as 0
- For prompt for user name and password the value should be in hex 10000
- For automatic logon only for intranet zone the value should be 20000 in hex.
- For anonymous logon the value should be 30000 in hex.
Because we want to take advantage of windows authentication we want the value of the key named 1A00 to be simply 0 (first option listed above).
Here is the final result of the registry file (.reg) file to distribute to users:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet SettingsZones3]
"1A00"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet SettingsZones1]
"1A00"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet SettingsZones2]
"1A00"=dword:00000000
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%2f590106%2fregistry-entry-for-user-authentication%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Here it is
- HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet SettingsZones
There are sub-keys under that for each zone, they will hold all of the security settings as a dword, there is a list on the Microsoft website somewhere of what dword is what (I will post it when I find it)
Hope that helps.
Edit: Here is the link - http://support.microsoft.com/kb/182569
Here is the link - http://support.microsoft.com/kb/182569
– mattblue84
May 1 '13 at 13:30
Yep had just found it too thanks.
– JonH
May 1 '13 at 13:31
add a comment |
Here it is
- HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet SettingsZones
There are sub-keys under that for each zone, they will hold all of the security settings as a dword, there is a list on the Microsoft website somewhere of what dword is what (I will post it when I find it)
Hope that helps.
Edit: Here is the link - http://support.microsoft.com/kb/182569
Here is the link - http://support.microsoft.com/kb/182569
– mattblue84
May 1 '13 at 13:30
Yep had just found it too thanks.
– JonH
May 1 '13 at 13:31
add a comment |
Here it is
- HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet SettingsZones
There are sub-keys under that for each zone, they will hold all of the security settings as a dword, there is a list on the Microsoft website somewhere of what dword is what (I will post it when I find it)
Hope that helps.
Edit: Here is the link - http://support.microsoft.com/kb/182569
Here it is
- HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet SettingsZones
There are sub-keys under that for each zone, they will hold all of the security settings as a dword, there is a list on the Microsoft website somewhere of what dword is what (I will post it when I find it)
Hope that helps.
Edit: Here is the link - http://support.microsoft.com/kb/182569
edited May 1 '13 at 16:10
answered May 1 '13 at 13:28
mattblue84
565
565
Here is the link - http://support.microsoft.com/kb/182569
– mattblue84
May 1 '13 at 13:30
Yep had just found it too thanks.
– JonH
May 1 '13 at 13:31
add a comment |
Here is the link - http://support.microsoft.com/kb/182569
– mattblue84
May 1 '13 at 13:30
Yep had just found it too thanks.
– JonH
May 1 '13 at 13:31
Here is the link - http://support.microsoft.com/kb/182569
– mattblue84
May 1 '13 at 13:30
Here is the link - http://support.microsoft.com/kb/182569
– mattblue84
May 1 '13 at 13:30
Yep had just found it too thanks.
– JonH
May 1 '13 at 13:31
Yep had just found it too thanks.
– JonH
May 1 '13 at 13:31
add a comment |
Reference the following article: https://support.microsoft.com/en-us/help/182569/internet-explorer-security-zones-registry-entries-for-advanced-users
Here there is mention that most of these options can be found within this key:
ComputerHKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet SettingsZones
You will see various zones (such as Zones 0-5) the number of these zones represent the following:
The Zones key contains keys that represent each security zone that is defined for the computer. By default, the following five zones are defined (numbered zero through four):
Value Setting
------------------------------
0 My Computer
1 Local Intranet Zone
2 Trusted sites Zone
3 Internet Zone
4 Restricted Sites Zone
Note By default, My Computer does not appear in the Zone box on the Security tab.
Local Intranet / Internet
For local intranet/internet within zones 1 and zones 3 there is a key named 1A00 here are the values:
- For automatic login using current user name and password the value should be set as 0
- For prompt for user name and password the value should be in hex 10000
- For automatic logon only for intranet zone the value should be 20000 in hex.
- For anonymous logon the value should be 30000 in hex.
Because we want to take advantage of windows authentication we want the value of the key named 1A00 to be simply 0 (first option listed above).
Here is the final result of the registry file (.reg) file to distribute to users:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet SettingsZones3]
"1A00"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet SettingsZones1]
"1A00"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet SettingsZones2]
"1A00"=dword:00000000
add a comment |
Reference the following article: https://support.microsoft.com/en-us/help/182569/internet-explorer-security-zones-registry-entries-for-advanced-users
Here there is mention that most of these options can be found within this key:
ComputerHKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet SettingsZones
You will see various zones (such as Zones 0-5) the number of these zones represent the following:
The Zones key contains keys that represent each security zone that is defined for the computer. By default, the following five zones are defined (numbered zero through four):
Value Setting
------------------------------
0 My Computer
1 Local Intranet Zone
2 Trusted sites Zone
3 Internet Zone
4 Restricted Sites Zone
Note By default, My Computer does not appear in the Zone box on the Security tab.
Local Intranet / Internet
For local intranet/internet within zones 1 and zones 3 there is a key named 1A00 here are the values:
- For automatic login using current user name and password the value should be set as 0
- For prompt for user name and password the value should be in hex 10000
- For automatic logon only for intranet zone the value should be 20000 in hex.
- For anonymous logon the value should be 30000 in hex.
Because we want to take advantage of windows authentication we want the value of the key named 1A00 to be simply 0 (first option listed above).
Here is the final result of the registry file (.reg) file to distribute to users:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet SettingsZones3]
"1A00"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet SettingsZones1]
"1A00"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet SettingsZones2]
"1A00"=dword:00000000
add a comment |
Reference the following article: https://support.microsoft.com/en-us/help/182569/internet-explorer-security-zones-registry-entries-for-advanced-users
Here there is mention that most of these options can be found within this key:
ComputerHKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet SettingsZones
You will see various zones (such as Zones 0-5) the number of these zones represent the following:
The Zones key contains keys that represent each security zone that is defined for the computer. By default, the following five zones are defined (numbered zero through four):
Value Setting
------------------------------
0 My Computer
1 Local Intranet Zone
2 Trusted sites Zone
3 Internet Zone
4 Restricted Sites Zone
Note By default, My Computer does not appear in the Zone box on the Security tab.
Local Intranet / Internet
For local intranet/internet within zones 1 and zones 3 there is a key named 1A00 here are the values:
- For automatic login using current user name and password the value should be set as 0
- For prompt for user name and password the value should be in hex 10000
- For automatic logon only for intranet zone the value should be 20000 in hex.
- For anonymous logon the value should be 30000 in hex.
Because we want to take advantage of windows authentication we want the value of the key named 1A00 to be simply 0 (first option listed above).
Here is the final result of the registry file (.reg) file to distribute to users:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet SettingsZones3]
"1A00"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet SettingsZones1]
"1A00"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet SettingsZones2]
"1A00"=dword:00000000
Reference the following article: https://support.microsoft.com/en-us/help/182569/internet-explorer-security-zones-registry-entries-for-advanced-users
Here there is mention that most of these options can be found within this key:
ComputerHKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet SettingsZones
You will see various zones (such as Zones 0-5) the number of these zones represent the following:
The Zones key contains keys that represent each security zone that is defined for the computer. By default, the following five zones are defined (numbered zero through four):
Value Setting
------------------------------
0 My Computer
1 Local Intranet Zone
2 Trusted sites Zone
3 Internet Zone
4 Restricted Sites Zone
Note By default, My Computer does not appear in the Zone box on the Security tab.
Local Intranet / Internet
For local intranet/internet within zones 1 and zones 3 there is a key named 1A00 here are the values:
- For automatic login using current user name and password the value should be set as 0
- For prompt for user name and password the value should be in hex 10000
- For automatic logon only for intranet zone the value should be 20000 in hex.
- For anonymous logon the value should be 30000 in hex.
Because we want to take advantage of windows authentication we want the value of the key named 1A00 to be simply 0 (first option listed above).
Here is the final result of the registry file (.reg) file to distribute to users:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet SettingsZones3]
"1A00"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet SettingsZones1]
"1A00"=dword:00000000
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet SettingsZones2]
"1A00"=dword:00000000
answered Dec 4 at 14:11
JonH
1071111
1071111
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%2f590106%2fregistry-entry-for-user-authentication%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