Forum Discussion
Google Chrome ADMX template for YouTube Restricted
Has anyone tried setting YouTubeRestricted mode in Intune? I have ingested the Google Chrome admx template and I am successfully setting safe search and extension whitelist and blacklists but I cannot figure out the correct syntax for forcing YouTubeRestricted mode, has anyone attempted this?
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
Can you post your OMA-URIs so we can verify?
- adamedtechCopper Contributor
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
- Seth149025Copper Contributor
For the general public; here is a working OMA-URI to allow popups from just one site:
./Vendor/MSFT/Policy/Config/Chrome~Policy~googlechrome~ContentSettings/PopupsAllowedForUrls <enabled/><data id="PopupsAllowedForUrlsDesc" value="1http://example.com"/>
- Michael WolfCopper Contributor
what if i wanted to add multiple sites. i haven't been able to find anything really concrete when it comes to adding multi. i tried this, but i wasn't getting any data listed in the policies.
./Vendor/MSFT/Policy/Config/Chrome~Policy~googlechrome~ContentSettings/PopupsAllowedForUrls <enabled/><data id="PopupsAllowedForUrlsDesc" value="1[*.]google.com2[*.]yahoo.com3[*.]facebook.com"/>
- As mentioned above, I think you have to add the url twice for one entry and then the next entry twice.
Url1-delimiter-Url1-delimiter-Url2-delimiter-Url2
[...]
URL Delimiter URL
so the URL to whitelist added twice and then the next URL
[...]