Forum Discussion
Google Chrome ADMX template for YouTube Restricted
- Mar 06, 2019
Hi adamedtech,
I've implemented the setting in my lab, here is how it works:
OMA-URI: ./Vendor/MSFT/Policy/Config/Chrome~Policy~googlechrome/ForceYouTubeRestrict
Type: String
Value: <enabled/><data id="ForceYouTubeRestrict" value="2"/>
best,
Oliver
So I will post a OMA-URL that i know is working, because its in my policy now.
./Device/Vendor/MSFT/Policy/Config/Chrome~Policy~googlechrome/ForceGoogleSafeSearch
<enabled/>
I have tried.
./Device/Vendor/MSFT/Policy/Config/Chrome~Policy~googlechrome/YouTubeRestricted
<enabled/>
and that broke the policy
and then I tried.
./Device/Vendor/MSFT/Policy/Config/Chrome~Policy~googlechrome/YouTubeRestricted
<enabled/> <data id="YouTubeRestricted_Strict" value="2"/>
But that broke as well, so I am not sure I have the syntax anywhere close. Google does have a sheet with known OMA-URI's for managing chrome, but youtube restricted mode is not one of them. We are a K12 school district so its pretty important for us to be able to set that.
Hi adamedtech,
I've implemented the setting in my lab, here is how it works:
OMA-URI: ./Vendor/MSFT/Policy/Config/Chrome~Policy~googlechrome/ForceYouTubeRestrict
Type: String
Value: <enabled/><data id="ForceYouTubeRestrict" value="2"/>
best,
Oliver
- illnastyAug 14, 2019Copper Contributor
Oliver Kieselbach How do you figure out the settings? Are you going to the registry and mapping what they should be or something else? I'm trying to allow popups for a particular site in Chrome using ADMX but seems like I just need to trial and error until it succeeds.
Tried these so far and none work:
- Aug 14, 2019
Hey illnasty,
this is how it works in my tenant:
OMA-URI:
./Vendor/MSFT/Policy/Config/Chrome~Policy~googlechrome~ContentSettings/PopupsAllowedForUrls
Value:
URL Delimiter URL
so the URL to whitelist added twice and then the next URL.
I use this guide to construct the value and oma-uri: https://docs.microsoft.com/en-us/windows/client-management/mdm/understanding-admx-backed-policies
best,
Oliver
- illnastyAug 14, 2019Copper Contributor
Oliver Kieselbach of course your suggestion worked.
May have spoke to soon. Policy is being pushed down successfully which is good but the Value in Chrome is blank.
- adamedtechMar 06, 2019Copper Contributor
Oliver's suggestion is correct. I was able to successfully deploy this OMA-URI
Thanks!
- adamedtechMar 06, 2019Copper Contributor
Thanks Oliver,
I have implemented this setting and I will see if it works.