Last active
January 7, 2018 12:40
-
-
Save yogeek/3b04af84e1201bca7ff5494031679af8 to your computer and use it in GitHub Desktop.
Chrome Windows Admin Policy
This file contains hidden or 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
# Interdire les utilisateurs d'installer des extensions | |
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome\ExtensionInstallBlacklist | |
ValueName = 1 | |
Value Type = REG_SZ | |
Value = * | |
# Autoriser certaines extensions | |
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome\EnabledPlugin | |
ValueName = 1 | |
Value Type = REG_SZ | |
Value = <allowed_extension_1> | |
ValueName = 2 | |
Value Type = REG_SZ | |
Value = <allowed_extension_2> | |
# Interdire certaines extensions | |
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome\DisabledPlugins | |
ValueName = 1 | |
Value Type = REG_SZ | |
Value = <forbidden_extension_1> | |
ValueName = 2 | |
Value Type = REG_SZ | |
Value = <forbidden_extension_2> |
This file contains hidden or 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
# Préciser le serveur proxy utilisé par Google Chrome et empêcher les utilisateurs de modifier les paramètres de proxy | |
# https://getadmx.com/?Category=Chrome&Policy=Google.Policies.Chrome::ProxyMode&Language=fr-fr | |
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome | |
ValueName = ProxyMode | |
Value Type = REG_SZ | |
Value = direct | auto_detect | pac_script | fixed_servers | system | |
ValueName = ProxyServer | |
Value Type = REG_SZ | |
Value = <IP>:<PORT> | |
ValueName = ProxyBypassList | |
Value Type = REG_SZ | |
Value = <IP1>/16,<IP2>/16,<IP3>/16 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment