How would I disable the Flash player in Google Chrome browsers for my 50 AD computers via group policy or script in 2008 R2?
I have tried a couple of applications, PDQDeploy_6 among them, but this software is not suitable for my task.
How would I disable the Flash player in Google Chrome browsers for my 50 AD computers via group policy or script in 2008 R2?
I have tried a couple of applications, PDQDeploy_6 among them, but this software is not suitable for my task.
You mentioned PDQ Deploy. There is a package available in the Package Library which does just what you are asking for. It is called "Google Chrome - Disable Flash".
Also, if you use Active Directory you can use the Chrome ADMX templates to enforce this (and just about anything else Chrome wise).
Yes, this is possible. You can use the DisabledPlugins
policy.
For Linux, append the attribute
DisabledPlugins: ["Shockwave Flash"]
to the /etc/chromium/policies/managed/any_name.json
file, or create a new JSON object containing only this attribute.
If you eschew deprecated policy settings, have a look at
DefaultPluginsSetting
, but that either blocks all or allows all.
For Windows, have a look at https://www.chromium.org/administrators/windows-quick-start. In short, the following steps should help
You can perhaps modify the Application shortcut via GPMC and add the "--disable-bundled-ppapi-flash" switch so that Chrome launches without the bundled Flash player.
I hope this article helps.