Authenticator-Extension/Authenticator

authenticator.cc extension deployment

chetan8181 opened this issue · 9 comments

I am trying to deploy authenticator.cc extension silently using google admin console but once installation done remotely it will automatically open chrome issue warning page. https://authenticator.cc/docs/en/chrome-issues is there any way we can stop this redirection upon installation?

Set disableInstallHelp to true.

See https://authenticator.cc/docs/en/policy-config

I deployed and configured the authenticator.cc myself in the Google admin console and disableInstallHelp policy is the only one that seems to be tripping me up.
Its set to true but it will still redirect once installed.

Other policies work fine. I'm probably using most of them.

Could you send a screenshot of chrome://policy on a configured device?

I have included the screenshot.
Screenshot 2024-05-14 142246

does this help? #1015 (comment)

@Sneezry I'll do some testing and get back to you.
The other Boolean attributes appears to be working. I will change the disableInstallHelp to 1/0 and validate the results.
Below is the policy for extension

{
    "enforcePassword": {
        "Value": true
    },
    "disableExport": {
        "Value": true
    },
    "disableBackup": {
        "Value": true
    },
    "enforceAutolock": {
        "Value": 15
    },
    "passwordPolicy": {
        "Value": "^(?=.*[A-Z])(?=.*[a-z])(?=.*\\d)(?=.*(_|[^\\w])).{8,20}$"
    },
    "passwordPolicyHint": {
        "Value": "Your Password does not meet requirements"
    },
    "disableInstallHelp": {
        "Value": true
    },
    "feedbackURL": {
        "Value": "https://mypage.com"
    }
}

What fixed the problem?

I did some testing, unfortunately I was able to reproduce once.
However the setting only accepts true/false. If I try to set it to 1/0 the settings completely disappears from chrome://policy.