Skip to content

Instantly share code, notes, and snippets.

@yogeek
Last active January 7, 2018 12:40
Show Gist options
  • Save yogeek/3b04af84e1201bca7ff5494031679af8 to your computer and use it in GitHub Desktop.
Save yogeek/3b04af84e1201bca7ff5494031679af8 to your computer and use it in GitHub Desktop.
Chrome Windows Admin Policy
# 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>
# 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