How to enable Auto Logon for Google Chrome without prompt

10,061

Solution 1

Check the details of the Integration Authentication in this Chromium documentation:

http://www.chromium.org/developers/design-documents/http-authentication

With Integrated Authentication, Chrome can authenticate the user to an Intranet server or proxy without prompting the user for a username or password. It does this by using cached credentials which are established when the user initially logs in to the machine that the Chrome browser is running on. Integrated Authentication is supported for Negotiate and NTLM challenges only.

Basically, execute Chrome with these switches to specify the auth schemes:

Chrome.exe --auth-server-whitelist="MYIISSERVER.DOMAIN.COM" --auth-negotiate-delegatewhitelist="MYIISSERVER.DOMAIN.COM" --auth-schemes="digest,ntlm,negotiate"

Solution 2

I tried running the command line but it wasn't working. I had to configure the same settings via the Windows Registry:

Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google]
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome]
"AuthSchemes"="basic,digest,ntlm,negotiate"
"AuthServerWhitelist"="*domain"
"AuthNegotiateDelegateWhitelist"="domain,server.domain.com"

Then I Killed Chrome (cmd line: TaskKill /im chrome.exe) and restarted chrome and tried again and voila. Everything worked as expected.

Share:
10,061
Sangsu PARK
Author by

Sangsu PARK

Updated on June 17, 2022

Comments

  • Sangsu PARK
    Sangsu PARK about 2 years

    We need to access the intranet site called as "http://mysite/myapp".

    And with using IE, every domain users can access the site without any prompt.

    But, if the user try it with Chrome, the logon prompt shows at first. After entering credential just once, the prompt doesn't appear anymore for the access.

    I'm just wondering any way to avoid the first-time logon prompt on Chrome.

    And we don't want any chrome browser setting or shortcut for white listing per user. Because we can't handle many users Chrome one by one.

    Any help will be appreciated.

    Thanks.